diff --git a/src/wp-admin/includes/class-wp-automatic-updater.php b/src/wp-admin/includes/class-wp-automatic-updater.php
index 641db4b325..81d47c2e20 100644
--- a/src/wp-admin/includes/class-wp-automatic-updater.php
+++ b/src/wp-admin/includes/class-wp-automatic-updater.php
@@ -1035,7 +1035,7 @@ class WP_Automatic_Updater {
 					$subject = __( '[%s] Some plugins and themes have automatically updated' );
 					$body[]  = sprintf(
 						/* translators: %s: Home URL. */
-						__( 'Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ),
+						__( 'Howdy! Some plugins and themes on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ),
 						home_url()
 					);
 				} elseif ( $successful_plugins ) {
@@ -1043,7 +1043,7 @@ class WP_Automatic_Updater {
 					$subject = __( '[%s] Some plugins were automatically updated' );
 					$body[]  = sprintf(
 						/* translators: %s: Home URL. */
-						__( 'Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ),
+						__( 'Howdy! Some plugins on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ),
 						home_url()
 					);
 				} else {
@@ -1051,7 +1051,7 @@ class WP_Automatic_Updater {
 					$subject = __( '[%s] Some themes were automatically updated' );
 					$body[]  = sprintf(
 						/* translators: %s: Home URL. */
-						__( 'Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ),
+						__( 'Howdy! Some themes on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ),
 						home_url()
 					);
 				}
@@ -1064,7 +1064,7 @@ class WP_Automatic_Updater {
 					$subject = __( '[%s] Some plugins and themes have failed to update' );
 					$body[]  = sprintf(
 						/* translators: %s: Home URL. */
-						__( 'Howdy! Plugins and themes failed to update on your site at %s.' ),
+						__( 'Howdy! Plugins and themes on your site at %s failed to update.' ),
 						home_url()
 					);
 				} elseif ( $failed_plugins ) {
@@ -1072,7 +1072,7 @@ class WP_Automatic_Updater {
 					$subject = __( '[%s] Some plugins have failed to update' );
 					$body[]  = sprintf(
 						/* translators: %s: Home URL. */
-						__( 'Howdy! Plugins failed to update on your site at %s.' ),
+						__( 'Howdy! Plugins on your site at %s failed to update.' ),
 						home_url()
 					);
 				} else {
@@ -1080,7 +1080,7 @@ class WP_Automatic_Updater {
 					$subject = __( '[%s] Some themes have failed to update' );
 					$body[]  = sprintf(
 						/* translators: %s: Home URL. */
-						__( 'Howdy! Themes failed to update on your site at %s.' ),
+						__( 'Howdy! Themes on your site at %s failed to update.' ),
 						home_url()
 					);
 				}
