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/wp-db.php

    r52423 r52978  
    11831183                wp_load_translations_early();
    11841184
    1185                 $message = '<h1>' . __( 'Can&#8217;t select database' ) . "</h1>\n";
     1185                $message = '<h1>' . __( 'Cannot select database' ) . "</h1>\n";
    11861186
    11871187                $message .= '<p>' . sprintf(
     
    12111211                $message .= '<p>' . sprintf(
    12121212                    /* translators: %s: Support forums URL. */
    1213                     __( 'If you don&#8217;t know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress Support Forums</a>.' ),
     1213                    __( 'If you do not know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress Support Forums</a>.' ),
    12141214                    __( 'https://wordpress.org/support/forums/' )
    12151215                ) . "</p>\n";
     
    18031803            $message .= '<p>' . sprintf(
    18041804                /* translators: 1: wp-config.php, 2: Database host. */
    1805                 __( 'This either means that the username and password information in your %1$s file is incorrect or we can&#8217;t contact the database server at %2$s. This could mean your host&#8217;s database server is down.' ),
     1805                __( 'This either means that the username and password information in your %1$s file is incorrect or we cannot contact the database server at %2$s. This could mean your host&#8217;s database server is down.' ),
    18061806                '<code>wp-config.php</code>',
    18071807                '<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>'
     
    18161816            $message .= '<p>' . sprintf(
    18171817                /* translators: %s: Support forums URL. */
    1818                 __( 'If you&#8217;re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),
     1818                __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),
    18191819                __( 'https://wordpress.org/support/forums/' )
    18201820            ) . "</p>\n";
     
    19731973        $message .= '<p>' . sprintf(
    19741974            /* translators: %s: Support forums URL. */
    1975             __( 'If you&#8217;re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),
     1975            __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),
    19761976            __( 'https://wordpress.org/support/forums/' )
    19771977        ) . "</p>\n";
Note: See TracChangeset for help on using the changeset viewer.