diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index c14c1bfc50..ccf19eb1fd 100644
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php'; |
48 | 48 | |
49 | 49 | <hr /> |
50 | 50 | |
| 51 | <div class="about__section changelog"> |
| 52 | <div class="column"> |
| 53 | <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2> |
| 54 | <p> |
| 55 | <?php |
| 56 | printf( |
| 57 | /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
| 58 | _n( |
| 59 | '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
| 60 | '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', |
| 61 | 11 |
| 62 | ), |
| 63 | '5.4.1', |
| 64 | number_format_i18n( 11 ) |
| 65 | ); |
| 66 | ?> |
| 67 | <?php |
| 68 | printf( |
| 69 | /* translators: %s: HelpHub URL */ |
| 70 | __( 'For more information, see <a href="%s">the release notes</a>.' ), |
| 71 | sprintf( |
| 72 | /* translators: %s: WordPress version */ |
| 73 | esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
| 74 | sanitize_title( '5.4.1' ) |
| 75 | ) |
| 76 | ); |
| 77 | ?> |
| 78 | </p> |
| 79 | </div> |
| 80 | </div> |
| 81 | |
| 82 | <hr /> |
| 83 | |
51 | 84 | <div class="about__section has-2-columns has-subtle-background-color"> |
52 | 85 | <h2 class="is-section-header"> |
53 | 86 | <?php |