Changeset 49460 for branches/5.3/src/wp-admin/about.php
- Timestamp:
- 10/30/2020 07:46:16 PM (5 years ago)
- File:
-
- 1 edited
-
branches/5.3/src/wp-admin/about.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3/src/wp-admin/about.php
r49411 r49460 55 55 <?php 56 56 printf( 57 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 58 _n( 59 '<strong>Version %1$s</strong> addressed %2$s bug.', 60 '<strong>Version %1$s</strong> addressed %2$s bugs.', 61 1 62 ), 63 '5.3.6', 64 number_format_i18n( 1 ) 65 ); 66 ?> 67 <?php 68 printf( 69 /* translators: %s: HelpHub URL */ 70 __( 'For more information, see <a href="%s">the release notes</a>.' ), 71 sprintf( 72 /* translators: %s: WordPress version */ 73 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 74 sanitize_title( '5.3.6' ) 75 ) 76 ); 77 ?> 78 </p> 79 <p> 80 <?php 81 printf( 57 82 /* translators: %s: WordPress version number */ 58 83 __( '<strong>Version %s</strong> addressed some security issues.' ),
Note: See TracChangeset
for help on using the changeset viewer.