From ab854ce51833e3e595737302ee692d594643b065 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 3 Mar 2020 11:21:07 +0000 Subject: [PATCH] Site Health: Improve the strings in Site Health Status dashboard widget. Follow-up to [47063]. Props dlh. Fixes #49562. Built from https://develop.svn.wordpress.org/trunk@47413 git-svn-id: http://core.svn.wordpress.org/trunk@47200 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/dashboard.php | 17 ++++++++--------- wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 87c86cc5c3..b3b60cab13 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -1814,28 +1814,23 @@ function wp_dashboard_site_health() { -

- -

-

Visit the Site Health screen to gather information on about your site.' ), + __( 'Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information on about your site now.' ), esc_url( admin_url( 'site-health.php' ) ) ); ?>

-

0 ) : ?> - + - +

@@ -1845,7 +1840,11 @@ function wp_dashboard_site_health() { %1$d items on the Site Health Status screen.' ), + _n( + 'Take a look at the %1$d item on the Site Health screen.', + 'Take a look at the %1$d items on the Site Health screen.', + $issues_total + ), $issues_total, esc_url( admin_url( 'site-health.php' ) ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0fbcb636b6..6b221a43fe 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-beta3-47412'; +$wp_version = '5.4-beta3-47413'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.