Make WordPress Core

Ticket #48716: 48716.3.patch

File 48716.3.patch, 1.6 KB (added by sathyapulse, 5 years ago)

48716.3.patch

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

     
    676676                $result = array(
    677677                        'label'       => sprintf(
    678678                                /* translators: %s: The current PHP version. */
    679                                 __( 'Your version of PHP (%s) is up to date' ),
     679                                __( 'Your site is running the current version of PHP (%s)' ),
    680680                                PHP_VERSION
    681681                        ),
    682682                        'status'      => 'good',
     
    711711                if ( $response['is_supported'] ) {
    712712                        $result['label'] = sprintf(
    713713                                /* translators: %s: The server PHP version. */
    714                                 __( 'Your version of PHP (%s) is out of date' ),
     714                                __( 'Your site is running an outdated version of PHP (%s)' ),
    715715                                PHP_VERSION
    716716                        );
    717717                        $result['status'] = 'recommended';
     
    723723                if ( $response['is_secure'] ) {
    724724                        $result['label'] = sprintf(
    725725                                /* translators: %s: The server PHP version. */
    726                                 __( 'Your version of PHP (%s) should be updated' ),
     726                                __( 'Your site is running an outdated version of PHP (%s) and should be updated' ),
    727727                                PHP_VERSION
    728728                        );
    729729                        $result['status'] = 'recommended';
     
    734734                // Anything no longer secure must be updated.
    735735                $result['label'] = sprintf(
    736736                        /* translators: %s: The server PHP version. */
    737                         __( 'Your version of PHP (%s) requires an update' ),
     737                        __( 'Your site is running an outdated version of PHP (%s) and requires an update' ),
    738738                        PHP_VERSION
    739739                );
    740740                $result['status']         = 'critical';