diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index a38e43c46f..4aaa0bf725 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -48,6 +48,8 @@ function list_core_update( $update ) { // If the only available update is a partial builds, it doesn't need a language-specific version string. $version_string = $update->current; } + } elseif ( 'en_US' === $update->locale && 'en_US' !== get_locale() ) { + $version_string = sprintf( '%s–%s', $update->current, $update->locale ); } $current = false; diff --git a/wp-includes/version.php b/wp-includes/version.php index 44bdb0e4d5..25a97fa7e5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52196'; +$wp_version = '5.9-alpha-52197'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.