From 8df86efc2b248e05ad54655a7857243e586e2ece Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 16 Jul 2019 22:27:55 +0000 Subject: [PATCH] Site Health: Use consistent verbiage for "Learn more" links. Props ronakganatra, garrett-eclipse. Fixes #47302. git-svn-id: https://develop.svn.wordpress.org/trunk@45649 602fd350-edb4-49c9-b593-d223f7449a82 --- src/index.php | 2 +- src/wp-admin/includes/class-wp-site-health.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.php b/src/index.php index a992feba51..371a97900b 100644 --- a/src/index.php +++ b/src/index.php @@ -49,7 +49,7 @@ $die .= ''; $die .= '

' . sprintf( /* translators: 1: NPM URL, 2: Handbook URL */ - __( 'This requires NPM. Read more about setting up your local development environment.' ), + __( 'This requires NPM. Learn more about setting up your local development environment.' ), 'https://www.npmjs.com/get-npm', __( 'https://make.wordpress.org/core/handbook/tutorials/installing-wordpress-locally/' ) ) . '

'; diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php index e9cdf61439..6b9bb6d418 100644 --- a/src/wp-admin/includes/class-wp-site-health.php +++ b/src/wp-admin/includes/class-wp-site-health.php @@ -946,7 +946,7 @@ class WP_Site_Health { '

%s %s

', /* translators: Localized version of WordPress requirements if one exists. */ esc_url( __( 'https://wordpress.org/about/requirements/' ) ), - __( 'Read more about what WordPress requires to run.' ), + __( 'Learn more about what WordPress requires to run.' ), /* translators: accessibility text */ __( '(opens in a new tab)' ) ), @@ -1217,7 +1217,7 @@ class WP_Site_Health { '

%s %s

', /* translators: Documentation explaining debugging in WordPress. */ esc_url( __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ) ), - __( 'Read about debugging in WordPress.' ), + __( 'Learn more about debugging in WordPress.' ), /* translators: accessibility text */ __( '(opens in a new tab)' ) ), @@ -1286,7 +1286,7 @@ class WP_Site_Health { '

%s %s

', /* translators: Documentation explaining HTTPS and why it should be used. */ esc_url( __( 'https://wordpress.org/support/article/why-should-i-use-https/' ) ), - __( 'Read more about why you should use HTTPS' ), + __( 'Learn more about why you should use HTTPS' ), /* translators: accessibility text */ __( '(opens in a new tab)' ) ),