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/upgrade.php

    r40864 r41289  
    99 */
    1010
    11 /** Include user install customize script. */
     11/** Include user installation customization script. */
    1212if ( file_exists(WP_CONTENT_DIR . '/install.php') )
    1313    require (WP_CONTENT_DIR . '/install.php');
     
    9696    flush_rewrite_rules();
    9797
    98     wp_new_blog_notification($blog_title, $guessurl, $user_id, ($email_password ? $user_password : __('The password you chose during the install.') ) );
     98    wp_new_blog_notification($blog_title, $guessurl, $user_id, ($email_password ? $user_password : __('The password you chose during installation.') ) );
    9999
    100100    wp_cache_flush();
     
    286286
    287287/**
    288  * Maybe enable pretty permalinks on install.
     288 * Maybe enable pretty permalinks on installation.
    289289 *
    290290 * If after enabling pretty permalinks don't work, fallback to query-string permalinks.
     
    453453
    454454/**
    455  * Functions to be called in install and upgrade scripts.
     455 * Functions to be called in installation and upgrade scripts.
    456456 *
    457457 * Contains conditional checks to determine which upgrade scripts to run,
     
    20612061
    20622062/**
    2063  * Utility version of get_option that is private to install/upgrade.
     2063 * Utility version of get_option that is private to installation/upgrade.
    20642064 *
    20652065 * @ignore
Note: See TracChangeset for help on using the changeset viewer.