Make WordPress Core


Ignore:
Timestamp:
09/19/2017 07:41:01 PM (8 years ago)
Author:
ocean90
Message:

Bump 4.8 branch to version 4.8.2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8/src/wp-admin/about.php

    r41210 r41509  
    4545
    4646        <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>
    6656        </div>
    6757
Note: See TracChangeset for help on using the changeset viewer.