Make WordPress Core

Changeset 47254


Ignore:
Timestamp:
02/11/2020 12:39:11 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Site Health: Improve the wording for PHP update recommendations.

Props Clorith, grafruessel, sathyapulse, wpgurudev, garrett-eclipse, marybaum, xkon, SergeyBiryukov.
Fixes #48716.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-site-health.php

    r47235 r47254  
    707707            'label'       => sprintf(
    708708                /* translators: %s: The current PHP version. */
    709                 __( 'Your version of PHP (%s) is up to date' ),
     709                __( 'Your site is running the current version of PHP (%s)' ),
    710710                PHP_VERSION
    711711            ),
     
    742742            $result['label'] = sprintf(
    743743                /* translators: %s: The server PHP version. */
    744                 __( 'Your version of PHP (%s) is out of date' ),
     744                __( 'Your site is running an older version of PHP (%s)' ),
    745745                PHP_VERSION
    746746            );
     
    754754            $result['label'] = sprintf(
    755755                /* translators: %s: The server PHP version. */
    756                 __( 'Your version of PHP (%s) should be updated' ),
     756                __( 'Your site is running an older version of PHP (%s), which should be updated' ),
    757757                PHP_VERSION
    758758            );
     
    765765        $result['label'] = sprintf(
    766766            /* translators: %s: The server PHP version. */
    767             __( 'Your version of PHP (%s) requires an update' ),
     767            __( 'Your site is running an outdated version of PHP (%s), which requires an update' ),
    768768            PHP_VERSION
    769769        );
Note: See TracChangeset for help on using the changeset viewer.