Make WordPress Core


Ignore:
Timestamp:
06/10/2020 09:31:29 PM (4 years ago)
Author:
desrosj
Message:

WordPress 5.2.7.

File:
1 edited

Legend:

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

    r47704 r47991  
    5151        <div class="changelog point-releases">
    5252            <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
     53            <p>
     54                <?php
     55                printf(
     56                    /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     57                    _n(
     58                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     59                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     60                        2
     61                    ),
     62                    '5.2.7',
     63                    number_format_i18n( 2 )
     64                );
     65                ?>
     66                <?php
     67                printf(
     68                    /* translators: %s: HelpHub URL */
     69                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     70                    sprintf(
     71                        /* translators: %s: WordPress version */
     72                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     73                        sanitize_title( '5.2.7' )
     74                    )
     75                );
     76                ?>
     77            </p>
    5378            <p>
    5479                <?php
Note: See TracChangeset for help on using the changeset viewer.