Make WordPress Core

Changeset 44337 for branches/5.0


Ignore:
Timestamp:
12/19/2018 10:18:44 PM (6 years ago)
Author:
pento
Message:

About: Add 5.0.2 details to the about page.

Props desrosj.
Fixes #45703.

File:
1 edited

Legend:

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

    r44077 r44337  
    6363        <div class="changelog point-releases">
    6464            <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
     65            <p>
     66                <?php
     67                printf(
     68                /* translators: 1: WordPress version number, 2: plural number of bugs. */
     69                    _n(
     70                        '<strong>Version %1$s</strong> addressed %2$s bug.',
     71                        '<strong>Version %1$s</strong> addressed %2$s bugs.',
     72                        73
     73                    ),
     74                    '5.0.2',
     75                    number_format_i18n( 73 )
     76                );
     77                ?>
     78                <?php
     79                /* translators: %s: Codex URL */
     80                printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_5.0.2' );
     81                ?>
     82            </p>
    6583            <p>
    6684                <?php
Note: See TracChangeset for help on using the changeset viewer.