Make WordPress Core


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

    r50255 r52978  
    125125
    126126        if ( ! $post ) {
    127             wp_die( __( 'You attempted to edit an item that doesn’t exist. Perhaps it was deleted?' ) );
     127            wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) );
    128128        }
    129129
     
    141141
    142142        if ( 'trash' === $post->post_status ) {
    143             wp_die( __( 'You can’t edit this item because it is in the Trash. Please restore it and try again.' ) );
     143            wp_die( __( 'You cannot edit this item because it is in the Trash. Please restore it and try again.' ) );
    144144        }
    145145
Note: See TracChangeset for help on using the changeset viewer.