Make WordPress Core


Ignore:
Timestamp:
04/11/2022 11:40:38 AM (3 years ago)
Author:
audrasjb
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/wp-db.php

    r52978 r53131  
    11871187                $message .= '<p>' . sprintf(
    11881188                    /* translators: %s: Database name. */
    1189                     __( '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.' ),
     1189                    __( 'The database server could be connected to (which means your username and password is okay) but the %s database could not be selected.' ),
    11901190                    '<code>' . htmlspecialchars( $db, ENT_QUOTES ) . '</code>'
    11911191                ) . "</p>\n";
     
    18031803            $message .= '<p>' . sprintf(
    18041804                /* translators: 1: wp-config.php, 2: Database host. */
    1805                 __( '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&#8217;s database server is down.' ),
     1805                __( '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&#8217;s database server is down.' ),
    18061806                '<code>wp-config.php</code>',
    18071807                '<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>'
     
    19621962        $message .= '<p>' . sprintf(
    19631963            /* translators: %s: Database host. */
    1964             __( 'This means that we lost contact with the database server at %s. This could mean your host&#8217;s database server is down.' ),
     1964            __( 'This means that the contact with the database server at %s was lost. This could mean your host&#8217;s database server is down.' ),
    19651965            '<code>' . htmlspecialchars( $this->dbhost, ENT_QUOTES ) . '</code>'
    19661966        ) . "</p>\n";
Note: See TracChangeset for help on using the changeset viewer.