Index: src/wp-admin/_index.php
===================================================================
--- src/wp-admin/_index.php	(revision 51470)
+++ src/wp-admin/_index.php	(working copy)
@@ -29,6 +29,7 @@
 	wp_enqueue_script( 'jquery-touch-punch' );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Dashboard' );
 $parent_file = 'index.php';
 
Index: src/wp-admin/about.php
===================================================================
--- src/wp-admin/about.php	(revision 51470)
+++ src/wp-admin/about.php	(working copy)
@@ -9,6 +9,7 @@
 /** WordPress Administration Bootstrap */
 require_once __DIR__ . '/admin.php';
 
+// Used in the HTML title tag.
 /* translators: Page title of the About WordPress page in the admin. */
 $title = _x( 'About', 'page title' );
 
Index: src/wp-admin/admin.php
===================================================================
--- src/wp-admin/admin.php	(revision 51470)
+++ src/wp-admin/admin.php	(working copy)
@@ -334,9 +334,10 @@
 	 */
 	do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
 
+	// Used in the HTML title tag.
+	$title        = __( 'Import' );
 	$parent_file  = 'tools.php';
 	$submenu_file = 'import.php';
-	$title        = __( 'Import' );
 
 	if ( ! isset( $_GET['noheader'] ) ) {
 		require_once ABSPATH . 'wp-admin/admin-header.php';
Index: src/wp-admin/authorize-application.php
===================================================================
--- src/wp-admin/authorize-application.php	(revision 51470)
+++ src/wp-admin/authorize-application.php	(working copy)
@@ -62,6 +62,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title = __( 'Authorize Application' );
 
 $app_name    = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : '';
Index: src/wp-admin/comment.php
===================================================================
--- src/wp-admin/comment.php	(revision 51470)
+++ src/wp-admin/comment.php	(working copy)
@@ -53,6 +53,7 @@
 switch ( $action ) {
 
 	case 'editcomment':
+		// Used in the HTML title tag.
 		$title = __( 'Edit Comment' );
 
 		get_current_screen()->add_help_tab(
@@ -96,6 +97,7 @@
 	case 'approve':
 	case 'trash':
 	case 'spam':
+		// Used in the HTML title tag.
 		$title = __( 'Moderate Comment' );
 
 		if ( ! $comment ) {
Index: src/wp-admin/credits.php
===================================================================
--- src/wp-admin/credits.php	(revision 51470)
+++ src/wp-admin/credits.php	(working copy)
@@ -10,6 +10,7 @@
 require_once __DIR__ . '/admin.php';
 require_once __DIR__ . '/includes/credits.php';
 
+// Used in the HTML title tag.
 $title = __( 'Credits' );
 
 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
Index: src/wp-admin/edit-comments.php
===================================================================
--- src/wp-admin/edit-comments.php	(revision 51470)
+++ src/wp-admin/edit-comments.php	(working copy)
@@ -138,7 +138,9 @@
 if ( $post_id ) {
 	$comments_count      = wp_count_comments( $post_id );
 	$draft_or_post_title = wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '&hellip;' );
+
 	if ( $comments_count->moderated > 0 ) {
+		// Used in the HTML title tag.
 		$title = sprintf(
 			/* translators: 1: Comments count, 2: Post title. */
 			__( 'Comments (%1$s) on &#8220;%2$s&#8221;' ),
@@ -146,6 +148,7 @@
 			$draft_or_post_title
 		);
 	} else {
+		// Used in the HTML title tag.
 		$title = sprintf(
 			/* translators: %s: Post title. */
 			__( 'Comments on &#8220;%s&#8221;' ),
@@ -154,7 +157,9 @@
 	}
 } else {
 	$comments_count = wp_count_comments();
+
 	if ( $comments_count->moderated > 0 ) {
+		// Used in the HTML title tag.
 		$title = sprintf(
 			/* translators: %s: Comments count. */
 			__( 'Comments (%s)' ),
@@ -161,6 +166,7 @@
 			number_format_i18n( $comments_count->moderated )
 		);
 	} else {
+		// Used in the HTML title tag.
 		$title = __( 'Comments' );
 	}
 }
Index: src/wp-admin/edit.php
===================================================================
--- src/wp-admin/edit.php	(revision 51470)
+++ src/wp-admin/edit.php	(working copy)
@@ -232,6 +232,7 @@
 	wp_enqueue_style( 'wp-list-reusable-blocks' );
 }
 
+// Used in the HTML title tag.
 $title = $post_type_object->labels->name;
 
 if ( 'post' === $post_type ) {
Index: src/wp-admin/export.php
===================================================================
--- src/wp-admin/export.php	(revision 51470)
+++ src/wp-admin/export.php	(working copy)
@@ -15,6 +15,8 @@
 
 /** Load WordPress export API */
 require_once ABSPATH . 'wp-admin/includes/export.php';
+
+// Used in the HTML title tag.
 $title = __( 'Export' );
 
 /**
Index: src/wp-admin/freedoms.php
===================================================================
--- src/wp-admin/freedoms.php	(revision 51470)
+++ src/wp-admin/freedoms.php	(working copy)
@@ -15,6 +15,7 @@
 	exit;
 }
 
+// Used in the HTML title tag.
 $title = __( 'Freedoms' );
 
 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
Index: src/wp-admin/import.php
===================================================================
--- src/wp-admin/import.php	(revision 51470)
+++ src/wp-admin/import.php	(working copy)
@@ -15,6 +15,7 @@
 	wp_die( __( 'Sorry, you are not allowed to import content into this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title = __( 'Import' );
 
 get_current_screen()->add_help_tab(
Index: src/wp-admin/link-add.php
===================================================================
--- src/wp-admin/link-add.php	(revision 51470)
+++ src/wp-admin/link-add.php	(working copy)
@@ -13,6 +13,7 @@
 	wp_die( __( 'Sorry, you are not allowed to add links to this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add New Link' );
 $parent_file = 'link-manager.php';
 
Index: src/wp-admin/link-manager.php
===================================================================
--- src/wp-admin/link-manager.php	(revision 51470)
+++ src/wp-admin/link-manager.php	(working copy)
@@ -46,6 +46,7 @@
 
 $wp_list_table->prepare_items();
 
+// Used in the HTML title tag.
 $title       = __( 'Links' );
 $this_file   = 'link-manager.php';
 $parent_file = $this_file;
Index: src/wp-admin/link.php
===================================================================
--- src/wp-admin/link.php	(revision 51470)
+++ src/wp-admin/link.php	(working copy)
@@ -108,6 +108,7 @@
 
 		$parent_file  = 'link-manager.php';
 		$submenu_file = 'link-manager.php';
+		// Used in the HTML title tag.
 		$title        = __( 'Edit Link' );
 
 		$link_id = (int) $_GET['link_id'];
Index: src/wp-admin/media-new.php
===================================================================
--- src/wp-admin/media-new.php	(revision 51470)
+++ src/wp-admin/media-new.php	(working copy)
@@ -39,6 +39,7 @@
 	exit;
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Upload New Media' );
 $parent_file = 'upload.php';
 
Index: src/wp-admin/media.php
===================================================================
--- src/wp-admin/media.php	(revision 51470)
+++ src/wp-admin/media.php	(working copy)
@@ -45,6 +45,7 @@
 
 		// No break.
 	case 'edit':
+		// Used in the HTML title tag.
 		$title = __( 'Edit Media' );
 
 		if ( empty( $errors ) ) {
Index: src/wp-admin/ms-delete-site.php
===================================================================
--- src/wp-admin/ms-delete-site.php	(revision 51470)
+++ src/wp-admin/ms-delete-site.php	(working copy)
@@ -35,8 +35,10 @@
 $blog = get_site();
 $user = wp_get_current_user();
 
+// Used in the HTML title tag.
 $title       = __( 'Delete Site' );
 $parent_file = 'tools.php';
+
 require_once ABSPATH . 'wp-admin/admin-header.php';
 
 echo '<div class="wrap">';
Index: src/wp-admin/my-sites.php
===================================================================
--- src/wp-admin/my-sites.php	(revision 51470)
+++ src/wp-admin/my-sites.php	(working copy)
@@ -34,6 +34,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title       = __( 'My Sites' );
 $parent_file = 'index.php';
 
Index: src/wp-admin/network.php
===================================================================
--- src/wp-admin/network.php	(revision 51470)
+++ src/wp-admin/network.php	(working copy)
@@ -49,9 +49,11 @@
 }
 
 if ( is_network_admin() ) {
+	// Used in the HTML title tag.
 	$title       = __( 'Network Setup' );
 	$parent_file = 'settings.php';
 } else {
+	// Used in the HTML title tag.
 	$title       = __( 'Create a Network of WordPress Sites' );
 	$parent_file = 'tools.php';
 }
Index: src/wp-admin/network/index.php
===================================================================
--- src/wp-admin/network/index.php	(revision 51470)
+++ src/wp-admin/network/index.php	(working copy)
@@ -17,6 +17,7 @@
 	wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Dashboard' );
 $parent_file = 'index.php';
 
Index: src/wp-admin/network/settings.php
===================================================================
--- src/wp-admin/network/settings.php	(revision 51470)
+++ src/wp-admin/network/settings.php	(working copy)
@@ -17,6 +17,7 @@
 	wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Network Settings' );
 $parent_file = 'settings.php';
 
Index: src/wp-admin/network/site-info.php
===================================================================
--- src/wp-admin/network/site-info.php	(revision 51470)
+++ src/wp-admin/network/site-info.php	(working copy)
@@ -122,6 +122,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 /* translators: %s: Site title. */
 $title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
 
Index: src/wp-admin/network/site-new.php
===================================================================
--- src/wp-admin/network/site-new.php	(revision 51470)
+++ src/wp-admin/network/site-new.php	(working copy)
@@ -174,6 +174,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add New Site' );
 $parent_file = 'sites.php';
 
Index: src/wp-admin/network/site-settings.php
===================================================================
--- src/wp-admin/network/site-settings.php	(revision 51470)
+++ src/wp-admin/network/site-settings.php	(working copy)
@@ -79,6 +79,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 /* translators: %s: Site title. */
 $title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
 
Index: src/wp-admin/network/site-themes.php
===================================================================
--- src/wp-admin/network/site-themes.php	(revision 51470)
+++ src/wp-admin/network/site-themes.php	(working copy)
@@ -166,6 +166,7 @@
 add_thickbox();
 add_screen_option( 'per_page' );
 
+// Used in the HTML title tag.
 /* translators: %s: Site title. */
 $title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
 
Index: src/wp-admin/network/site-users.php
===================================================================
--- src/wp-admin/network/site-users.php	(revision 51470)
+++ src/wp-admin/network/site-users.php	(working copy)
@@ -195,6 +195,7 @@
 
 add_screen_option( 'per_page' );
 
+// Used in the HTML title tag.
 /* translators: %s: Site title. */
 $title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
 
Index: src/wp-admin/network/sites.php
===================================================================
--- src/wp-admin/network/sites.php	(revision 51470)
+++ src/wp-admin/network/sites.php	(working copy)
@@ -17,6 +17,7 @@
 $wp_list_table = _get_list_table( 'WP_MS_Sites_List_Table' );
 $pagenum       = $wp_list_table->get_pagenum();
 
+// Used in the HTML title tag.
 $title       = __( 'Sites' );
 $parent_file = 'sites.php';
 
Index: src/wp-admin/network/themes.php
===================================================================
--- src/wp-admin/network/themes.php	(revision 51470)
+++ src/wp-admin/network/themes.php	(working copy)
@@ -81,6 +81,7 @@
 				$themes = array();
 			}
 
+			// Used in the HTML title tag.
 			$title       = __( 'Update Themes' );
 			$parent_file = 'themes.php';
 
@@ -333,6 +334,7 @@
 	)
 );
 
+// Used in the HTML title tag.
 $title       = __( 'Themes' );
 $parent_file = 'themes.php';
 
Index: src/wp-admin/network/upgrade.php
===================================================================
--- src/wp-admin/network/upgrade.php	(revision 51470)
+++ src/wp-admin/network/upgrade.php	(working copy)
@@ -12,6 +12,7 @@
 
 require_once ABSPATH . WPINC . '/http.php';
 
+// Used in the HTML title tag.
 $title       = __( 'Upgrade Network' );
 $parent_file = 'upgrade.php';
 
Index: src/wp-admin/network/user-new.php
===================================================================
--- src/wp-admin/network/user-new.php	(revision 51470)
+++ src/wp-admin/network/user-new.php	(working copy)
@@ -98,6 +98,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add New User' );
 $parent_file = 'users.php';
 
Index: src/wp-admin/network/users.php
===================================================================
--- src/wp-admin/network/users.php	(revision 51470)
+++ src/wp-admin/network/users.php	(working copy)
@@ -29,12 +29,17 @@
 			$id = (int) $_GET['id'];
 			if ( $id > 1 ) {
 				$_POST['allusers'] = array( $id ); // confirm_delete_users() can only handle arrays.
+
+				// Used in the HTML title tag.
 				$title             = __( 'Users' );
 				$parent_file       = 'users.php';
+
 				require_once ABSPATH . 'wp-admin/admin-header.php';
+
 				echo '<div class="wrap">';
 				confirm_delete_users( $_POST['allusers'] );
 				echo '</div>';
+
 				require_once ABSPATH . 'wp-admin/admin-footer.php';
 			} else {
 				wp_redirect( network_admin_url( 'users.php' ) );
@@ -59,12 +64,17 @@
 								if ( ! current_user_can( 'delete_users' ) ) {
 									wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
 								}
+
+								// Used in the HTML title tag.
 								$title       = __( 'Users' );
 								$parent_file = 'users.php';
+
 								require_once ABSPATH . 'wp-admin/admin-header.php';
+
 								echo '<div class="wrap">';
 								confirm_delete_users( $_POST['allusers'] );
 								echo '</div>';
+
 								require_once ABSPATH . 'wp-admin/admin-footer.php';
 								exit;
 
@@ -206,6 +216,8 @@
 	wp_redirect( add_query_arg( 'paged', $total_pages ) );
 	exit;
 }
+
+// Used in the HTML title tag.
 $title       = __( 'Users' );
 $parent_file = 'users.php';
 
Index: src/wp-admin/options-discussion.php
===================================================================
--- src/wp-admin/options-discussion.php	(revision 51470)
+++ src/wp-admin/options-discussion.php	(working copy)
@@ -12,6 +12,7 @@
 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Discussion Settings' );
 $parent_file = 'options-general.php';
 
Index: src/wp-admin/options-general.php
===================================================================
--- src/wp-admin/options-general.php	(revision 51470)
+++ src/wp-admin/options-general.php	(working copy)
@@ -16,6 +16,7 @@
 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'General Settings' );
 $parent_file = 'options-general.php';
 /* translators: Date and time format for exact current time, mainly about timezones, see https://www.php.net/manual/datetime.format.php */
