Changeset 51750 for branches/5.7/src/wp-admin/about.php
- Timestamp:
- 09/08/2021 09:04:01 PM (2 years ago)
- Location:
- branches/5.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.7
- Property svn:mergeinfo changed
/trunk merged: 50941,51426
- Property svn:mergeinfo changed
-
branches/5.7/src/wp-admin/about.php
r50937 r51750 70 70 <div class="column has-border has-subtle-background-color"> 71 71 <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2> 72 73 <p> 74 <?php 75 printf( 76 /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ 77 _n( 78 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 79 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 80 5 81 ), 82 '5.7.3', 83 number_format_i18n( 5 ) 84 ); 85 ?> 86 <?php 87 printf( 88 /* translators: %s: HelpHub URL. */ 89 __( 'For more information, see <a href="%s">the release notes</a>.' ), 90 sprintf( 91 /* translators: %s: WordPress version. */ 92 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 93 sanitize_title( '5.7.3' ) 94 ) 95 ); 96 ?> 97 </p> 98 72 99 <p> 73 100 <?php
Note: See TracChangeset
for help on using the changeset viewer.