I18N: Merge duplicate "Your plugins/themes/translations are all up to date" strings.

Props ramiy.
Fixes #47252.
Built from https://develop.svn.wordpress.org/trunk@45647


git-svn-id: http://core.svn.wordpress.org/trunk@45458 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-07-16 22:13:58 +00:00
parent 2ac05ca7d5
commit e5ad773194
3 changed files with 4 additions and 4 deletions

View File

@ -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&#8230;' ), '<span class="code">%s</span>' );

View File

@ -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' ),

View File

@ -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.