Make WordPress Core


Ignore:
Timestamp:
08/22/2017 11:51:11 AM (9 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/ajax-actions.php

    r41270 r41289  
    34573457        /*
    34583458         * See WP_Theme_Install_List_Table::_get_theme_status() if we wanted to check
    3459          * on post-install status.
     3459         * on post-installation status.
    34603460         */
    34613461        wp_send_json_success( $status );
     
    37023702        $pagenow = isset( $_POST['pagenow'] ) ? sanitize_key( $_POST['pagenow'] ) : '';
    37033703
    3704         // If install request is coming from import page, do not return network activation link.
     3704        // If installation request is coming from import page, do not return network activation link.
    37053705        $plugins_url = ( 'import' === $pagenow ) ? admin_url( 'plugins.php' ) : network_admin_url( 'plugins.php' );
    37063706
Note: See TracChangeset for help on using the changeset viewer.