Make WordPress Core

Changeset 34987


Ignore:
Timestamp:
10/09/2015 03:42:33 PM (9 years ago)
Author:
DrewAPicture
Message:

Install: Match existing tonal style in setup-config.php by converting strings containing 'do not' and 'does not' to instead use contractions.

The 'do not' is converted to "don't" because "you" is third-person plural, and 'does not' is converted to "doesn't" because localhost is third-person singular. While both are "negative" contractions, we often write this way in WordPress to provide a friendlier tone. That's your English grammar lesson for the day.

Props ankit-k-gupta, iamfriendly.
Fixes #30317.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/setup-config.php

    r34867 r34987  
    144144    <?php _e( "Need more help? <a href='https://codex.wordpress.org/Editing_wp-config.php'>We got it</a>." ); ?>
    145145</p>
    146 <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&#8217;re all ready&hellip;" ); ?></p>
     146<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>
    147147
    148148<p class="step"><a href="<?php echo $step_1; ?>" class="button button-large"><?php _e( 'Let&#8217;s go!' ); ?></a></p>
     
    177177            <th scope="row"><label for="dbhost"><?php _e( 'Database Host' ); ?></label></th>
    178178            <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
    179             <td><?php _e( 'You should be able to get this info from your web host, if <code>localhost</code> does not work.' ); ?></td>
     179            <td><?php _e( 'You should be able to get this info from your web host, if <code>localhost</code> doesn&#8217;t work.' ); ?></td>
    180180        </tr>
    181181        <tr>
Note: See TracChangeset for help on using the changeset viewer.