Make WordPress Core


Ignore:
Timestamp:
08/02/2018 08:12:09 PM (8 years ago)
Author:
ocean90
Message:

Bump 4.9 branch to version 4.9.8.

File:
1 edited

Legend:

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

    r43528 r43552  
    3737                <?php
    3838                printf(
    39                 /* translators: 1: WordPress version number, 2: plural number of bugs. */
     39                    /* translators: 1: WordPress version number, 2: plural number of bugs. */
     40                    _n(
     41                        '<strong>Version %1$s</strong> addressed %2$s bug.',
     42                        '<strong>Version %1$s</strong> addressed %2$s bugs.',
     43                        46
     44                    ),
     45                    '4.9.8',
     46                    number_format_i18n( 46 )
     47                );
     48
     49                printf(
     50                    /* translators: %s: Codex URL */
     51                    __( 'For more information, see <a href="%s">the release notes</a>.' ),
     52                    'https://codex.wordpress.org/Version_4.9.8'
     53                );
     54                ?>
     55            </p>
     56            <p>
     57                <?php
     58                printf(
     59                    /* translators: 1: WordPress version number, 2: plural number of bugs. */
    4060                    _n(
    4161                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
Note: See TracChangeset for help on using the changeset viewer.