Site Health: Update the language around how PHP should be updated.

Follow-up to [50042].

Props SergeyBiryukov.

See #52327.


git-svn-id: https://develop.svn.wordpress.org/trunk@50058 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jake Spurlock 2021-01-28 17:21:48 +00:00
parent 151787f21c
commit e1beaec1be

View File

@ -1749,13 +1749,13 @@ function wp_dashboard_php_nag() {
if ( isset( $response['is_secure'] ) && ! $response['is_secure'] ) {
$msg = sprintf(
/* translators: %s: The server PHP version. */
__( 'Your site is running an insecure version of PHP (%s), and should be updated.' ),
__( 'Your site is running an insecure version of PHP (%s), which should be updated.' ),
PHP_VERSION
);
} else {
$msg = sprintf(
/* translators: %s: The server PHP version. */
__( 'Your site is running an outdated version of PHP (%s), and should be updated.' ),
__( 'Your site is running an outdated version of PHP (%s), which should be updated.' ),
PHP_VERSION
);
}