Make WordPress Core


Ignore:
Timestamp:
08/22/2017 11:51:11 AM (7 years ago)
Author:
johnbillion
Message:

General: Improve terminology used when referring to installations of WordPress and its extensions.

"Install" is not a noun, and while it might be acceptable to use the verb as a noun, it is not correct. Using the correct
noun, "installation", increases clarity, especially for non-native English speakers.

This change fixes the usage in user-facing text and in developer documentation.

Fixes #41620

File:
1 edited

Legend:

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

    r41161 r41289  
    3232
    3333    /**
    34      * Whether a bulk upgrade/install is being performed.
     34     * Whether a bulk upgrade/installation is being performed.
    3535     *
    3636     * @since 2.9.0
     
    5757
    5858    /**
    59      * Initialize the install strings.
     59     * Initialize the installation strings.
    6060     *
    6161     * @since 2.8.0
    6262     */
    6363    public function install_strings() {
    64         $this->strings['no_package'] = __('Install package not available.');
    65         $this->strings['downloading_package'] = __('Downloading install package from <span class="code">%s</span>&#8230;');
     64        $this->strings['no_package'] = __('Installation package not available.');
     65        $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>&#8230;');
    6666        $this->strings['unpack_package'] = __('Unpacking the package&#8230;');
    6767        $this->strings['installing_package'] = __('Installing the plugin&#8230;');
    6868        $this->strings['no_files'] = __('The plugin contains no files.');
    69         $this->strings['process_failed'] = __('Plugin install failed.');
     69        $this->strings['process_failed'] = __('Plugin installation failed.');
    7070        $this->strings['process_success'] = __('Plugin installed successfully.');
    7171    }
     
    8484     *                                    Default true.
    8585     * }
    86      * @return bool|WP_Error True if the install was successful, false or a WP_Error otherwise.
     86     * @return bool|WP_Error True if the installation was successful, false or a WP_Error otherwise.
    8787     */
    8888    public function install( $package, $args = array() ) {
Note: See TracChangeset for help on using the changeset viewer.