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/class-wp-image-editor-gd.php

    r52837 r52978  
    9090
    9191        if ( ! is_file( $this->file ) && ! preg_match( '|^https?://|', $this->file ) ) {
    92             return new WP_Error( 'error_loading_image', __( 'File doesn’t exist?' ), $this->file );
     92            return new WP_Error( 'error_loading_image', __( 'File does not exist?' ), $this->file );
    9393        }
    9494
     
    9999
    100100        if ( ! $file_contents ) {
    101             return new WP_Error( 'error_loading_image', __( 'File doesn’t exist?' ), $this->file );
     101            return new WP_Error( 'error_loading_image', __( 'File does not exist?' ), $this->file );
    102102        }
    103103
Note: See TracChangeset for help on using the changeset viewer.