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:
Jb Audras
2022-04-11 11:40:38 +00:00
parent 677af9e20e
commit 60e372dd2e
30 changed files with 50 additions and 51 deletions

View File

@@ -6963,7 +6963,7 @@ class wp_xmlrpc_server extends IXR_Server {
preg_match( '|<title>([^<]*?)</title>|is', $remote_source, $matchtitle );
$title = isset( $matchtitle[1] ) ? $matchtitle[1] : '';
if ( empty( $title ) ) {
return $this->pingback_error( 32, __( 'We cannot find a title on that page.' ) );
return $this->pingback_error( 32, __( 'A title on that page can not be found.' ) );
}
// Remove all script and style tags including their content.