Changeset 57095 for branches/6.4/src/wp-admin/about.php
- Timestamp:
- 11/08/2023 11:43:02 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4/src/wp-admin/about.php
r57055 r57095 43 43 <a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a> 44 44 </nav> 45 46 <div class="about__section changelog has-subtle-background-color"> 47 <div class="column"> 48 <h2><?php _e( 'Maintenance Release' ); ?></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 %2$s bug.', 55 '<strong>Version %1$s</strong> addressed %2$s bugs.', 56 10 57 ), 58 '6.4.1', 59 '4' 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.1' ) 70 ) 71 ); 72 ?> 73 </p> 74 </div> 75 </div> 45 76 46 77 <div class="about__section">
Note: See TracChangeset
for help on using the changeset viewer.