Make WordPress Core

Ticket #51684: 51684.diff

File 51684.diff, 1.1 KB (added by audrasjb, 4 years ago)

Help/About: WordPress 5.3.3

  • src/wp-admin/about.php

    diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
    index 2a2ad12fa1..68fa12422f 100644
    a b require_once ABSPATH . 'wp-admin/admin-header.php'; 
    6464                <div class="about__section has-subtle-background-color">
    6565                        <div class="column">
    6666                                <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     67                                <p>
     68                                        <?php
     69                                        printf(
     70                                                /* translators: 1: WordPress version number, 2: Plural number of bugs. */
     71                                                _n(
     72                                                        '<strong>Version %1$s</strong> addressed %2$s bug.',
     73                                                        '<strong>Version %1$s</strong> addressed %2$s bugs.',
     74                                                        1
     75                                                ),
     76                                                '5.5.3',
     77                                                number_format_i18n( 1 )
     78                                        );
     79                                        ?>
     80                                        <?php
     81                                        printf(
     82                                                /* translators: %s: HelpHub URL. */
     83                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     84                                                sprintf(
     85                                                        /* translators: %s: WordPress version. */
     86                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     87                                                        sanitize_title( '5.5.3' )
     88                                                )
     89                                        );
     90                                        ?>
     91                                </p>
    6792                                <p>
    6893                                        <?php
    6994                                        printf(