diff --git src/wp-admin/about.php src/wp-admin/about.php
index f0d481610f..e7cd7bd1cb 100644
|
|
include( ABSPATH . 'wp-admin/admin-header.php' ); |
48 | 48 | <a href="freedoms.php?privacy-notice" class="nav-tab"><?php _e( 'Privacy' ); ?></a> |
49 | 49 | </nav> |
50 | 50 | |
| 51 | <div class="changelog point-releases"> |
| 52 | <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> |
| 53 | <p> |
| 54 | <?php |
| 55 | printf( |
| 56 | /* translators: 1: WordPress version number, 2: plural number of bugs. */ |
| 57 | _n( |
| 58 | '<strong>Version %1$s</strong> fixed %2$s bug.', |
| 59 | '<strong>Version %1$s</strong> fixed %2$s bugs.', |
| 60 | 14 |
| 61 | ), |
| 62 | '5.2.1', |
| 63 | number_format_i18n( 33 ) |
| 64 | ); |
| 65 | ?> |
| 66 | <?php |
| 67 | printf( |
| 68 | /* translators: %s: HelpHub URL */ |
| 69 | __( 'For more information, see <a href="%s">the release notes</a>.' ), |
| 70 | sprintf( |
| 71 | /* translators: %s: WordPress version */ |
| 72 | esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
| 73 | sanitize_title( '5.2.1' ) |
| 74 | ) |
| 75 | ); |
| 76 | ?> |
| 77 | </p> |
| 78 | </div> |
| 79 | |
51 | 80 | <div class="headline-feature"> |
52 | 81 | <h2><?php _e( 'Keeping Your Site Safe' ); ?></h2> |
53 | 82 | <p class="lead-description"><?php _e( 'WordPress 5.2 gives you even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.' ); ?></p> |