Make WordPress Core


Ignore:
Timestamp:
11/02/2021 05:36:34 PM (5 years ago)
Author:
johnjamesjacoby
Message:

Admin/UI-Copy: reword some "we" usages.

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

(There are several more usages of "we" that will receive this same scrutiny in future commits/releases.)

Props audrasjb, johnbillion, marybaum, peterwilsoncc, sergeybiryukov, shital-patel.

Fixes #46057.

File:
1 edited

Legend:

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

    r50839 r51979  
    180180        ?>
    181181        <p><?php _e( 'Welcome to the Network installation process!' ); ?></p>
    182         <p><?php _e( 'Fill in the information below and you&#8217;ll be on your way to creating a network of WordPress sites. We will create configuration files in the next step.' ); ?></p>
     182        <p><?php _e( 'Fill in the information below and you&#8217;ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.' ); ?></p>
    183183        <?php
    184184
     
    272272                printf(
    273273                        /* translators: 1: Site URL, 2: Host name, 3: www. */
    274                         __( 'We recommend you change your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.' ),
     274                        __( 'You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.' ),
    275275                        '<code>' . substr( $hostname, 4 ) . '</code>',
    276276                        '<code>' . $hostname . '</code>',
     
    445445                        printf(
    446446                                /* translators: 1: wp-config.php, 2: .htaccess */
    447                                 __( 'We recommend you back up your existing %1$s and %2$s files.' ),
     447                                __( 'You should back up your existing %1$s and %2$s files.' ),
    448448                                '<code>wp-config.php</code>',
    449449                                '<code>.htaccess</code>'
     
    453453                        printf(
    454454                                /* translators: 1: wp-config.php, 2: web.config */
    455                                 __( 'We recommend you back up your existing %1$s and %2$s files.' ),
     455                                __( 'You should back up your existing %1$s and %2$s files.' ),
    456456                                '<code>wp-config.php</code>',
    457457                                '<code>web.config</code>'
     
    461461                        printf(
    462462                                /* translators: %s: wp-config.php */
    463                                 __( 'We recommend you back up your existing %s file.' ),
     463                                __( 'You should back up your existing %s file.' ),
    464464                                '<code>wp-config.php</code>'
    465465                        );
Note: See TracChangeset for help on using the changeset viewer.