Make WordPress Core


Ignore:
Timestamp:
03/22/2022 04:23:32 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.

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/template.php

    r52841 r52978  
    196196 * If the $echo argument is true then the elements for a list of checkbox
    197197 * `<input>` elements labelled with the names of the selected terms is output.
    198  * If the $post_ID global isn't empty then the terms associated with that
     198 * If the $post_ID global is not empty then the terms associated with that
    199199 * post will be marked as checked.
    200200 *
     
    11451145    if ( $plugin ) {
    11461146        /* translators: %s: The name of the plugin that generated this meta box. */
    1147         printf( __( "This meta box, from the %s plugin, isn't compatible with the block editor." ), "<strong>{$plugin['Name']}</strong>" );
     1147        printf( __( 'This meta box, from the %s plugin, is not compatible with the block editor.' ), "<strong>{$plugin['Name']}</strong>" );
    11481148    } else {
    1149         _e( "This meta box isn't compatible with the block editor." );
     1149        _e( 'This meta box is not compatible with the block editor.' );
    11501150    }
    11511151    echo '</p>';
     
    13891389                                    <?php
    13901390                                        /* translators: %s: The name of the plugin that generated this meta box. */
    1391                                         printf( __( "This meta box, from the %s plugin, isn't compatible with the block editor." ), "<strong>{$plugin['Name']}</strong>" );
     1391                                        printf( __( 'This meta box, from the %s plugin, is not compatible with the block editor.' ), "<strong>{$plugin['Name']}</strong>" );
    13921392                                    ?>
    13931393                                </p>
Note: See TracChangeset for help on using the changeset viewer.