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/update-core.php

    r52947 r52978  
    536536
    537537        if ( ! $compatible_php && current_user_can( 'update_php' ) ) {
    538             $compat .= '<br>' . __( 'This update doesn&#8217;t work with your version of PHP.' ) . '&nbsp;';
     538            $compat .= '<br>' . __( 'This update does not work with your version of PHP.' ) . '&nbsp;';
    539539            $compat .= sprintf(
    540540                /* translators: %s: URL to Update PHP page. */
     
    682682
    683683        if ( ! $compatible_wp && ! $compatible_php ) {
    684             $compat .= '<br>' . __( 'This update doesn&#8217;t work with your versions of WordPress and PHP.' ) . '&nbsp;';
     684            $compat .= '<br>' . __( 'This update does not work with your versions of WordPress and PHP.' ) . '&nbsp;';
    685685            if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    686686                $compat .= sprintf(
     
    716716            }
    717717        } elseif ( ! $compatible_wp ) {
    718             $compat .= '<br>' . __( 'This update doesn&#8217;t work with your version of WordPress.' ) . '&nbsp;';
     718            $compat .= '<br>' . __( 'This update does not work with your version of WordPress.' ) . '&nbsp;';
    719719            if ( current_user_can( 'update_core' ) ) {
    720720                $compat .= sprintf(
     
    725725            }
    726726        } elseif ( ! $compatible_php ) {
    727             $compat .= '<br>' . __( 'This update doesn&#8217;t work with your version of PHP.' ) . '&nbsp;';
     727            $compat .= '<br>' . __( 'This update does not work with your version of PHP.' ) . '&nbsp;';
    728728            if ( current_user_can( 'update_php' ) ) {
    729729                $compat .= sprintf(
Note: See TracChangeset for help on using the changeset viewer.