Make WordPress Core

Changeset 54200

Timestamp:
09/19/2022 08:57:08 AM (23 months ago)
Author:
audrasjb
Message:

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.

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-automatic-updater.php

    r54133 r54200  
    831831
    832832        if ( $critical_support ) {
    833             $body .= ' ' . __( "If you reach out to us, we'll also ensure you'll never have this problem again." );
     833            $body .= ' ' . __( "o ensure you'll never have this problem again." );
    834834        }
    835835
  • trunk/src/wp-admin/includes/class-wp-site-health-auto-updates.php

    r54133 r54200  
    168168            $description  = __( 'A previous automatic background update ended with a critical failure, so updates are now disabled.' );
    169169            $description .= ' ' . __( 'You would have received an email because of this.' );
    170             $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." );
     170            $description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, for future update attempts." );
    171171            $description .= ' ' . sprintf(
    172172                /* translators: %s: Code of error shown. */
     
    185185        }
    186186
    187         $description .= ' ' . __( "We'll try again with the next release." );
     187        $description .= ' ' . __( " with the next release." );
    188188        $description .= ' ' . sprintf(
    189189            /* translators: %s: Code of error shown. */
  • trunk/src/wp-admin/includes/update-core.php

    r54143 r54200  
    11691169                return new WP_Error(
    11701170                    'files_not_writable',
    1171                     __( 'The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.' ),
     1171                    __( 'The update cannot be installed because unable to copy some files. This is usually due to inconsistent file permissions.' ),
    11721172                    implode( ', ', $error_data )
    11731173                );
     
    12051205            $result = new WP_Error(
    12061206                'copy_failed_for_version_file',
    1207                 __( 'The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.' ),
     1207                __( 'The update cannot be installed because unable to copy some files. This is usually due to inconsistent file permissions.' ),
    12081208                'wp-includes/version.php'
    12091209            );
  • trunk/src/wp-load.php

    r53148 r54200  
    8888    $die = '<p>' . sprintf(
    8989        /* translators: %s: wp-config.php */
    90         __( "There doesn't seem to be a %s file. I need this before we can get started." ),
     90        __( "There doesn't seem to be a %s file. I." ),
    9191        '<code>wp-config.php</code>'
    9292    ) . '</p>';
Note: See TracChangeset for help on using the changeset viewer.