Make WordPress Core


Ignore:
Timestamp:
11/26/2017 11:56:25 PM (7 years ago)
Author:
pento
Message:

General: Fix some precision alignment formatting warnings.

The WPCS WordPress.WhiteSpace.PrecisionAlignment rule throws warnings for a bunch of code that will likely cause issues for wpcbf. Fixing these manually beforehand gives us better auto-fixed results later.

See #41057.

File:
1 edited

Legend:

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

    r42181 r42228  
    354354/* translators: 1: WordPress version number, 2: plural number of bugs. */
    355355_n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.',
    356          '<strong>Version %1$s</strong> addressed %2$s bugs.' );
     356        '<strong>Version %1$s</strong> addressed %2$s bugs.' );
    357357
    358358/* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */
    359359_n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
    360          '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' );
     360        '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' );
    361361
    362362/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
    363363_n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
    364          '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' );
     364        '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' );
    365365
    366366/* translators: %s: Codex URL */
Note: See TracChangeset for help on using the changeset viewer.