Changeset 41509 for branches/4.8/src/wp-admin/about.php
- Timestamp:
- 09/19/2017 07:41:01 PM (8 years ago)
- File:
-
- 1 edited
-
branches/4.8/src/wp-admin/about.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8/src/wp-admin/about.php
r41210 r41509 45 45 46 46 <div class="changelog point-releases"> 47 <h3><?php _e( 'Maintenance Release' ); ?></h3> 48 <p> 49 <?php 50 printf( 51 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 52 _n( 53 '<strong>Version %1$s</strong> addressed %2$s bug.', 54 '<strong>Version %1$s</strong> addressed %2$s bugs.', 55 29 56 ), 57 '4.8.1', 58 number_format_i18n( 29 ) 59 ); 60 ?> 61 <?php 62 /* translators: %s: Codex URL */ 63 printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.8.1' ); 64 ?> 65 </p> 47 <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> 48 <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 49 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 5 ), '4.8.2', number_format_i18n( 5 ) ); ?> 50 <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.8.2' ); ?> 51 </p> 52 <p><?php printf( _n( '<strong>Version %1$s</strong> addressed %2$s bug.', 53 '<strong>Version %1$s</strong> addressed %2$s bugs.', 29 ), '4.8.1', number_format_i18n( 29 ) ); ?> 54 <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.8.1' ); ?> 55 </p> 66 56 </div> 67 57
Note: See TracChangeset
for help on using the changeset viewer.