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/widgets/class-wp-widget-media.php

    r51851 r52978  
    7575            'missing_attachment'         => sprintf(
    7676                /* translators: %s: URL to media library. */
    77                 __( 'We can&#8217;t find that file. Check your <a href="%s">media library</a> and make sure it wasn&#8217;t deleted.' ),
     77                __( 'We cannot find that file. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
    7878                esc_url( admin_url( 'upload.php' ) )
    7979            ),
     
    8181            'media_library_state_multi'  => _n_noop( 'Media Widget (%d)', 'Media Widget (%d)' ),
    8282            'media_library_state_single' => __( 'Media Widget' ),
    83             'unsupported_file_type'      => __( 'Looks like this isn&#8217;t the correct kind of file. Please link to an appropriate file instead.' ),
     83            'unsupported_file_type'      => __( 'Looks like this is not the correct kind of file. Please link to an appropriate file instead.' ),
    8484        );
    8585        $this->l10n    = array_merge( $l10n_defaults, array_filter( $this->l10n ) );
Note: See TracChangeset for help on using the changeset viewer.