Index: src/wp-admin/options-media.php
===================================================================
--- src/wp-admin/options-media.php	(revision 51470)
+++ src/wp-admin/options-media.php	(working copy)
@@ -13,6 +13,7 @@
 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Media Settings' );
 $parent_file = 'options-general.php';
 
Index: src/wp-admin/options-permalink.php
===================================================================
--- src/wp-admin/options-permalink.php	(revision 51470)
+++ src/wp-admin/options-permalink.php	(working copy)
@@ -13,6 +13,7 @@
 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Permalink Settings' );
 $parent_file = 'options-general.php';
 
Index: src/wp-admin/options-reading.php
===================================================================
--- src/wp-admin/options-reading.php	(revision 51470)
+++ src/wp-admin/options-reading.php	(working copy)
@@ -13,6 +13,7 @@
 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Reading Settings' );
 $parent_file = 'options-general.php';
 
Index: src/wp-admin/options-writing.php
===================================================================
--- src/wp-admin/options-writing.php	(revision 51470)
+++ src/wp-admin/options-writing.php	(working copy)
@@ -13,6 +13,7 @@
 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Writing Settings' );
 $parent_file = 'options-general.php';
 
Index: src/wp-admin/options.php
===================================================================
--- src/wp-admin/options.php	(revision 51470)
+++ src/wp-admin/options.php	(working copy)
@@ -18,6 +18,7 @@
 /** WordPress Administration Bootstrap */
 require_once __DIR__ . '/admin.php';
 
