Make WordPress Core


Ignore:
Timestamp:
01/09/2019 05:39:13 PM (8 years ago)
Author:
desrosj
Message:

About: Add 5.0.3 details to the about page.

Fixes #45884.

File:
1 edited

Legend:

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

    r44337 r44520  
    6666                                <?php
    6767                                printf(
    68                                 /* translators: 1: WordPress version number, 2: plural number of bugs. */
     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                                                44
     73                                        ),
     74                                        '5.0.3',
     75                                        number_format_i18n( 44 )
     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.3' );
     81                                ?>
     82                        </p>
     83                        <p>
     84                                <?php
     85                                printf(
     86                                        /* translators: 1: WordPress version number, 2: plural number of bugs. */
    6987                                        _n(
    7088                                                '<strong>Version %1$s</strong> addressed %2$s bug.',
Note: See TracChangeset for help on using the changeset viewer.