Make WordPress Core


Ignore:
Timestamp:
11/02/2021 05:36:34 PM (3 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/class-wp-site-health.php

    r51951 r51979  
    285285            $result['description'] = sprintf(
    286286                '<p>%s</p>',
    287                 __( 'We were unable to check if any new versions of WordPress are available.' )
     287                __( 'Unable to check if any new versions of WordPress are available.' )
    288288            );
    289289
     
    468468                    $unused_plugins
    469469                ),
    470                 __( 'Inactive plugins are tempting targets for attackers. If you&#8217;re not going to use a plugin, we recommend you remove it.' )
     470                __( 'Inactive plugins are tempting targets for attackers. If you&#8217;re not going to use a plugin, you should consider removing it.' )
    471471            );
    472472
     
    635635                        sprintf(
    636636                            /* translators: 1: The currently active theme. 2: The active theme's parent theme. */
    637                             __( 'To enhance your site&#8217;s security, we recommend you remove any themes you&#8217;re not using. You should keep your current theme, %1$s, and %2$s, its parent theme.' ),
     637                            __( 'To enhance your site&#8217;s security, you should consider removing any themes you&#8217;re not using. You should keep your current theme, %1$s, and %2$s, its parent theme.' ),
    638638                            $active_theme->name,
    639639                            $active_theme->parent()->name
     
    654654                        sprintf(
    655655                            /* translators: 1: The default theme for WordPress. 2: The currently active theme. 3: The active theme's parent theme. */
    656                             __( 'To enhance your site&#8217;s security, we recommend you remove any themes you&#8217;re not using. You should keep %1$s, the default WordPress theme, %2$s, your current theme, and %3$s, its parent theme.' ),
     656                            __( 'To enhance your site&#8217;s security, you should consider removing any themes you&#8217;re not using. You should keep %1$s, the default WordPress theme, %2$s, your current theme, and %3$s, its parent theme.' ),
    657657                            $default_theme ? $default_theme->name : WP_DEFAULT_THEME,
    658658                            $active_theme->name,
     
    680680                            $active_theme->name
    681681                        ),
    682                         __( 'We recommend removing any unused themes to enhance your site&#8217;s security.' )
     682                        __( 'You should consider removing any unused themes to enhance your site&#8217;s security.' )
    683683                    );
    684684                } else {
     
    696696                            $active_theme->name
    697697                        ),
    698                         __( 'We recommend removing any unused themes to enhance your site&#8217;s security.' )
     698                        __( 'You should consider removing any unused themes to enhance your site&#8217;s security.' )
    699699                    );
    700700                }
     
    12011201                sprintf(
    12021202                    /* translators: 1: The database engine in use (MySQL or MariaDB). 2: Database server recommended version number. */
    1203                     __( 'For optimal performance and security reasons, we recommend running %1$s version %2$s or higher. Contact your web hosting company to correct this.' ),
     1203                    __( 'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.' ),
    12041204                    ( $this->is_mariadb ? 'MariaDB' : 'MySQL' ),
    12051205                    $this->health_check_mysql_rec_version
Note: See TracChangeset for help on using the changeset viewer.