diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index 1512c17b6d..b7dbbd4be0 100644
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php'; |
61 | 61 | |
62 | 62 | <hr /> |
63 | 63 | |
| 64 | <div class="about__section has-subtle-background-color"> |
| 65 | <div class="column"> |
| 66 | <h2><?php _e( 'Maintenance Release' ); ?></h2> |
| 67 | <p> |
| 68 | <?php |
| 69 | printf( |
| 70 | /* translators: 1: WordPress version number, 2: Plural number of bugs. */ |
| 71 | _n( |
| 72 | '<strong>Version %1$s</strong> addressed %2$s bug.', |
| 73 | '<strong>Version %1$s</strong> addressed %2$s bugs.', |
| 74 | 44 |
| 75 | ), |
| 76 | '5.5.1', |
| 77 | number_format_i18n( 44 ) |
| 78 | ); |
| 79 | ?> |
| 80 | <?php |
| 81 | printf( |
| 82 | /* translators: %s: HelpHub URL */ |
| 83 | __( 'For more information, see <a href="%s">the release notes</a>.' ), |
| 84 | sprintf( |
| 85 | /* translators: %s: WordPress version */ |
| 86 | esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
| 87 | sanitize_title( '5.5.1' ) |
| 88 | ) |
| 89 | ); |
| 90 | ?> |
| 91 | </p> |
| 92 | </div> |
| 93 | </div> |
| 94 | |
| 95 | <hr /> |
| 96 | |
64 | 97 | <div class="about__section has-1-column"> |
65 | 98 | <div class="column"> |
66 | 99 | <h2><?php _e( 'Speed' ); ?></h2> |