Make WordPress Core


Ignore:
Timestamp:
04/29/2020 10:11:07 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Help/About: WordPress 5.3.3 included 10 bug fixes in addition to security fixes.

File:
1 edited

Legend:

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

    r47705 r47726  
    5555                                        <?php
    5656                                        printf(
    57                                                 /* translators: %s: WordPress version number */
    58                                                 __( '<strong>Version %s</strong> addressed some security issues.' ),
    59                                                 '5.3.3'
     57                                                /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
     58                                                _n(
     59                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     60                                                        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
     61                                                        10
     62                                                ),
     63                                                '5.3.3',
     64                                                number_format_i18n( 10 )
    6065                                        );
    6166                                        ?>
Note: See TracChangeset for help on using the changeset viewer.