mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Administration: Remove self-reference ("we") in WordPress Admin.
This changes updates many strings to remove self-references to an undefined "we" collective across the WordPress Administration. The goal of this change is to better match the guidelines and recommendations set forth in the make/core handbook, specifically: > the word "we" should be avoided (…) unless its made very clear which group is speaking. Props johnbillion, shital-patel, audrasjb, marybaum, SergeyBiryukov, peterwilsoncc, johnjamesjacoby, kebbet, costdev, chaion07, davidbaumwald. Fixes #46057. git-svn-id: https://develop.svn.wordpress.org/trunk@53131 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -158,7 +158,7 @@ switch ( $step ) {
|
||||
}
|
||||
?>
|
||||
<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, some information on the database is needed. You will need to know the following items before proceeding.' ); ?></p>
|
||||
<ol>
|
||||
<li><?php _e( 'Database name' ); ?></li>
|
||||
<li><?php _e( 'Database username' ); ?></li>
|
||||
@@ -170,7 +170,7 @@ switch ( $step ) {
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: wp-config.php */
|
||||
__( 'We are 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>'
|
||||
);
|
||||
?>
|
||||
@@ -187,7 +187,7 @@ switch ( $step ) {
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Documentation URL. */
|
||||
__( 'Need more help? <a href="%s">We got it</a>.' ),
|
||||
__( 'Need more help? <a href="%s">Read the support article on wp-config.php</a>.' ),
|
||||
__( 'https://wordpress.org/support/article/editing-wp-config-php/' )
|
||||
);
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user