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/includes/dashboard.php

    r52967 r52978  
    14151415             * Use endonyms (native locale names) whenever possible.
    14161416             */
    1417             __( 'We couldn’t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.' ),
     1417            __( 'We could not locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.' ),
    14181418            '<em>{{data.unknownCity}}</em>'
    14191419        );
     
    14631463                printf(
    14641464                    /* translators: 1: The city the user searched for, 2: Meetup organization documentation URL. */
    1465                     __( 'There aren&#8217;t any events scheduled near %1$s at the moment. Would you like to <a href="%2$s">organize a WordPress event</a>?' ),
     1465                    __( 'There are not any events scheduled near %1$s at the moment. Would you like to <a href="%2$s">organize a WordPress event</a>?' ),
    14661466                    '{{ data.location.description }}',
    14671467                    __( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' )
     
    14731473                printf(
    14741474                    /* translators: %s: Meetup organization documentation URL. */
    1475                     __( 'There aren&#8217;t any events scheduled near you at the moment. Would you like to <a href="%s">organize a WordPress event</a>?' ),
     1475                    __( 'There are not any events scheduled near you at the moment. Would you like to <a href="%s">organize a WordPress event</a>?' ),
    14761476                    __( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' )
    14771477                );
Note: See TracChangeset for help on using the changeset viewer.