mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@52978 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -170,7 +170,7 @@ switch ( $step ) {
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: wp-config.php */
|
||||
__( 'We’re going to use this information to create a %s file.' ),
|
||||
__( 'We are going to use this information to create a %s file.' ),
|
||||
'<code>wp-config.php</code>'
|
||||
);
|
||||
?>
|
||||
@@ -178,7 +178,7 @@ switch ( $step ) {
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: wp-config-sample.php, 2: wp-config.php */
|
||||
__( 'If for any reason this automatic file creation doesn’t work, don’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.' ),
|
||||
__( '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.' ),
|
||||
'<code>wp-config-sample.php</code>',
|
||||
'<code>wp-config.php</code>'
|
||||
);
|
||||
@@ -192,7 +192,7 @@ switch ( $step ) {
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<p><?php _e( 'In all likelihood, these items were supplied to you by your web host. If you don’t have this information, then you will need to contact them before you can continue. If you’re all ready…' ); ?></p>
|
||||
<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…' ); ?></p>
|
||||
|
||||
<p class="step"><a href="<?php echo $step_1; ?>" class="button button-large"><?php _e( 'Let’s go!' ); ?></a></p>
|
||||
<?php
|
||||
@@ -208,7 +208,7 @@ switch ( $step ) {
|
||||
?>
|
||||
<h1 class="screen-reader-text"><?php _e( 'Set up your database connection' ); ?></h1>
|
||||
<form method="post" action="setup-config.php?step=2">
|
||||
<p><?php _e( 'Below you should enter your database connection details. If you’re not sure about these, contact your host.' ); ?></p>
|
||||
<p><?php _e( 'Below you should enter your database connection details. If you are not sure about these, contact your host.' ); ?></p>
|
||||
<table class="form-table" role="presentation">
|
||||
<tr>
|
||||
<th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th>
|
||||
@@ -231,7 +231,7 @@ switch ( $step ) {
|
||||
<td id="dbhost-desc">
|
||||
<?php
|
||||
/* translators: %s: localhost */
|
||||
printf( __( 'You should be able to get this info from your web host, if %s doesn’t work.' ), '<code>localhost</code>' );
|
||||
printf( __( 'You should be able to get this info from your web host, if %s does not work.' ), '<code>localhost</code>' );
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user