diff --git a/wp-admin/includes/class-language-pack-upgrader.php b/wp-admin/includes/class-language-pack-upgrader.php index 0bc9c14ddc..9bb98a94bc 100644 --- a/wp-admin/includes/class-language-pack-upgrader.php +++ b/wp-admin/includes/class-language-pack-upgrader.php @@ -111,7 +111,7 @@ class Language_Pack_Upgrader extends WP_Upgrader { */ public function upgrade_strings() { $this->strings['starting_upgrade'] = __( 'Some of your translations need updating. Sit tight for a few more seconds while we update them as well.' ); - $this->strings['up_to_date'] = __( 'The translations are up to date.' ); + $this->strings['up_to_date'] = __( 'Your translations are all up to date.' ); $this->strings['no_package'] = __( 'Update package not available.' ); /* translators: %s: package URL */ $this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s…' ), '%s' ); diff --git a/wp-admin/includes/class-wp-site-health.php b/wp-admin/includes/class-wp-site-health.php index 12e127353b..e9cdf61439 100644 --- a/wp-admin/includes/class-wp-site-health.php +++ b/wp-admin/includes/class-wp-site-health.php @@ -277,7 +277,7 @@ class WP_Site_Health { */ public function get_test_plugin_version() { $result = array( - 'label' => __( 'Your plugins are up to date' ), + 'label' => __( 'Your plugins are all up to date' ), 'status' => 'good', 'badge' => array( 'label' => __( 'Security' ), @@ -409,7 +409,7 @@ class WP_Site_Health { */ public function get_test_theme_version() { $result = array( - 'label' => __( 'Your themes are up to date' ), + 'label' => __( 'Your themes are all up to date' ), 'status' => 'good', 'badge' => array( 'label' => __( 'Security' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 7c5e65a4f7..74d947cadc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45646'; +$wp_version = '5.3-alpha-45647'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.