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/setup-config.php

    r38899 r41289  
    3636require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
    3737
    38 /** Load WordPress Translation Install API */
     38/** Load WordPress Translation Installation API */
    3939require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
    4040
     
    5858    );
    5959
    60 // Check if wp-config.php exists above the root directory but is not part of another install
     60// Check if wp-config.php exists above the root directory but is not part of another installation
    6161if ( @file_exists( ABSPATH . '../wp-config.php' ) && ! @file_exists( ABSPATH . '../wp-settings.php' ) ) {
    6262    wp_die( '<p>' . sprintf(
     
    369369        }
    370370?></textarea>
    371 <p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the install.&#8221;' ); ?></p>
    372 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>
     371<p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the installation.&#8221;' ); ?></p>
     372<p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p>
    373373<script>
    374374(function(){
     
    402402<p><?php _e( 'All right, sparky! You&#8217;ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;' ); ?></p>
    403403
    404 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>
     404<p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p>
    405405<?php
    406406    endif;
Note: See TracChangeset for help on using the changeset viewer.