Remove unnecessarily gendered pronouns.
fixes #26225 Built from https://develop.svn.wordpress.org/trunk@26368 git-svn-id: http://core.svn.wordpress.org/trunk@26269 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c2cdbf9648
commit
22c6024f9e
|
@ -39,7 +39,7 @@ get_current_screen()->add_help_tab( array(
|
|||
'id' => 'overview',
|
||||
'title' => __('Overview'),
|
||||
'content' =>
|
||||
'<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>' .
|
||||
'<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>' .
|
||||
'<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>'
|
||||
) );
|
||||
|
||||
|
|
|
@ -233,7 +233,7 @@ get_current_screen()->add_help_tab( array(
|
|||
'title' => __('Overview'),
|
||||
'content' =>
|
||||
'<p>' . __('This table shows all users across the network and the sites to which they are assigned.') . '</p>' .
|
||||
'<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>' .
|
||||
'<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>' .
|
||||
'<p>' . __('You can also go to the user’s profile page by clicking on the individual username.') . '</p>' .
|
||||
'<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>' .
|
||||
'<p>' . __('The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.') . '</p>' .
|
||||
|
|
|
@ -120,7 +120,7 @@ if ( !is_multisite() ) {
|
|||
if ( $user->user_login && isset( $_POST[ 'email' ] ) && is_email( $_POST[ 'email' ] ) && $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $user->user_login ) ) )
|
||||
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST[ 'email' ], $user_login ) );
|
||||
|
||||
// WPMU must delete the user from the current blog if WP added him after editing.
|
||||
// We must delete the user from the current blog if WP added them after editing.
|
||||
$delete_role = false;
|
||||
$blog_prefix = $wpdb->get_blog_prefix();
|
||||
if ( $user_id != $current_user->ID ) {
|
||||
|
|
|
@ -51,7 +51,7 @@ function get_admin_users_for_domain( $sitedomain = '', $path = '' ) {
|
|||
/**
|
||||
* Get one of a user's active blogs
|
||||
*
|
||||
* Returns the user's primary blog, if she has one and
|
||||
* Returns the user's primary blog, if they have one and
|
||||
* it is active. If it's inactive, function returns another
|
||||
* active blog of the user. If none are found, the user
|
||||
* is added as a Subscriber to the Dashboard Blog and that blog
|
||||
|
@ -1187,7 +1187,7 @@ function install_blog_defaults($blog_id, $user_id) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Notify a user that her blog activation has been successful.
|
||||
* Notify a user that their blog activation has been successful.
|
||||
*
|
||||
* Filter 'wpmu_welcome_notification' to disable or bypass.
|
||||
*
|
||||
|
@ -1253,7 +1253,7 @@ We hope you enjoy your new site. Thanks!
|
|||
}
|
||||
|
||||
/**
|
||||
* Notify a user that her account activation has been successful.
|
||||
* Notify a user that their account activation has been successful.
|
||||
*
|
||||
* Filter 'wpmu_welcome_user_notification' to disable or bypass.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue