Make WordPress Core

Changeset 50735 for branches/5.7


Ignore:
Timestamp:
04/15/2021 01:18:34 AM (5 years ago)
Author:
peterwilsoncc
Message:

About page update for 5.7.1.

Props audrasjb.

File:
1 edited

Legend:

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

    r50536 r50735  
    6060                                        <?php
    6161                                        _e( 'With this new version, WordPress brings you fresh colors. The editor helps you work in a few places you couldn’t before—at least, not without getting into code or hiring a pro. The controls you use most, like changing font sizes, are in more places—right where you need them. And layout changes that should be simple, like full-height images, are even simpler to make.' );
     62                                        ?>
     63                                </p>
     64                        </div>
     65                </div>
     66
     67                <hr />
     68
     69                <div class="about__section changelog">
     70                        <div class="column has-border has-subtle-background-color">
     71                                <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     72                                <p>
     73                                        <?php
     74                                        printf(
     75                                                /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
     76                                                _n(
     77                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     78                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     79                                                        26
     80                                                ),
     81                                                '5.7.1',
     82                                                number_format_i18n( 26 )
     83                                        );
     84                                        ?>
     85                                        <?php
     86                                        printf(
     87                                                /* translators: %s: HelpHub URL. */
     88                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     89                                                sprintf(
     90                                                        /* translators: %s: WordPress version. */
     91                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     92                                                        sanitize_title( '5.7.1' )
     93                                                )
     94                                        );
    6295                                        ?>
    6396                                </p>
Note: See TracChangeset for help on using the changeset viewer.