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.