Ticket #48716: 48716.4.diff
File 48716.4.diff, 1.5 KB (added by , 5 years ago) |
---|
-
src/wp-admin/includes/class-wp-site-health.php
708 708 $result = array( 709 709 'label' => sprintf( 710 710 /* 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)' ), 712 712 PHP_VERSION 713 713 ), 714 714 'status' => 'good', … … 743 743 if ( $response['is_supported'] ) { 744 744 $result['label'] = sprintf( 745 745 /* 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)' ), 747 747 PHP_VERSION 748 748 ); 749 749 $result['status'] = 'recommended'; … … 755 755 if ( $response['is_secure'] ) { 756 756 $result['label'] = sprintf( 757 757 /* 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' ), 759 759 PHP_VERSION 760 760 ); 761 761 $result['status'] = 'recommended'; … … 766 766 // Anything no longer secure must be updated. 767 767 $result['label'] = sprintf( 768 768 /* 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' ), 770 770 PHP_VERSION 771 771 ); 772 772 $result['status'] = 'critical';