Make WordPress Core

Ticket #48716: 48716.4.diff

File 48716.4.diff, 1.5 KB (added by garrett-eclipse, 5 years ago)

Updated verbiage to use older rather than outdated and use which instead of and to place update emphasis on PHP rather than website.

  • src/wp-admin/includes/class-wp-site-health.php

     
    708708                $result = array(
    709709                        'label'       => sprintf(
    710710                                /* translators: %s: The current PHP version. */
    711                                 __( 'Your version of PHP (%s) is up to date' ),
     711                                __( 'Your site is running the current version of PHP (%s)' ),
    712712                                PHP_VERSION
    713713                        ),
    714714                        'status'      => 'good',
     
    743743                if ( $response['is_supported'] ) {
    744744                        $result['label'] = sprintf(
    745745                                /* translators: %s: The server PHP version. */
    746                                 __( 'Your version of PHP (%s) is out of date' ),
     746                                __( 'Your site is running an older version of PHP (%s)' ),
    747747                                PHP_VERSION
    748748                        );
    749749                        $result['status'] = 'recommended';
     
    755755                if ( $response['is_secure'] ) {
    756756                        $result['label'] = sprintf(
    757757                                /* translators: %s: The server PHP version. */
    758                                 __( 'Your version of PHP (%s) should be updated' ),
     758                                __( 'Your site is running an older version of PHP (%s) which should be updated' ),
    759759                                PHP_VERSION
    760760                        );
    761761                        $result['status'] = 'recommended';
     
    766766                // Anything no longer secure must be updated.
    767767                $result['label'] = sprintf(
    768768                        /* translators: %s: The server PHP version. */
    769                         __( 'Your version of PHP (%s) requires an update' ),
     769                        __( 'Your site is running an older version of PHP (%s) which requires an update' ),
    770770                        PHP_VERSION
    771771                );
    772772                $result['status']         = 'critical';