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-includes/plugin.php

    r38589 r41289  
    781781 * registering the uninstall hook. In order to run using the hook, the plugin
    782782 * will have to be included, which means that any code laying outside of a
    783  * function will be run during the uninstall process. The plugin should not
    784  * hinder the uninstall process.
     783 * function will be run during the uninstallation process. The plugin should not
     784 * hinder the uninstallation process.
    785785 *
    786786 * If the plugin can not be written without running code within the plugin, then
    787787 * the plugin should create a file named 'uninstall.php' in the base plugin
    788  * folder. This file will be called, if it exists, during the uninstall process
     788 * folder. This file will be called, if it exists, during the uninstallation process
    789789 * bypassing the uninstall hook. The plugin, when using the 'uninstall.php'
    790790 * should always check for the 'WP_UNINSTALL_PLUGIN' constant, before
Note: See TracChangeset for help on using the changeset viewer.