Make WordPress Core

Changeset 56847


Ignore:
Timestamp:
10/12/2023 01:33:20 PM (3 years ago)
Author:
audrasjb
Message:

Help/About: Update the About page for 6.3.2.

Props beryldlg, audrasjb.

File:
1 edited

Legend:

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

    r56483 r56847  
    4646                <div class="about__section changelog has-subtle-background-color">
    4747                        <div class="column">
    48                                 <h2><?php _e( 'Maintenance Release' ); ?></h2>
     48                                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     49                                <p>
     50                                        <?php
     51                                        printf(
     52                                                /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
     53                                                _n(
     54                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     55                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     56                                                        41
     57                                                ),
     58                                                '6.3.2',
     59                                                '41'
     60                                        );
     61                                        ?>
     62                                        <?php
     63                                        printf(
     64                                                /* translators: %s: HelpHub URL. */
     65                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     66                                                sprintf(
     67                                                        /* translators: %s: WordPress version. */
     68                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     69                                                        sanitize_title( '6.3.2' )
     70                                                )
     71                                        );
     72                                        ?>
     73                                </p>
    4974                                <p>
    5075                                        <?php
Note: See TracChangeset for help on using the changeset viewer.