Changeset 52874
- Timestamp:
- 03/10/2022 10:00:39 PM (3 years ago)
- Location:
- branches/5.9/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.9/src/wp-admin/about.php
r52785 r52874 42 42 <div class="about__section changelog"> 43 43 <div class="column"> 44 <h2><?php _e( 'Maintenance Release' ); ?></h2> 44 <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2> 45 <p> 46 <?php 47 printf( 48 /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ 49 _n( 50 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 51 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 52 1 53 ), 54 '5.9.2', 55 number_format_i18n( 1 ) 56 ); 57 ?> 58 <?php 59 printf( 60 /* translators: %s: HelpHub URL. */ 61 __( 'For more information, see <a href="%s">the release notes</a>.' ), 62 sprintf( 63 /* translators: %s: WordPress version. */ 64 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 65 sanitize_title( '5.9.2' ) 66 ) 67 ); 68 ?> 69 </p> 45 70 <p> 46 71 <?php -
branches/5.9/src/wp-includes/version.php
r52788 r52874 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '5.9.2- alpha-52788-src';19 $wp_version = '5.9.2-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.