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

    r52942 r52978  
    748748        $some_non_rendered_areas_messages    = array();
    749749        $some_non_rendered_areas_messages[1] = html_entity_decode(
    750             __( 'Your theme has 1 other widget area, but this particular page doesn’t display it.' ),
     750            __( 'Your theme has 1 other widget area, but this particular page does not display it.' ),
    751751            ENT_QUOTES,
    752752            get_bloginfo( 'charset' )
     
    758758                    /* translators: %s: The number of other widget areas registered but not rendered. */
    759759                    _n(
    760                         'Your theme has %s other widget area, but this particular page doesn’t display it.',
    761                         'Your theme has %s other widget areas, but this particular page doesn’t display them.',
     760                        'Your theme has %s other widget area, but this particular page does not display it.',
     761                        'Your theme has %s other widget areas, but this particular page does not display them.',
    762762                        $non_rendered_count
    763763                    ),
     
    772772            $no_areas_shown_message = html_entity_decode(
    773773                sprintf(
    774                     __( 'Your theme has 1 widget area, but this particular page doesn’t display it.' )
     774                    __( 'Your theme has 1 widget area, but this particular page does not display it.' )
    775775                ),
    776776                ENT_QUOTES,
     
    782782                    /* translators: %s: The total number of widget areas registered. */
    783783                    _n(
    784                         'Your theme has %s widget area, but this particular page doesn’t display it.',
    785                         'Your theme has %s widget areas, but this particular page doesn’t display them.',
     784                        'Your theme has %s widget area, but this particular page does not display it.',
     785                        'Your theme has %s widget areas, but this particular page does not display them.',
    786786                        $registered_sidebar_count
    787787                    ),
Note: See TracChangeset for help on using the changeset viewer.