Make WordPress Core


Ignore:
Timestamp:
03/22/2022 04:23:32 PM (4 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/update.php

    r52227 r52978  
    535535                                printf(
    536536                                        /* translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, 4: Version number 5: URL to Update PHP page. */
    537                                         __( 'There is a new version of %1$s available, but it doesn&#8217;t work with your version of PHP. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s">learn more about updating PHP</a>.' ),
     537                                        __( 'There is a new version of %1$s available, but it does not work with your version of PHP. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s">learn more about updating PHP</a>.' ),
    538538                                        $plugin_name,
    539539                                        esc_url( $details_url ),
     
    723723                        printf(
    724724                                /* translators: %s: Theme name. */
    725                                 __( 'There is a new version of %s available, but it doesn&#8217;t work with your versions of WordPress and PHP.' ),
     725                                __( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
    726726                                $theme['Name']
    727727                        );
     
    751751                        printf(
    752752                                /* translators: %s: Theme name. */
    753                                 __( 'There is a new version of %s available, but it doesn&#8217;t work with your version of WordPress.' ),
     753                                __( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
    754754                                $theme['Name']
    755755                        );
     
    764764                        printf(
    765765                                /* translators: %s: Theme name. */
    766                                 __( 'There is a new version of %s available, but it doesn&#8217;t work with your version of PHP.' ),
     766                                __( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
    767767                                $theme['Name']
    768768                        );
Note: See TracChangeset for help on using the changeset viewer.