+// Used in the HTML title tag.
 $title       = __( 'Settings' );
 $this_file   = 'options.php';
 $parent_file = 'options-general.php';
Index: src/wp-admin/plugin-editor.php
===================================================================
--- src/wp-admin/plugin-editor.php	(revision 51470)
+++ src/wp-admin/plugin-editor.php	(working copy)
@@ -18,6 +18,7 @@
 	wp_die( __( 'Sorry, you are not allowed to edit plugins for this site.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Edit Plugins' );
 $parent_file = 'plugins.php';
 
Index: src/wp-admin/plugin-install.php
===================================================================
--- src/wp-admin/plugin-install.php	(revision 51470)
+++ src/wp-admin/plugin-install.php	(working copy)
@@ -47,6 +47,7 @@
 	exit;
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add Plugins' );
 $parent_file = 'plugins.php';
 
Index: src/wp-admin/plugins.php
===================================================================
--- src/wp-admin/plugins.php	(revision 51470)
+++ src/wp-admin/plugins.php	(working copy)
@@ -153,6 +153,7 @@
 				$plugins = array();
 			}
 
+			// Used in the HTML title tag.
 			$title       = __( 'Update Plugins' );
 			$parent_file = 'plugins.php';
 
@@ -597,6 +598,7 @@
 	)
 );
 
