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/network/site-new.php

    r41268 r41289  
    1111require_once( dirname( __FILE__ ) . '/admin.php' );
    1212
    13 /** WordPress Translation Install API */
     13/** WordPress Translation Installation API */
    1414require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
    1515
     
    4343        $domain = strtolower( $blog['domain'] );
    4444
    45     // If not a subdomain install, make sure the domain isn't a reserved word
     45    // If not a subdomain installation, make sure the domain isn't a reserved word
    4646    if ( ! is_subdomain_install() ) {
    4747        $subdirectory_reserved_names = get_subdirectory_reserved_names();
     
    6363    );
    6464
    65     // Handle translation install for the new site.
     65    // Handle translation installation for the new site.
    6666    if ( isset( $_POST['WPLANG'] ) ) {
    6767        if ( '' === $_POST['WPLANG'] ) {
Note: See TracChangeset for help on using the changeset viewer.