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-wp-upgrader.php

    r41168 r41289  
    8080     *      @type string $source             The full path to the source the files were installed from.
    8181     *      @type string $source_files       List of all the files in the source directory.
    82      *      @type string $destination        The full path to the install destination folder.
     82     *      @type string $destination        The full path to the installation destination folder.
    8383     *      @type string $destination_name   The name of the destination folder, or empty if `$destination`
    8484     *                                       and `$local_destination` are the same.
     
    571571
    572572        /**
    573          * Filters the install response after the installation has finished.
     573         * Filters the installation response after the installation has finished.
    574574         *
    575575         * @since 2.8.0
    576576         *
    577          * @param bool  $response   Install response.
     577         * @param bool  $response   Installation response.
    578578         * @param array $hook_extra Extra arguments passed to hooked filters.
    579579         * @param array $result     Installation result data.
     
    591591
    592592    /**
    593      * Run an upgrade/install.
     593     * Run an upgrade/installation.
    594594     *
    595595     * Attempts to download the package (if it is not a local file), unpack it, and
     
    613613     *                                               folder already exists. When true, `$clear_destination`
    614614     *                                               should be false. Default true.
    615      *     @type bool   $is_multi                    Whether this run is one of multiple upgrade/install
     615     *     @type bool   $is_multi                    Whether this run is one of multiple upgrade/installation
    616616     *                                               actions being performed in bulk. When true, the skin
    617617     *                                               WP_Upgrader::header() and WP_Upgrader::footer()
     
    736736            $this->skin->feedback('process_failed');
    737737        } else {
    738             // Install succeeded.
     738            // Installation succeeded.
    739739            $this->skin->feedback('process_success');
    740740        }
Note: See TracChangeset for help on using the changeset viewer.