Make WordPress Core


Ignore:
Timestamp:
03/22/2022 04:23:32 PM (3 years ago)
Author:
audrasjb
Message:

Administration: Replace contracted verb forms for better consistency.

This changeset replaces contracted verb forms like doesn't, can't, or isn't with non-contracted forms like does not, cannot, or is not, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.

Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/theme-install.php

    r52947 r52978  
    126126
    127127$help_installing =
    128     '<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you&#8217;re interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' .
     128    '<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' .
    129129    '<p>' . __( 'To install the theme so you can preview it with your site&#8217;s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme&#8217;s thumbnail image.' ) . '</p>';
    130130
     
    297297            <# if ( ! data.compatible_wp && ! data.compatible_php ) { #>
    298298                <?php
    299                 _e( 'This theme doesn&#8217;t work with your versions of WordPress and PHP.' );
     299                _e( 'This theme does not work with your versions of WordPress and PHP.' );
    300300                if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    301301                    printf(
     
    323323            <# } else if ( ! data.compatible_wp ) { #>
    324324                <?php
    325                 _e( 'This theme doesn&#8217;t work with your version of WordPress.' );
     325                _e( 'This theme does not work with your version of WordPress.' );
    326326                if ( current_user_can( 'update_core' ) ) {
    327327                    printf(
     
    334334            <# } else if ( ! data.compatible_php ) { #>
    335335                <?php
    336                 _e( 'This theme doesn&#8217;t work with your version of PHP.' );
     336                _e( 'This theme does not work with your version of PHP.' );
    337337                if ( current_user_can( 'update_php' ) ) {
    338338                    printf(
     
    485485                                <# if ( ! data.compatible_wp && ! data.compatible_php ) { #>
    486486                                    <?php
    487                                     _e( 'This theme doesn&#8217;t work with your versions of WordPress and PHP.' );
     487                                    _e( 'This theme does not work with your versions of WordPress and PHP.' );
    488488                                    if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    489489                                        printf(
     
    511511                                <# } else if ( ! data.compatible_wp ) { #>
    512512                                    <?php
    513                                     _e( 'This theme doesn&#8217;t work with your version of WordPress.' );
     513                                    _e( 'This theme does not work with your version of WordPress.' );
    514514                                    if ( current_user_can( 'update_core' ) ) {
    515515                                        printf(
     
    522522                                <# } else if ( ! data.compatible_php ) { #>
    523523                                    <?php
    524                                     _e( 'This theme doesn&#8217;t work with your version of PHP.' );
     524                                    _e( 'This theme does not work with your version of PHP.' );
    525525                                    if ( current_user_can( 'update_php' ) ) {
    526526                                        printf(
Note: See TracChangeset for help on using the changeset viewer.