Make WordPress Core


Ignore:
Timestamp:
04/11/2022 11:40:38 AM (4 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-admin/setup-config.php

    r52978 r53131  
    159159        ?>
    160160<h1 class="screen-reader-text"><?php _e( 'Before getting started' ); ?></h1>
    161 <p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.' ); ?></p>
     161<p><?php _e( 'Welcome to WordPress. Before getting started, some information on the database is needed. You will need to know the following items before proceeding.' ); ?></p>
    162162<ol>
    163163    <li><?php _e( 'Database name' ); ?></li>
     
    171171        printf(
    172172            /* translators: %s: wp-config.php */
    173             __( 'We are going to use this information to create a %s file.' ),
     173            __( 'This information is being used to create a %s file.' ),
    174174            '<code>wp-config.php</code>'
    175175        );
     
    188188        printf(
    189189            /* translators: %s: Documentation URL. */
    190             __( 'Need more help? <a href="%s">We got it</a>.' ),
     190            __( 'Need more help? <a href="%s">Read the support article on wp-config.php</a>.' ),
    191191            __( 'https://wordpress.org/support/article/editing-wp-config-php/' )
    192192        );
Note: See TracChangeset for help on using the changeset viewer.