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. Built from https://develop.svn.wordpress.org/trunk@52978 git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -1414,7 +1414,7 @@ function wp_print_community_events_templates() {
|
||||
* that they match the expected location before including them.
|
||||
* Use endonyms (native locale names) whenever possible.
|
||||
*/
|
||||
__( 'We couldn’t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.' ),
|
||||
__( 'We could not locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.' ),
|
||||
'<em>{{data.unknownCity}}</em>'
|
||||
);
|
||||
?>
|
||||
@@ -1462,7 +1462,7 @@ function wp_print_community_events_templates() {
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: The city the user searched for, 2: Meetup organization documentation URL. */
|
||||
__( 'There aren’t any events scheduled near %1$s at the moment. Would you like to <a href="%2$s">organize a WordPress event</a>?' ),
|
||||
__( '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>?' ),
|
||||
'{{ data.location.description }}',
|
||||
__( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' )
|
||||
);
|
||||
@@ -1472,7 +1472,7 @@ function wp_print_community_events_templates() {
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Meetup organization documentation URL. */
|
||||
__( 'There aren’t any events scheduled near you at the moment. Would you like to <a href="%s">organize a WordPress event</a>?' ),
|
||||
__( 'There are not any events scheduled near you at the moment. Would you like to <a href="%s">organize a WordPress event</a>?' ),
|
||||
__( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' )
|
||||
);
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user