+// Used in the HTML title tag.
 $title       = __( 'Plugins' );
 $parent_file = 'plugins.php';
 
Index: src/wp-admin/privacy.php
===================================================================
--- src/wp-admin/privacy.php	(revision 51470)
+++ src/wp-admin/privacy.php	(working copy)
@@ -9,6 +9,7 @@
 /** WordPress Administration Bootstrap */
 require_once __DIR__ . '/admin.php';
 
+// Used in the HTML title tag.
 $title = __( 'Privacy' );
 
 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
Index: src/wp-admin/revision.php
===================================================================
--- src/wp-admin/revision.php	(revision 51470)
+++ src/wp-admin/revision.php	(working copy)
@@ -108,6 +108,7 @@
 		/* translators: %s: Post title. */
 		$h1             = sprintf( __( 'Compare Revisions of &#8220;%s&#8221;' ), $post_title );
 		$return_to_post = '<a href="' . $post_edit_link . '">' . __( '&larr; Go to editor' ) . '</a>';
+		// Used in the HTML title tag.
 		$title          = __( 'Revisions' );
 
 		$redirect = false;
Index: src/wp-admin/theme-editor.php
===================================================================
--- src/wp-admin/theme-editor.php	(revision 51470)
+++ src/wp-admin/theme-editor.php	(working copy)
@@ -18,6 +18,7 @@
 	wp_die( '<p>' . __( 'Sorry, you are not allowed to edit templates for this site.' ) . '</p>' );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Edit Themes' );
 $parent_file = 'themes.php';
 
