| 79 | <p> |
| 80 | <?php |
| 81 | printf( |
| 82 | /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
| 83 | _n( |
| 84 | '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
| 85 | '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', |
| 86 | 11 |
| 87 | ), |
| 88 | '5.4.2', |
| 89 | number_format_i18n( 20 ) |
| 90 | ); |
| 91 | ?> |
| 92 | <?php |
| 93 | printf( |
| 94 | /* translators: %s: HelpHub URL */ |
| 95 | __( 'For more information, see <a href="%s">the release notes</a>.' ), |
| 96 | sprintf( |
| 97 | /* translators: %s: WordPress version */ |
| 98 | esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
| 99 | sanitize_title( '5.4.2' ) |
| 100 | ) |
| 101 | ); |
| 102 | ?> |
| 103 | </p> |