mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 19:46:21 +00:00
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:
parent
e19329bad0
commit
b0e0f69b2e
@ -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'
|
||||
)
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user