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
|
b
|
class WP_Automatic_Updater { |
1035 | 1035 | $subject = __( '[%s] Some plugins and themes have automatically updated' ); |
1036 | 1036 | $body[] = sprintf( |
1037 | 1037 | /* translators: %s: Home URL. */ |
1038 | | __( '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.' ), |
| 1038 | __( '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.' ), |
1039 | 1039 | home_url() |
1040 | 1040 | ); |
1041 | 1041 | } elseif ( $successful_plugins ) { |
… |
… |
class WP_Automatic_Updater { |
1043 | 1043 | $subject = __( '[%s] Some plugins were automatically updated' ); |
1044 | 1044 | $body[] = sprintf( |
1045 | 1045 | /* translators: %s: Home URL. */ |
1046 | | __( 'Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ), |
| 1046 | __( 'Howdy! Some plugins on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ), |
1047 | 1047 | home_url() |
1048 | 1048 | ); |
1049 | 1049 | } else { |
… |
… |
class WP_Automatic_Updater { |
1051 | 1051 | $subject = __( '[%s] Some themes were automatically updated' ); |
1052 | 1052 | $body[] = sprintf( |
1053 | 1053 | /* translators: %s: Home URL. */ |
1054 | | __( 'Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ), |
| 1054 | __( 'Howdy! Some themes on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ), |
1055 | 1055 | home_url() |
1056 | 1056 | ); |
1057 | 1057 | } |
… |
… |
class WP_Automatic_Updater { |
1064 | 1064 | $subject = __( '[%s] Some plugins and themes have failed to update' ); |
1065 | 1065 | $body[] = sprintf( |
1066 | 1066 | /* translators: %s: Home URL. */ |
1067 | | __( 'Howdy! Plugins and themes failed to update on your site at %s.' ), |
| 1067 | __( 'Howdy! Plugins and themes on your site at %s failed to update.' ), |
1068 | 1068 | home_url() |
1069 | 1069 | ); |
1070 | 1070 | } elseif ( $failed_plugins ) { |
… |
… |
class WP_Automatic_Updater { |
1072 | 1072 | $subject = __( '[%s] Some plugins have failed to update' ); |
1073 | 1073 | $body[] = sprintf( |
1074 | 1074 | /* translators: %s: Home URL. */ |
1075 | | __( 'Howdy! Plugins failed to update on your site at %s.' ), |
| 1075 | __( 'Howdy! Plugins on your site at %s failed to update.' ), |
1076 | 1076 | home_url() |
1077 | 1077 | ); |
1078 | 1078 | } else { |
… |
… |
class WP_Automatic_Updater { |
1080 | 1080 | $subject = __( '[%s] Some themes have failed to update' ); |
1081 | 1081 | $body[] = sprintf( |
1082 | 1082 | /* translators: %s: Home URL. */ |
1083 | | __( 'Howdy! Themes failed to update on your site at %s.' ), |
| 1083 | __( 'Howdy! Themes on your site at %s failed to update.' ), |
1084 | 1084 | home_url() |
1085 | 1085 | ); |
1086 | 1086 | } |