Changeset 57463 for branches/6.4
- Timestamp:
- 01/30/2024 07:08:26 PM (8 months ago)
- Location:
- branches/6.4/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4/src/wp-admin/about.php
r57165 r57463 47 47 <div class="column"> 48 48 <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2> 49 <p> 50 <?php 51 printf( 52 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 53 _n( 54 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 55 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 56 21 57 ), 58 '6.4.3', 59 '21' 60 ); 61 ?> 62 <?php 63 printf( 64 /* translators: %s: HelpHub URL. */ 65 __( 'For more information, see <a href="%s">the release notes</a>.' ), 66 sprintf( 67 /* translators: %s: WordPress version. */ 68 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 69 sanitize_title( '6.4.3' ) 70 ) 71 ); 72 ?> 73 </p> 74 75 <p> 76 <?php 77 printf( 78 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 79 _n( 80 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', 81 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.', 82 7 83 ), 84 '6.4.2', 85 '7' 86 ); 87 ?> 88 <?php 89 printf( 90 /* translators: %s: HelpHub URL. */ 91 __( 'For more information, see <a href="%s">the release notes</a>.' ), 92 sprintf( 93 /* translators: %s: WordPress version. */ 94 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 95 sanitize_title( '6.4.2' ) 96 ) 97 ); 98 ?> 99 </p> 100 49 101 <p> 50 102 <?php … … 68 120 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 69 121 sanitize_title( '6.4.1' ) 70 )71 );72 ?>73 </p>74 <p>75 <?php76 printf(77 /* translators: 1: WordPress version number, 2: Plural number of bugs. */78 _n(79 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',80 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',81 782 ),83 '6.4.2',84 '7'85 );86 ?>87 <?php88 printf(89 /* translators: %s: HelpHub URL. */90 __( 'For more information, see <a href="%s">the release notes</a>.' ),91 sprintf(92 /* translators: %s: WordPress version. */93 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),94 sanitize_title( '6.4.2' )95 122 ) 96 123 ); -
branches/6.4/src/wp-includes/version.php
r57360 r57463 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6.4.3- alpha-57360-src';19 $wp_version = '6.4.3-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.