--- a/wp/wp-admin/setup-config.php Wed Sep 21 18:19:35 2022 +0200
+++ b/wp/wp-admin/setup-config.php Tue Sep 27 16:37:53 2022 +0200
@@ -89,9 +89,6 @@
* @ignore
* @since 2.3.0
*
- * @global string $wp_local_package Locale code of the package.
- * @global WP_Locale $wp_locale WordPress date and time locale object.
- *
* @param string|string[] $body_classes Class attribute values for the body tag.
*/
function setup_config_display_header( $body_classes = array() ) {
@@ -161,7 +158,7 @@
}
?>
<h1 class="screen-reader-text"><?php _e( 'Before getting started' ); ?></h1>
-<p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.' ); ?></p>
+<p><?php _e( 'Welcome to WordPress. Before getting started, you will need to know the following items.' ); ?></p>
<ol>
<li><?php _e( 'Database name' ); ?></li>
<li><?php _e( 'Database username' ); ?></li>
@@ -173,7 +170,7 @@
<?php
printf(
/* translators: %s: wp-config.php */
- __( 'We’re going to use this information to create a %s file.' ),
+ __( 'This information is being used to create a %s file.' ),
'<code>wp-config.php</code>'
);
?>
@@ -181,7 +178,7 @@
<?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>'
);
@@ -189,13 +186,14 @@
</strong>
<?php
printf(
- /* translators: %s: Documentation URL. */
- __( 'Need more help? <a href="%s">We got it</a>.' ),
- __( 'https://wordpress.org/support/article/editing-wp-config-php/' )
+ /* translators: 1: Documentation URL, 2: wp-config.php */
+ __( 'Need more help? <a href="%1$s">Read the support article on %2$s</a>.' ),
+ __( 'https://wordpress.org/support/article/editing-wp-config-php/' ),
+ '<code>wp-config.php</code>'
);
?>
</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
@@ -211,7 +209,7 @@
?>
<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>
@@ -234,7 +232,7 @@
<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>