I18N: Don't capitalize "Extension" in update_core(), for consistency with other strings.

Follow-up to [46455].

See #47699.
Built from https://develop.svn.wordpress.org/trunk@46464


git-svn-id: http://core.svn.wordpress.org/trunk@46262 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-10-12 02:42:01 +00:00
parent e19329bad0
commit b0e0f69b2e
2 changed files with 4 additions and 4 deletions

View File

@ -1001,13 +1001,13 @@ function update_core( $from, $to ) {
);
}
// Add a warning when the JSON Extension is missing.
// Add a warning when the JSON PHP extension is missing.
if ( ! extension_loaded( 'json' ) ) {
return new WP_Error(
'php_not_compatible',
sprintf(
/* translators: 1: WordPress version number, 2: The PHP Extension name needed. */
__( 'The update cannot be installed because WordPress %1$s requires the %2$s PHP Extension.' ),
/* translators: 1: WordPress version number, 2: The PHP extension name needed. */
__( 'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.' ),
$wp_version,
'JSON'
)

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-beta3-46463';
$wp_version = '5.3-beta3-46464';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.