Make WordPress Core


Ignore:
Timestamp:
02/22/2021 02:13:12 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Help/About: Update the About page for 5.6.2.

Props audrasjb, desrosj, mukesh27.
Reviewed by desrosj, SergeyBiryukov.
Fixes #52557.

File:
1 edited

Legend:

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

    r50177 r50402  
    7474        <div class="about__section changelog">
    7575            <div class="column has-border has-subtle-background-color">
    76                 <h2 class="is-smaller-heading"><?php _e( 'Maintenance Release' ); ?></h2>
     76                <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     77                <p>
     78                    <?php
     79                    printf(
     80                        /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     81                        _n(
     82                            '<strong>Version %1$s</strong> addressed %2$s bug.',
     83                            '<strong>Version %1$s</strong> addressed %2$s bugs.',
     84                            5
     85                        ),
     86                        '5.6.2',
     87                        number_format_i18n( 5 )
     88                    );
     89                    ?>
     90                    <?php
     91                    printf(
     92                        /* translators: %s: HelpHub URL. */
     93                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     94                        sprintf(
     95                            /* translators: %s: WordPress version. */
     96                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     97                            sanitize_title( '5.6.2' )
     98                        )
     99                    );
     100                    ?>
     101                </p>
    77102                <p>
    78103                    <?php
     
    90115                    <?php
    91116                    printf(
    92                         /* translators: %s: HelpHub URL */
     117                        /* translators: %s: HelpHub URL. */
    93118                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
    94119                        sprintf(
    95                             /* translators: %s: WordPress version */
     120                            /* translators: %s: WordPress version. */
    96121                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
    97122                            sanitize_title( '5.6.1' )
Note: See TracChangeset for help on using the changeset viewer.