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/setup-config.php

    r51610 r52978  
    171171        printf(
    172172            /* translators: %s: wp-config.php */
    173             __( 'We’re going to use this information to create a %s file.' ),
     173            __( 'We are going to use this information to create a %s file.' ),
    174174            '<code>wp-config.php</code>'
    175175        );
     
    179179        printf(
    180180            /* translators: 1: wp-config-sample.php, 2: wp-config.php */
    181             __( 'If for any reason this automatic file creation doesn&#8217;t work, don&#8217;t worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.' ),
     181            __( 'If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.' ),
    182182            '<code>wp-config-sample.php</code>',
    183183            '<code>wp-config.php</code>'
     
    193193        ?>
    194194</p>
    195 <p><?php _e( 'In all likelihood, these items were supplied to you by your web host. If you don&#8217;t have this information, then you will need to contact them before you can continue. If you&#8217;re all ready&hellip;' ); ?></p>
     195<p><?php _e( 'In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready&hellip;' ); ?></p>
    196196
    197197<p class="step"><a href="<?php echo $step_1; ?>" class="button button-large"><?php _e( 'Let&#8217;s go!' ); ?></a></p>
     
    209209<h1 class="screen-reader-text"><?php _e( 'Set up your database connection' ); ?></h1>
    210210<form method="post" action="setup-config.php?step=2">
    211     <p><?php _e( 'Below you should enter your database connection details. If you&#8217;re not sure about these, contact your host.' ); ?></p>
     211    <p><?php _e( 'Below you should enter your database connection details. If you are not sure about these, contact your host.' ); ?></p>
    212212    <table class="form-table" role="presentation">
    213213        <tr>
     
    232232            <?php
    233233                /* translators: %s: localhost */
    234                 printf( __( 'You should be able to get this info from your web host, if %s doesn&#8217;t work.' ), '<code>localhost</code>' );
     234                printf( __( 'You should be able to get this info from your web host, if %s does not work.' ), '<code>localhost</code>' );
    235235            ?>
    236236            </td>
Note: See TracChangeset for help on using the changeset viewer.