mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@52978 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -747,7 +747,7 @@ final class WP_Customize_Widgets {
|
||||
*/
|
||||
$some_non_rendered_areas_messages = array();
|
||||
$some_non_rendered_areas_messages[1] = html_entity_decode(
|
||||
__( 'Your theme has 1 other widget area, but this particular page doesn’t display it.' ),
|
||||
__( 'Your theme has 1 other widget area, but this particular page does not display it.' ),
|
||||
ENT_QUOTES,
|
||||
get_bloginfo( 'charset' )
|
||||
);
|
||||
@@ -757,8 +757,8 @@ final class WP_Customize_Widgets {
|
||||
sprintf(
|
||||
/* translators: %s: The number of other widget areas registered but not rendered. */
|
||||
_n(
|
||||
'Your theme has %s other widget area, but this particular page doesn’t display it.',
|
||||
'Your theme has %s other widget areas, but this particular page doesn’t display them.',
|
||||
'Your theme has %s other widget area, but this particular page does not display it.',
|
||||
'Your theme has %s other widget areas, but this particular page does not display them.',
|
||||
$non_rendered_count
|
||||
),
|
||||
number_format_i18n( $non_rendered_count )
|
||||
@@ -771,7 +771,7 @@ final class WP_Customize_Widgets {
|
||||
if ( 1 === $registered_sidebar_count ) {
|
||||
$no_areas_shown_message = html_entity_decode(
|
||||
sprintf(
|
||||
__( 'Your theme has 1 widget area, but this particular page doesn’t display it.' )
|
||||
__( 'Your theme has 1 widget area, but this particular page does not display it.' )
|
||||
),
|
||||
ENT_QUOTES,
|
||||
get_bloginfo( 'charset' )
|
||||
@@ -781,8 +781,8 @@ final class WP_Customize_Widgets {
|
||||
sprintf(
|
||||
/* translators: %s: The total number of widget areas registered. */
|
||||
_n(
|
||||
'Your theme has %s widget area, but this particular page doesn’t display it.',
|
||||
'Your theme has %s widget areas, but this particular page doesn’t display them.',
|
||||
'Your theme has %s widget area, but this particular page does not display it.',
|
||||
'Your theme has %s widget areas, but this particular page does not display them.',
|
||||
$registered_sidebar_count
|
||||
),
|
||||
number_format_i18n( $registered_sidebar_count )
|
||||
|
||||
Reference in New Issue
Block a user