Make WordPress Core

Changeset 52979


Ignore:
Timestamp:
03/22/2022 07:57:20 PM (14 months 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.

Follow-up to [52978].

See #38913.

Location:
trunk/src/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-plugins-list-table.php

    r52227 r52979  
    12731273
    12741274            if ( ! $compatible_php && ! $compatible_wp ) {
    1275                 _e( 'This plugin doesn’t work with your versions of WordPress and PHP.' );
     1275                _e( 'This plugin does not work with your versions of WordPress and PHP.' );
    12761276                if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    12771277                    printf(
     
    12971297                }
    12981298            } elseif ( ! $compatible_wp ) {
    1299                 _e( 'This plugin doesn’t work with your version of WordPress.' );
     1299                _e( 'This plugin does not work with your version of WordPress.' );
    13001300                if ( current_user_can( 'update_core' ) ) {
    13011301                    printf(
     
    13061306                }
    13071307            } elseif ( ! $compatible_php ) {
    1308                 _e( 'This plugin doesn’t work with your version of PHP.' );
     1308                _e( 'This plugin does not work with your version of PHP.' );
    13091309                if ( current_user_can( 'update_php' ) ) {
    13101310                    printf(
  • trunk/src/wp-admin/includes/dashboard.php

    r52978 r52979  
    20412041            <?php else : ?>
    20422042                <h3><?php _e( 'Discover a new way to build your site.' ); ?></h3>
    2043                 <p><?php _e( 'There&#8217;s a new kind of WordPress theme, called a block theme, that lets you build the site you&#8217;ve always wanted &#8212; with blocks and styles.' ); ?></p>
     2043                <p><?php _e( 'There is a new kind of WordPress theme, called a block theme, that lets you build the site you&#8217;ve always wanted &#8212; with blocks and styles.' ); ?></p>
    20442044                <a href="<?php echo esc_url( __( 'https://wordpress.org/support/article/block-themes/' ) ); ?>"><?php _e( 'Learn about block themes' ); ?></a>
    20452045            <?php endif; ?>
  • trunk/src/wp-admin/widgets.php

    r51475 r52979  
    2222
    2323if ( ! current_theme_supports( 'widgets' ) ) {
    24     wp_die( __( 'The theme you are currently using isn&#8217;t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://developer.wordpress.org/themes/functionality/widgets/">follow these instructions</a>.' ) );
     24    wp_die( __( 'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://developer.wordpress.org/themes/functionality/widgets/">follow these instructions</a>.' ) );
    2525}
    2626
Note: See TracChangeset for help on using the changeset viewer.