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:
@@ -1186,7 +1186,7 @@ class wpdb {
|
||||
|
||||
$message .= '<p>' . sprintf(
|
||||
/* translators: %s: Database name. */
|
||||
__( 'We were able to connect to the database server (which means your username and password is okay) but not able to select the %s database.' ),
|
||||
__( 'The database server could be connected to (which means your username and password is okay) but the %s database could not be selected.' ),
|
||||
'<code>' . htmlspecialchars( $db, ENT_QUOTES ) . '</code>'
|
||||
) . "</p>\n";
|
||||
|
||||
@@ -1802,7 +1802,7 @@ class wpdb {
|
||||
|
||||
$message .= '<p>' . sprintf(
|
||||
/* translators: 1: wp-config.php, 2: Database host. */
|
||||
__( 'This either means that the username and password information in your %1$s file is incorrect or we cannot contact the database server at %2$s. This could mean your host’s database server is down.' ),
|
||||
__( 'This either means that the username and password information in your %1$s file is incorrect or that contact with the database server at %2$s could not be established. This could mean your host’s database server is down.' ),
|
||||
'<code>wp-config.php</code>',
|
||||
'<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>'
|
||||
) . "</p>\n";
|
||||
@@ -1961,7 +1961,7 @@ class wpdb {
|
||||
|
||||
$message .= '<p>' . sprintf(
|
||||
/* translators: %s: Database host. */
|
||||
__( 'This means that we lost contact with the database server at %s. This could mean your host’s database server is down.' ),
|
||||
__( 'This means that the contact with the database server at %s was lost. This could mean your host’s database server is down.' ),
|
||||
'<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>'
|
||||
) . "</p>\n";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user