Make WordPress Core

Changeset 46464


Ignore:
Timestamp:
10/12/2019 02:40:43 AM (5 years ago)
Author:
SergeyBiryukov
Message:

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

Follow-up to [46455].

See #47699.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/update-core.php

    r46455 r46464  
    10021002    }
    10031003
    1004     // Add a warning when the JSON Extension is missing.
     1004    // Add a warning when the JSON PHP extension is missing.
    10051005    if ( ! extension_loaded( 'json' ) ) {
    10061006        return new WP_Error(
    10071007            'php_not_compatible',
    10081008            sprintf(
    1009                 /* translators: 1: WordPress version number, 2: The PHP Extension name needed. */
    1010                 __( 'The update cannot be installed because WordPress %1$s requires the %2$s PHP Extension.' ),
     1009                /* translators: 1: WordPress version number, 2: The PHP extension name needed. */
     1010                __( 'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.' ),
    10111011                $wp_version,
    10121012                'JSON'
Note: See TracChangeset for help on using the changeset viewer.