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-plugin-install-list-table.php

    r51837 r52978  
    672672                echo '<div class="notice inline notice-error notice-alt"><p>';
    673673                if ( ! $compatible_php && ! $compatible_wp ) {
    674                     _e( 'This plugin doesn&#8217;t work with your versions of WordPress and PHP.' );
     674                    _e( 'This plugin does not work with your versions of WordPress and PHP.' );
    675675                    if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    676676                        printf(
     
    696696                    }
    697697                } elseif ( ! $compatible_wp ) {
    698                     _e( 'This plugin doesn&#8217;t work with your version of WordPress.' );
     698                    _e( 'This plugin does not work with your version of WordPress.' );
    699699                    if ( current_user_can( 'update_core' ) ) {
    700700                        printf(
     
    705705                    }
    706706                } elseif ( ! $compatible_php ) {
    707                     _e( 'This plugin doesn&#8217;t work with your version of PHP.' );
     707                    _e( 'This plugin does not work with your version of PHP.' );
    708708                    if ( current_user_can( 'update_php' ) ) {
    709709                        printf(
Note: See TracChangeset for help on using the changeset viewer.