Make WordPress Core

Changeset 26368


Ignore:
Timestamp:
11/25/2013 02:04:18 AM (11 years ago)
Author:
markjaquith
Message:

Remove unnecessarily gendered pronouns.

fixes #26225

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/my-sites.php

    r26284 r26368  
    4040    'title'   => __('Overview'),
    4141    'content' =>
    42         '<p>' . __('This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. He or she can use the links under each site to visit either the frontend or the dashboard for that site.') . '</p>' .
     42        '<p>' . __('This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the frontend or the dashboard for that site.') . '</p>' .
    4343        '<p>' . __('Up until WordPress version 3.0, what is now called a Multisite Network had to be installed separately as WordPress MU (multi-user).') . '</p>'
    4444) );
  • trunk/src/wp-admin/network/users.php

    r25994 r26368  
    234234    'content' =>
    235235        '<p>' . __('This table shows all users across the network and the sites to which they are assigned.') . '</p>' .
    236         '<p>' . __('Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to his or her Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.') . '</p>' .
     236        '<p>' . __('Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.') . '</p>' .
    237237        '<p>' . __('You can also go to the user&#8217;s profile page by clicking on the individual username.') . '</p>' .
    238238        '<p>' . __('You can sort the table by clicking on any of the bold headings and switch between list and excerpt views by using the icons in the upper right.') . '</p>' .
  • trunk/src/wp-admin/user-edit.php

    r26253 r26368  
    121121        $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST[ 'email' ], $user_login ) );
    122122
    123     // WPMU must delete the user from the current blog if WP added him after editing.
     123    // We must delete the user from the current blog if WP added them after editing.
    124124    $delete_role = false;
    125125    $blog_prefix = $wpdb->get_blog_prefix();
  • trunk/src/wp-includes/ms-functions.php

    r26252 r26368  
    5252 * Get one of a user's active blogs
    5353 *
    54  * Returns the user's primary blog, if she has one and
     54 * Returns the user's primary blog, if they have one and
    5555 * it is active. If it's inactive, function returns another
    5656 * active blog of the user. If none are found, the user
     
    11881188
    11891189/**
    1190  * Notify a user that her blog activation has been successful.
     1190 * Notify a user that their blog activation has been successful.
    11911191 *
    11921192 * Filter 'wpmu_welcome_notification' to disable or bypass.
     
    12541254
    12551255/**
    1256  * Notify a user that her account activation has been successful.
     1256 * Notify a user that their account activation has been successful.
    12571257 *
    12581258 * Filter 'wpmu_welcome_user_notification' to disable or bypass.
Note: See TracChangeset for help on using the changeset viewer.