Make WordPress Core

Changeset 51767 for branches/5.8


Ignore:
Timestamp:
09/08/2021 10:50:53 PM (3 years ago)
Author:
desrosj
Message:

Help/About: Update the About page for WordPress 5.8.1.

Props audrasjb, circlecube, mukesh27.
Fixes #54083.

File:
1 edited

Legend:

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

    r51506 r51767  
    4141        <hr />
    4242
     43        <div class="about__section changelog">
     44            <div class="column">
     45                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     46                <p>
     47                    <?php
     48                    printf(
     49                        /* translators: 1: WordPress version number, 2: plural number of bugs. */
     50                        _n(
     51                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
     52                            '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
     53                            60
     54                        ),
     55                        '5.8.1',
     56                        number_format_i18n( 60 )
     57                    );
     58                    ?>
     59                    <?php
     60                    printf(
     61                        /* translators: %s: HelpHub URL */
     62                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     63                        sprintf(
     64                            /* translators: %s: WordPress version */
     65                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     66                            sanitize_title( '5.8.1' )
     67                        )
     68                    );
     69                    ?>
     70                </p>
     71            </div>
     72        </div>
     73
     74        <hr class="is-large" />
     75
    4376        <div class="about__section">
    4477            <h2 class="aligncenter">
Note: See TracChangeset for help on using the changeset viewer.