Index: src/wp-admin/includes/class-wp-site-health.php
===================================================================
--- src/wp-admin/includes/class-wp-site-health.php	(revision 46753)
+++ src/wp-admin/includes/class-wp-site-health.php	(working copy)
@@ -676,7 +676,7 @@
 		$result = array(
 			'label'       => sprintf(
 				/* translators: %s: The current PHP version. */
-				__( 'Your version of PHP (%s) is up to date' ),
+				__( 'Your site is running the current version of PHP (%s)' ),
 				PHP_VERSION
 			),
 			'status'      => 'good',
@@ -711,7 +711,7 @@
 		if ( $response['is_supported'] ) {
 			$result['label'] = sprintf(
 				/* translators: %s: The server PHP version. */
-				__( 'Your version of PHP (%s) is out of date' ),
+				__( 'Your site is running an outdated version of PHP (%s)' ),
 				PHP_VERSION
 			);
 			$result['status'] = 'recommended';
@@ -723,7 +723,7 @@
 		if ( $response['is_secure'] ) {
 			$result['label'] = sprintf(
 				/* translators: %s: The server PHP version. */
-				__( 'Your version of PHP (%s) should be updated' ),
+				__( 'Your site is running an outdated version of PHP (%s) and should be updated' ),
 				PHP_VERSION
 			);
 			$result['status'] = 'recommended';
@@ -734,7 +734,7 @@
 		// Anything no longer secure must be updated.
 		$result['label'] = sprintf(
 			/* translators: %s: The server PHP version. */
-			__( 'Your version of PHP (%s) requires an update' ),
+			__( 'Your site is running an outdated version of PHP (%s) and requires an update' ),
 			PHP_VERSION
 		);
 		$result['status']         = 'critical';
