From ae4f4ba40df6fc1bb981473b294b91c274fd629c Mon Sep 17 00:00:00 2001
From: Florian TIAR <contact@tiar-florian.fr>
Date: Mon, 26 Sep 2016 16:35:29 +0200
Subject: [PATCH 1/4] Update wording : Super admin => Network admin

---
 wp-admin/includes/class-wp-ms-users-list-table.php | 4 ++--
 wp-admin/network/settings.php                      | 4 ++--
 wp-admin/network/site-new.php                      | 2 +-
 wp-admin/network/users.php                         | 2 +-
 wp-admin/user-edit.php                             | 8 ++++----
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/wp-admin/includes/class-wp-ms-users-list-table.php b/wp-admin/includes/class-wp-ms-users-list-table.php
index da00131..8a97f38 100644
--- a/wp-admin/includes/class-wp-ms-users-list-table.php
+++ b/wp-admin/includes/class-wp-ms-users-list-table.php
@@ -139,7 +139,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
 		$role_links = array();
 		$role_links['all'] = "<a href='" . network_admin_url('users.php') . "'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_users, 'users' ), number_format_i18n( $total_users ) ) . '</a>';
 		$class = $role === 'super' ? ' class="current"' : '';
-		$role_links['super'] = "<a href='" . network_admin_url('users.php?role=super') . "'$class>" . sprintf( _n( 'Super Admin <span class="count">(%s)</span>', 'Super Admins <span class="count">(%s)</span>', $total_admins ), number_format_i18n( $total_admins ) ) . '</a>';
+		$role_links['super'] = "<a href='" . network_admin_url('users.php?role=super') . "'$class>" . sprintf( _n( 'Network Administrator <span class="count">(%s)</span>', 'Network Administrators <span class="count">(%s)</span>', $total_admins ), number_format_i18n( $total_admins ) ) . '</a>';
 
 		return $role_links;
 	}
@@ -242,7 +242,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
 
 		?><strong><a href="<?php echo $edit_link; ?>" class="edit"><?php echo $user->user_login; ?></a><?php
 		if ( in_array( $user->user_login, $super_admins ) ) {
-			echo ' - ' . __( 'Super Admin' );
+			echo ' - ' . __( 'Network Administrator' );
 		}
 		?></strong>
 	<?php
diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php
index d1af88b..09107ec 100644
--- a/wp-admin/network/settings.php
+++ b/wp-admin/network/settings.php
@@ -34,8 +34,8 @@ get_current_screen()->add_help_tab( array(
 			'<p>' . __('New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what&#8127;s put in the first post, page, comment, comment author, and comment URL.') . '</p>' .
 			'<p>' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '</p>' .
 			'<p>' . __( 'You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable).' ) . '</p>' .
-			'<p>' . __('Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.') . '</p>' .
-			'<p>' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '</p>'
+			'<p>' . __('Menu setting enables/disables the plugin menus from appearing for non network admins, so that only network admins, not site admins, have access to activate plugins.') . '</p>' .
+			'<p>' . __('Network admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant network admin privileges.') . '</p>'
 ) );
 
 get_current_screen()->set_help_sidebar(
diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php
index 7882d0e..86d216e 100644
--- a/wp-admin/network/site-new.php
+++ b/wp-admin/network/site-new.php
@@ -23,7 +23,7 @@ get_current_screen()->add_help_tab( array(
 	'id'      => 'overview',
 	'title'   => __('Overview'),
 	'content' =>
-		'<p>' . __('This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.') . '</p>' .
+		'<p>' . __('This screen is for Network Administrators to add new sites to the network. This is not affected by the registration settings.') . '</p>' .
 		'<p>' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '</p>'
 ) );
 
diff --git a/wp-admin/network/users.php b/wp-admin/network/users.php
index 437f765..baff8f2 100644
--- a/wp-admin/network/users.php
+++ b/wp-admin/network/users.php
@@ -185,7 +185,7 @@ get_current_screen()->add_help_tab( array(
 		'<p>' . __('You can also go to the user&#8217;s profile page by clicking on the individual username.') . '</p>' .
 		'<p>' . __( 'You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.' ) . '</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>' .
-		'<p>' . __('You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.') . '</p>'
+		'<p>' . __('You can make an existing user an additional network administrator by going to the Edit User profile page and checking the box to grant that privilege.') . '</p>'
 ) );
 
 get_current_screen()->set_help_sidebar(
diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php
index bb3c62e..64ee8f4 100644
--- a/wp-admin/user-edit.php
+++ b/wp-admin/user-edit.php
@@ -171,7 +171,7 @@ include(ABSPATH . 'wp-admin/admin-header.php');
 ?>
 
 <?php if ( !IS_PROFILE_PAGE && is_super_admin( $profileuser->ID ) && current_user_can( 'manage_network_options' ) ) { ?>
-	<div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has super admin privileges.'); ?></p></div>
+	<div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has network admin privileges.'); ?></p></div>
 <?php } ?>
 <?php if ( isset($_GET['updated']) ) : ?>
 <div id="message" class="updated notice is-dismissible">
@@ -325,12 +325,12 @@ else
 <?php endif; //!IS_PROFILE_PAGE
 
 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) ) { ?>
-<tr class="user-super-admin-wrap"><th><?php _e('Super Admin'); ?></th>
+<tr class="user-super-admin-wrap"><th><?php _e('Network Administrator'); ?></th>
 <td>
 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?>
-<p><label><input type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( $profileuser->ID ) ); ?> /> <?php _e( 'Grant this user super admin privileges for the Network.' ); ?></label></p>
+<p><label><input type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( $profileuser->ID ) ); ?> /> <?php _e( 'Grant this user network admin privileges for the Network.' ); ?></label></p>
 <?php else : ?>
