Make WordPress Core


Ignore:
Timestamp:
07/17/2016 01:28:13 PM (9 years ago)
Author:
SergeyBiryukov
Message:

I18N: Change unnecessary uppercased words in WP_Upgrader::generic_strings() to lower case.

See #18218.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-upgrader.php

    r37714 r38074  
    151151     */
    152152    public function generic_strings() {
    153         $this->strings['bad_request'] = __('Invalid Data provided.');
     153        $this->strings['bad_request'] = __('Invalid data provided.');
    154154        $this->strings['fs_unavailable'] = __('Could not access filesystem.');
    155155        $this->strings['fs_error'] = __('Filesystem error.');
    156         $this->strings['fs_no_root_dir'] = __('Unable to locate WordPress Root directory.');
    157         $this->strings['fs_no_content_dir'] = __('Unable to locate WordPress Content directory (wp-content).');
    158         $this->strings['fs_no_plugins_dir'] = __('Unable to locate WordPress Plugin directory.');
    159         $this->strings['fs_no_themes_dir'] = __('Unable to locate WordPress Theme directory.');
     156        $this->strings['fs_no_root_dir'] = __('Unable to locate WordPress root directory.');
     157        $this->strings['fs_no_content_dir'] = __('Unable to locate WordPress content directory (wp-content).');
     158        $this->strings['fs_no_plugins_dir'] = __('Unable to locate WordPress plugin directory.');
     159        $this->strings['fs_no_themes_dir'] = __('Unable to locate WordPress theme directory.');
    160160        /* translators: %s: directory name */
    161161        $this->strings['fs_no_folder'] = __('Unable to locate needed folder (%s).');
Note: See TracChangeset for help on using the changeset viewer.