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/install.php

    r50561 r52978  
    359359
    360360<h2><?php _e( 'Information needed' ); ?></h2>
    361 <p><?php _e( 'Please provide the following information. Don&#8217;t worry, you can always change these settings later.' ); ?></p>
     361<p><?php _e( 'Please provide the following information. Do not worry, you can always change these settings later.' ); ?></p>
    362362
    363363        <?php
     
    406406        } elseif ( ! is_email( $admin_email ) ) {
    407407            // TODO: Poka-yoke.
    408             display_setup_form( __( 'Sorry, that isn&#8217;t a valid email address. Email addresses look like <code>username@example.com</code>.' ) );
     408            display_setup_form( __( 'Sorry, that is not a valid email address. Email addresses look like <code>username@example.com</code>.' ) );
    409409            $error = true;
    410410        }
Note: See TracChangeset for help on using the changeset viewer.