From f8a5ae6b932ab6ad51287a6c8b6faa28a59f7bb6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 12 Jan 2020 02:24:03 +0000 Subject: [PATCH] Upgrade/Install: Remove the suggestion for users to skip a minor update to keep their current translation. With the introduction of asynchronous translation updates in WordPress 3.7+, the suggestion is no longer relevant. Props casiepa, danieltj, tobifjellner, netweb. Fixes #43242. Built from https://develop.svn.wordpress.org/trunk@47061 git-svn-id: http://core.svn.wordpress.org/trunk@46861 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index bf8804d9d0..2093201149 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -162,7 +162,7 @@ function list_core_update( $update ) { } echo '

'; if ( 'en_US' != $update->locale && ( ! isset( $wp_local_package ) || $wp_local_package != $update->locale ) ) { - echo '

' . __( 'This localized version contains both the translation and various other localization fixes. You can skip upgrading if you want to keep your current translation.' ) . '

'; + echo '

' . __( 'This localized version contains both the translation and various other localization fixes.' ) . '

'; } elseif ( 'en_US' == $update->locale && get_locale() != 'en_US' && ( ! $update->packages->partial && $wp_version == $update->partial_version ) ) { // Partial builds don't need language-specific warnings. echo '

' . sprintf( diff --git a/wp-includes/version.php b/wp-includes/version.php index fe5da4edf9..579e426a79 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47060'; +$wp_version = '5.4-alpha-47061'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.