Index: src/wp-admin/theme-install.php
===================================================================
--- src/wp-admin/theme-install.php	(revision 51470)
+++ src/wp-admin/theme-install.php	(working copy)
@@ -21,6 +21,7 @@
 	exit;
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add Themes' );
 $parent_file = 'themes.php';
 
Index: src/wp-admin/themes.php
===================================================================
--- src/wp-admin/themes.php	(revision 51470)
+++ src/wp-admin/themes.php	(working copy)
@@ -123,6 +123,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Manage Themes' );
 $parent_file = 'themes.php';
 
Index: src/wp-admin/tools.php
===================================================================
--- src/wp-admin/tools.php	(revision 51470)
+++ src/wp-admin/tools.php	(working copy)
@@ -39,6 +39,7 @@
 /** WordPress Administration Bootstrap */
 require_once __DIR__ . '/admin.php';
 
+// Used in the HTML title tag.
 $title = __( 'Tools' );
 
 get_current_screen()->add_help_tab(
Index: src/wp-admin/update-core.php
===================================================================
--- src/wp-admin/update-core.php	(revision 51470)
+++ src/wp-admin/update-core.php	(working copy)
@@ -1136,6 +1136,7 @@
 	$url = 'update.php?action=update-selected&plugins=' . urlencode( implode( ',', $plugins ) );
 	$url = wp_nonce_url( $url, 'bulk-update-plugins' );
 
+	// Used in the HTML title tag.
 	$title = __( 'Update Plugins' );
 
 	require_once ABSPATH . 'wp-admin/admin-header.php';
@@ -1176,6 +1177,7 @@
 	$url = 'update.php?action=update-selected-themes&themes=' . urlencode( implode( ',', $themes ) );
 	$url = wp_nonce_url( $url, 'bulk-update-themes' );
 
+	// Used in the HTML title tag.
 	$title = __( 'Update Themes' );
 
 	require_once ABSPATH . 'wp-admin/admin-header.php';
Index: src/wp-admin/update.php
===================================================================
--- src/wp-admin/update.php	(revision 51470)
+++ src/wp-admin/update.php	(working copy)
@@ -59,6 +59,7 @@
 
 		check_admin_referer( 'upgrade-plugin_' . $plugin );
 
+		// Used in the HTML title tag.
 		$title        = __( 'Update Plugin' );
 		$parent_file  = 'plugins.php';
 		$submenu_file = 'plugins.php';
@@ -123,9 +124,11 @@
 			wp_die( $api );
 		}
 
