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/class-wp-site-health.php

    r52580 r52978  
    468468                    $unused_plugins
    469469                ),
    470                 __( 'Inactive plugins are tempting targets for attackers. If you’re not going to use a plugin, you should consider removing it.' )
     470                __( 'Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.' )
    471471            );
    472472
     
    635635                        sprintf(
    636636                            /* translators: 1: The currently active theme. 2: The active theme's parent theme. */
    637                             __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep your active theme, %1$s, and %2$s, its parent theme.' ),
     637                            __( 'To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.' ),
    638638                            $active_theme->name,
    639639                            $active_theme->parent()->name
     
    654654                        sprintf(
    655655                            /* translators: 1: The default theme for WordPress. 2: The currently active theme. 3: The active theme's parent theme. */
    656                             __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.' ),
     656                            __( 'To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.' ),
    657657                            $default_theme ? $default_theme->name : WP_DEFAULT_THEME,
    658658                            $active_theme->name,
Note: See TracChangeset for help on using the changeset viewer.