-<p><?php _e( 'Super admin privileges cannot be removed because this user has the network admin email.' ); ?></p>
+<p><?php _e( 'Network admin privileges cannot be removed because this user has the network admin email.' ); ?></p>
 <?php endif; ?>
 </td></tr>
 <?php } ?>
-- 
1.9.5.github.0


From 3245b4a29375ffee230f58ef4403b1d20b541618 Mon Sep 17 00:00:00 2001
From: Florian TIAR <contact@tiar-florian.fr>
Date: Tue, 27 Sep 2016 13:50:19 +0200
Subject: [PATCH 2/4] Add consistency in naming Network Administrator role

---
 wp-admin/network/settings.php | 4 ++--
 wp-admin/user-edit.php        | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php
index 09107ec..c7581d0 100644
--- a/wp-admin/network/settings.php
+++ b/wp-admin/network/settings.php
@@ -34,8 +34,8 @@ get_current_screen()->add_help_tab( array(
 			'<p>' . __('New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what&#8127;s put in the first post, page, comment, comment author, and comment URL.') . '</p>' .
 			'<p>' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '</p>' .
 			'<p>' . __( 'You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable).' ) . '</p>' .
-			'<p>' . __('Menu setting enables/disables the plugin menus from appearing for non network admins, so that only network admins, not site admins, have access to activate plugins.') . '</p>' .
-			'<p>' . __('Network admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant network admin privileges.') . '</p>'
+			'<p>' . __('Menu setting enables/disables the plugin menus from appearing for non network administrators, so that only network administrators, not site administrators, have access to activate plugins.') . '</p>' .
+			'<p>' . __('Network administrators can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant network admin privileges.') . '</p>'
 ) );
 
 get_current_screen()->set_help_sidebar(
diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php
index 64ee8f4..a5a386d 100644
--- a/wp-admin/user-edit.php
+++ b/wp-admin/user-edit.php
@@ -171,7 +171,7 @@ include(ABSPATH . 'wp-admin/admin-header.php');
 ?>
 
 <?php if ( !IS_PROFILE_PAGE && is_super_admin( $profileuser->ID ) && current_user_can( 'manage_network_options' ) ) { ?>
-	<div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has network admin privileges.'); ?></p></div>
+	<div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has network administrator privileges.'); ?></p></div>
 <?php } ?>
 <?php if ( isset($_GET['updated']) ) : ?>
 <div id="message" class="updated notice is-dismissible">
@@ -328,9 +328,9 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c
 <tr class="user-super-admin-wrap"><th><?php _e('Network Administrator'); ?></th>
 <td>
 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?>
-<p><label><input type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( $profileuser->ID ) ); ?> /> <?php _e( 'Grant this user network admin privileges for the Network.' ); ?></label></p>
+<p><label><input type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( $profileuser->ID ) ); ?> /> <?php _e( 'Grant this user network administrator privileges for the Network.' ); ?></label></p>
 <?php else : ?>