+		// Used in the HTML title tag.
 		$title        = __( 'Plugin Installation' );
 		$parent_file  = 'plugins.php';
 		$submenu_file = 'plugin-install.php';
+
 		require_once ABSPATH . 'wp-admin/admin-header.php';
 
 		/* translators: %s: Plugin name and version. */
@@ -153,9 +156,11 @@
 
 		$file_upload = new File_Upload_Upgrader( 'pluginzip', 'package' );
 
+		// Used in the HTML title tag.
 		$title        = __( 'Upload Plugin' );
 		$parent_file  = 'plugins.php';
 		$submenu_file = 'plugin-install.php';
+
 		require_once ABSPATH . 'wp-admin/admin-header.php';
 
 		/* translators: %s: File name. */
@@ -206,9 +211,11 @@
 
 		wp_enqueue_script( 'updates' );
 
+		// Used in the HTML title tag.
 		$title        = __( 'Update Theme' );
 		$parent_file  = 'themes.php';
 		$submenu_file = 'themes.php';
+
 		require_once ABSPATH . 'wp-admin/admin-header.php';
 
 		$nonce = 'upgrade-theme_' . $theme;
@@ -269,9 +276,11 @@
 			wp_die( $api );
 		}
 
+		// Used in the HTML title tag.
 		$title        = __( 'Install Themes' );
 		$parent_file  = 'themes.php';
 		$submenu_file = 'themes.php';
+
 		require_once ABSPATH . 'wp-admin/admin-header.php';
 
 		/* translators: %s: Theme name and version. */
@@ -295,6 +304,7 @@
 
 		$file_upload = new File_Upload_Upgrader( 'themezip', 'package' );
 
+		// Used in the HTML title tag.
 		$title        = __( 'Upload Theme' );
 		$parent_file  = 'themes.php';
 		$submenu_file = 'theme-install.php';
Index: src/wp-admin/upload.php
===================================================================
--- src/wp-admin/upload.php	(revision 51470)
+++ src/wp-admin/upload.php	(working copy)
@@ -76,6 +76,7 @@
 		'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
 	);
 
+	// Used in the HTML title tag.
 	$title       = __( 'Media Library' );
 	$parent_file = 'upload.php';
 
@@ -215,6 +216,7 @@
 
 $wp_list_table->prepare_items();
 
+// Used in the HTML title tag.
 $title       = __( 'Media Library' );
 $parent_file = 'upload.php';
 
Index: src/wp-admin/user-edit.php
===================================================================
--- src/wp-admin/user-edit.php	(revision 51470)
+++ src/wp-admin/user-edit.php	(working copy)
@@ -32,8 +32,10 @@
 }
 
 if ( IS_PROFILE_PAGE ) {
+	// Used in the HTML title tag.
 	$title = __( 'Profile' );
 } else {
+	// Used in the HTML title tag.
 	/* translators: %s: User's display name. */
 	$title = __( 'Edit User %s' );
 }
Index: src/wp-admin/user-new.php
===================================================================
--- src/wp-admin/user-new.php	(revision 51470)
+++ src/wp-admin/user-new.php	(working copy)
@@ -245,6 +245,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add New User' );
 $parent_file = 'users.php';
 
Index: src/wp-admin/users.php
===================================================================
--- src/wp-admin/users.php	(revision 51470)
+++ src/wp-admin/users.php	(working copy)
@@ -20,9 +20,11 @@
 
 $wp_list_table = _get_list_table( 'WP_Users_List_Table' );
 $pagenum       = $wp_list_table->get_pagenum();
-$title         = __( 'Users' );
-$parent_file   = 'users.php';
 
+// Used in the HTML title tag.
+$title       = __( 'Users' );
+$parent_file = 'users.php';
+
 add_screen_option( 'per_page' );
 
 // Contextual help - choose Help on the top right of admin panel to preview this.
Index: src/wp-admin/widgets.php
===================================================================
--- src/wp-admin/widgets.php	(revision 51470)
+++ src/wp-admin/widgets.php	(working copy)
@@ -24,6 +24,7 @@
 	wp_die( __( 'The theme you are currently using isn&#8217;t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://developer.wordpress.org/themes/functionality/widgets/">follow these instructions</a>.' ) );
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Widgets' );
 $parent_file = 'themes.php';
 
