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-includes/customize/class-wp-customize-theme-control.php

    r52947 r52978  
    114114                                printf(
    115115                                    /* translators: %s: Theme name. */
    116                                     __( 'There is a new version of %s available, but it doesn’t work with your versions of WordPress and PHP.' ),
     116                                    __( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
    117117                                    '{{{ data.theme.name }}}'
    118118                                );
     
    144144                                printf(
    145145                                    /* translators: %s: Theme name. */
    146                                     __( 'There is a new version of %s available, but it doesn’t work with your version of WordPress.' ),
     146                                    __( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
    147147                                    '{{{ data.theme.name }}}'
    148148                                );
     
    159159                                printf(
    160160                                    /* translators: %s: Theme name. */
    161                                     __( 'There is a new version of %s available, but it doesn’t work with your version of PHP.' ),
     161                                    __( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
    162162                                    '{{{ data.theme.name }}}'
    163163                                );
     
    181181                    <# if ( ! data.theme.compatibleWP && ! data.theme.compatiblePHP ) { #>
    182182                        <?php
    183                         _e( 'This theme doesn&#8217;t work with your versions of WordPress and PHP.' );
     183                        _e( 'This theme does not work with your versions of WordPress and PHP.' );
    184184                        if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    185185                            printf(
     
    207207                    <# } else if ( ! data.theme.compatibleWP ) { #>
    208208                        <?php
    209                         _e( 'This theme doesn&#8217;t work with your version of WordPress.' );
     209                        _e( 'This theme does not work with your version of WordPress.' );
    210210                        if ( current_user_can( 'update_core' ) ) {
    211211                            printf(
     
    218218                    <# } else if ( ! data.theme.compatiblePHP ) { #>
    219219                        <?php
    220                         _e( 'This theme doesn&#8217;t work with your version of PHP.' );
     220                        _e( 'This theme does not work with your version of PHP.' );
    221221                        if ( current_user_can( 'update_php' ) ) {
    222222                            printf(
Note: See TracChangeset for help on using the changeset viewer.