-<p><?php _e( 'Network admin privileges cannot be removed because this user has the network admin email.' ); ?></p>
+<p><?php _e( 'Network administrator privileges cannot be removed because this user has the network administrator email.' ); ?></p>
 <?php endif; ?>
 </td></tr>
 <?php } ?>
-- 
1.9.5.github.0


From eedcdd7c7d92f1b07902217fe38fe91f2304f2bc Mon Sep 17 00:00:00 2001
From: Florian TIAR <contact@tiar-florian.fr>
Date: Tue, 27 Sep 2016 14:14:38 +0200
Subject: [PATCH 3/4] Fix wording

---
 wp-admin/network/settings.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php
index c7581d0..fb3d00c 100644
--- a/wp-admin/network/settings.php
+++ b/wp-admin/network/settings.php
@@ -35,7 +35,7 @@ get_current_screen()->add_help_tab( array(
 			'<p>' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '</p>' .
 			'<p>' . __( 'You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable).' ) . '</p>' .
 			'<p>' . __('Menu setting enables/disables the plugin menus from appearing for non network administrators, so that only network administrators, not site administrators, have access to activate plugins.') . '</p>' .
-			'<p>' . __('Network administrators can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant network admin privileges.') . '</p>'
+			'<p>' . __('Network administrators can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant network administrator privileges.') . '</p>'
 ) );
 
 get_current_screen()->set_help_sidebar(
@@ -157,7 +157,7 @@ if ( isset( $_GET['updated'] ) ) {
 					update_site_option( 'registrationnotification', 'yes' );
 				?>
 				<td>
-					<label><input name="registrationnotification" type="checkbox" id="registrationnotification" value="yes"<?php checked( get_site_option( 'registrationnotification' ), 'yes' ) ?> /> <?php _e( 'Send the network admin an email notification every time someone registers a site or user account.' ) ?></label>
+					<label><input name="registrationnotification" type="checkbox" id="registrationnotification" value="yes"<?php checked( get_site_option( 'registrationnotification' ), 'yes' ) ?> /> <?php _e( 'Send the network administrator an email notification every time someone registers a site or user account.' ) ?></label>
 				</td>
 			</tr>
 
-- 
1.9.5.github.0


From eb9ecfbe96e0859ea3b1994d1d7d301d430f7a29 Mon Sep 17 00:00:00 2001
From: Florian TIAR <contact@tiar-florian.fr>
Date: Tue, 27 Sep 2016 14:25:22 +0200
Subject: [PATCH 4/4] Keep consistency on role named Network administrator

---
 wp-admin/includes/network.php      | 2 +-
 wp-admin/network/settings.php      | 2 +-
 wp-admin/network/site-info.php     | 2 +-
 wp-admin/network/site-settings.php | 2 +-
 wp-admin/network/site-themes.php   | 2 +-
 wp-admin/network/site-users.php    | 2 +-
 wp-admin/network/themes.php        | 4 ++--
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php
index fef6b66..32b3231 100644
--- a/wp-admin/includes/network.php
+++ b/wp-admin/includes/network.php
@@ -310,7 +310,7 @@ function network_step1( $errors = false ) {
 				</td>
 			</tr>
 			<tr>
-				<th scope='row'><?php esc_html_e( 'Network Admin Email' ); ?></th>
+				<th scope='row'><?php esc_html_e( 'Network Administrator Email' ); ?></th>
 				<td>
 					<input name='email' type='text' size='45' value='<?php echo esc_attr( $admin_email ); ?>' />
 					<p class="description">
diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php
index fb3d00c..15e7c4a 100644
--- a/wp-admin/network/settings.php
+++ b/wp-admin/network/settings.php
@@ -112,7 +112,7 @@ if ( isset( $_GET['updated'] ) ) {
 			</tr>
 
 			<tr>
-				<th scope="row"><label for="admin_email"><?php _e( 'Network Admin Email' ) ?></label></th>
+				<th scope="row"><label for="admin_email"><?php _e( 'Network Administrator Email' ) ?></label></th>
 				<td>
 					<input name="admin_email" type="email" id="admin_email" aria-describedby="admin-email-desc" class="regular-text" value="<?php echo esc_attr( get_site_option( 'admin_email' ) ) ?>" />
 					<p class="description" id="admin-email-desc">
diff --git a/wp-admin/network/site-info.php b/wp-admin/network/site-info.php
index ecf425e..a8ac118 100644
--- a/wp-admin/network/site-info.php
+++ b/wp-admin/network/site-info.php
@@ -23,7 +23,7 @@ get_current_screen()->add_help_tab( array(
 	'title'   => __( 'Overview' ),
 	'content' =>
 		'<p>' . __( 'The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.' ) . '</p>' .
-		'<p>' . __( '<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.' ) . '</p>' .
+		'<p>' . __( '<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network administrators can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.' ) . '</p>' .
 		'<p>' . __( '<strong>Users</strong> &mdash; This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.' ) . '</p>' .
 		'<p>' . sprintf( __( '<strong>Themes</strong> &mdash; This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site&#8217;s Appearance menu. To enable a theme for the entire network, see the <a href="%s">Network Themes</a> screen.' ), network_admin_url( 'themes.php' ) ) . '</p>' .
 		'<p>' . __( '<strong>Settings</strong> &mdash; This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.' ) . '</p>'
diff --git a/wp-admin/network/site-settings.php b/wp-admin/network/site-settings.php
index 10a6402..26682a2 100644
--- a/wp-admin/network/site-settings.php
+++ b/wp-admin/network/site-settings.php
@@ -21,7 +21,7 @@ get_current_screen()->add_help_tab( array(
 	'title'   => __('Overview'),
 	'content' =>
 		'<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' .
-		'<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
+		'<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network administrators can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
 		'<p>' . __('<strong>Users</strong> &mdash; This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.') . '</p>' .
 		'<p>' . sprintf( __('<strong>Themes</strong> &mdash; This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site&#8217;s Appearance menu. To enable a theme for the entire network, see the <a href="%s">Network Themes</a> screen.' ), network_admin_url( 'themes.php' ) ) . '</p>' .
 		'<p>' . __('<strong>Settings</strong> &mdash; This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.') . '</p>'
diff --git a/wp-admin/network/site-themes.php b/wp-admin/network/site-themes.php
index 91355c3..0780a24 100644
--- a/wp-admin/network/site-themes.php
+++ b/wp-admin/network/site-themes.php
@@ -21,7 +21,7 @@ get_current_screen()->add_help_tab( array(
 	'title'   => __('Overview'),
 	'content' =>
 		'<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' .
-		'<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
+		'<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network administrators can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
 		'<p>' . __('<strong>Users</strong> &mdash; This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.') . '</p>' .
 		'<p>' . sprintf( __('<strong>Themes</strong> &mdash; This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site&#8217;s Appearance menu. To enable a theme for the entire network, see the <a href="%s">Network Themes</a> screen.' ), network_admin_url( 'themes.php' ) ) . '</p>' .
 		'<p>' . __('<strong>Settings</strong> &mdash; This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.') . '</p>'
diff --git a/wp-admin/network/site-users.php b/wp-admin/network/site-users.php
index 36ce31a..a821a1b 100644
--- a/wp-admin/network/site-users.php
+++ b/wp-admin/network/site-users.php
@@ -24,7 +24,7 @@ get_current_screen()->add_help_tab( array(
 	'title'   => __('Overview'),
 	'content' =>
 		'<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' .
-		'<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
+		'<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network administrators can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
 		'<p>' . __('<strong>Users</strong> &mdash; This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.') . '</p>' .
 		'<p>' . sprintf( __('<strong>Themes</strong> &mdash; This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site&#8217;s Appearance menu. To enable a theme for the entire network, see the <a href="%s">Network Themes</a> screen.' ), network_admin_url( 'themes.php' ) ) . '</p>' .
 		'<p>' . __('<strong>Settings</strong> &mdash; This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.') . '</p>'
diff --git a/wp-admin/network/themes.php b/wp-admin/network/themes.php
index 40530ba..4718301 100644
--- a/wp-admin/network/themes.php
+++ b/wp-admin/network/themes.php
@@ -234,8 +234,8 @@ get_current_screen()->add_help_tab( array(
 	'title'   => __('Overview'),
 	'content' =>
 		'<p>' . __('This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.') . '</p>' .
-		'<p>' . __('If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site&#8217;s Appearance > Themes screen.') . '</p>' .
-		'<p>' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.') . '</p>'
+		'<p>' . __('If the network administrator disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site&#8217;s Appearance > Themes screen.') . '</p>' .
+		'<p>' . __('Themes can be enabled on a site by site basis by the network administrator on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network administrators are able to install or edit themes.') . '</p>'
 ) );
 
 get_current_screen()->set_help_sidebar(
-- 
1.9.5.github.0

