Text Changes: Remove self-reference ("we") in WordPress Admin.
This changes some admin-area, user-facing text, 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 Follow-up to [51979], [53131], [53132], [53148], [53156]. Props kebbet, costdev, SergeyBiryukov. Fixes #55758. See #46057. Built from https://develop.svn.wordpress.org/trunk@54200 git-svn-id: http://core.svn.wordpress.org/trunk@53759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c279ba3edb
commit
7b14bdbec0
|
@ -830,7 +830,7 @@ class WP_Automatic_Updater {
|
|||
}
|
||||
|
||||
if ( $critical_support ) {
|
||||
$body .= ' ' . __( "If you reach out to us, we'll also ensure you'll never have this problem again." );
|
||||
$body .= ' ' . __( "Reach out to WordPress Core developers to ensure you'll never have this problem again." );
|
||||
}
|
||||
|
||||
// If things are successful and we're now on the latest, mention plugins and themes if any are out of date.
|
||||
|
|
|
@ -167,7 +167,7 @@ class WP_Site_Health_Auto_Updates {
|
|||
if ( ! empty( $failed['critical'] ) ) {
|
||||
$description = __( 'A previous automatic background update ended with a critical failure, so updates are now disabled.' );
|
||||
$description .= ' ' . __( 'You would have received an email because of this.' );
|
||||
$description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, we'll clear this error for future update attempts." );
|
||||
$description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." );
|
||||
$description .= ' ' . sprintf(
|
||||
/* translators: %s: Code of error shown. */
|
||||
__( 'The error code was %s.' ),
|
||||
|
@ -184,7 +184,7 @@ class WP_Site_Health_Auto_Updates {
|
|||
$description .= ' ' . __( 'You would have received an email because of this.' );
|
||||
}
|
||||
|
||||
$description .= ' ' . __( "We'll try again with the next release." );
|
||||
$description .= ' ' . __( "Another attempt will be made with the next release." );
|
||||
$description .= ' ' . sprintf(
|
||||
/* translators: %s: Code of error shown. */
|
||||
__( 'The error code was %s.' ),
|
||||
|
|
|
@ -1168,7 +1168,7 @@ function update_core( $from, $to ) {
|
|||
if ( $files_not_writable ) {
|
||||
return new WP_Error(
|
||||
'files_not_writable',
|
||||
__( 'The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.' ),
|
||||
__( 'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.' ),
|
||||
implode( ', ', $error_data )
|
||||
);
|
||||
}
|
||||
|
@ -1204,7 +1204,7 @@ function update_core( $from, $to ) {
|
|||
$wp_filesystem->delete( $from, true );
|
||||
$result = new WP_Error(
|
||||
'copy_failed_for_version_file',
|
||||
__( 'The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.' ),
|
||||
__( 'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.' ),
|
||||
'wp-includes/version.php'
|
||||
);
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-54199';
|
||||
$wp_version = '6.1-alpha-54200';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
|
@ -87,7 +87,7 @@ if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
|
|||
// Die with an error message.
|
||||
$die = '<p>' . sprintf(
|
||||
/* translators: %s: wp-config.php */
|
||||
__( "There doesn't seem to be a %s file. I need this before we can get started." ),
|
||||
__( "There doesn't seem to be a %s file. It is needed before the installation can continue." ),
|
||||
'<code>wp-config.php</code>'
|
||||
) . '</p>';
|
||||
$die .= '<p>' . sprintf(
|
||||
|
|
Loading…
Reference in New Issue