Make WordPress Core


Ignore:
Timestamp:
09/08/2021 09:04:01 PM (2 years ago)
Author:
desrosj
Message:

Grouped merges for 5.7.3.

  • Update lodash to the latest version 4.17.21.
  • Disable some attributes for rich text.

Merges [51426,50941] to the 5.7 branch.
Props ellatrix, peterwilsoncc, get_dave, mcsf, talldanwp, youknowriad, desrosj, nerrad.

Location:
branches/5.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.7

  • branches/5.7/src/wp-admin/about.php

    r50937 r51750  
    7070            <div class="column has-border has-subtle-background-color">
    7171                <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     72               
     73                <p>
     74                    <?php
     75                    printf(
     76                        /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
     77                        _n(
     78                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     79                            '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     80                            5
     81                        ),
     82                        '5.7.3',
     83                        number_format_i18n( 5 )
     84                    );
     85                    ?>
     86                    <?php
     87                    printf(
     88                        /* translators: %s: HelpHub URL. */
     89                        __( 'For more information, see <a href="%s">the release notes</a>.' ),
     90                        sprintf(
     91                            /* translators: %s: WordPress version. */
     92                            esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     93                            sanitize_title( '5.7.3' )
     94                        )
     95                    );
     96                    ?>
     97                </p>
     98               
    7299                <p>
    73100                    <?php
Note: See TracChangeset for help on using the changeset viewer.