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/class-wp-plugin-install-list-table.php

    r41161 r41289  
    560560                    <?php
    561561                    if ( $plugin['active_installs'] >= 1000000 ) {
    562                         $active_installs_text = _x( '1+ Million', 'Active plugin installs' );
     562                        $active_installs_text = _x( '1+ Million', 'Active plugin installations' );
    563563                    } elseif ( 0 == $plugin['active_installs'] ) {
    564                         $active_installs_text = _x( 'Less Than 10', 'Active plugin installs' );
     564                        $active_installs_text = _x( 'Less Than 10', 'Active plugin installations' );
    565565                    } else {
    566566                        $active_installs_text = number_format_i18n( $plugin['active_installs'] ) . '+';
    567567                    }
    568                     printf( __( '%s Active Installs' ), $active_installs_text );
     568                    printf( __( '%s Active Installations' ), $active_installs_text );
    569569                    ?>
    570570                </div>
Note: See TracChangeset for help on using the changeset viewer.