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/includes/theme.php

    r52947 r52978  
    878878                                        printf(
    879879                                            /* translators: %s: Theme name. */
    880                                             __( 'There is a new version of %s available, but it doesn’t work with your versions of WordPress and PHP.' ),
     880                                            __( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
    881881                                            '{{{ data.name }}}'
    882882                                        );
     
    908908                                        printf(
    909909                                            /* translators: %s: Theme name. */
    910                                             __( 'There is a new version of %s available, but it doesn’t work with your version of WordPress.' ),
     910                                            __( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
    911911                                            '{{{ data.name }}}'
    912912                                        );
     
    923923                                        printf(
    924924                                            /* translators: %s: Theme name. */
    925                                             __( 'There is a new version of %s available, but it doesn’t work with your version of PHP.' ),
     925                                            __( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
    926926                                            '{{{ data.name }}}'
    927927                                        );
     
    957957                            <# if ( ! data.compatibleWP && ! data.compatiblePHP ) { #>
    958958                                <?php
    959                                 _e( 'This theme doesn&#8217;t work with your versions of WordPress and PHP.' );
     959                                _e( 'This theme does not work with your versions of WordPress and PHP.' );
    960960                                if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    961961                                    printf(
     
    983983                            <# } else if ( ! data.compatibleWP ) { #>
    984984                                <?php
    985                                 _e( 'This theme doesn&#8217;t work with your version of WordPress.' );
     985                                _e( 'This theme does not work with your version of WordPress.' );
    986986                                if ( current_user_can( 'update_core' ) ) {
    987987                                    printf(
     
    994994                            <# } else if ( ! data.compatiblePHP ) { #>
    995995                                <?php
    996                                 _e( 'This theme doesn&#8217;t work with your version of PHP.' );
     996                                _e( 'This theme does not work with your version of PHP.' );
    997997                                if ( current_user_can( 'update_php' ) ) {
    998998                                    printf(
Note: See TracChangeset for help on using the changeset viewer.