Make WordPress Core


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

Follow-up to [52978].

See #38913.

File:
1 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(
Note: See TracChangeset for help on using the changeset viewer.