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

    r51475 r52978  
    6666
    6767        if ( empty( $att->ID ) ) {
    68             wp_die( __( 'You attempted to edit an attachment that doesn’t exist. Perhaps it was deleted?' ) );
     68            wp_die( __( 'You attempted to edit an attachment that does not exist. Perhaps it was deleted?' ) );
    6969        }
    7070        if ( 'attachment' !== $att->post_type ) {
    71             wp_die( __( 'You attempted to edit an item that isn’t an attachment. Please go back and try again.' ) );
     71            wp_die( __( 'You attempted to edit an item that is not an attachment. Please go back and try again.' ) );
    7272        }
    7373        if ( 'trash' === $att->post_status ) {
    74             wp_die( __( 'You can’t edit this attachment because it is in the Trash. Please move it out of the Trash and try again.' ) );
     74            wp_die( __( 'You cannot edit this attachment because it is in the Trash. Please move it out of the Trash and try again.' ) );
    7575        }
    7676
Note: See TracChangeset for help on using the changeset viewer.