Index: src/wp-admin/authorize-application.php
===================================================================
--- src/wp-admin/authorize-application.php	(revision 51730)
+++ src/wp-admin/authorize-application.php	(working copy)
@@ -162,14 +162,23 @@
 			$blogs       = get_blogs_of_user( $user->ID, true );
 			$blogs_count = count( $blogs );
 			if ( $blogs_count > 1 ) {
+				/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
+				$txt_singular = 'This will grant access to <a href="%1$s">the %2$s site';
+				$txt_plural   = 'This will grant access to <a href="%1$s">all %2$s sites';
+				if ( is_super_admin( $user_id ) ) {
+					$txt_singular .= ' on the network as you have Super Admin rights</a>.';
+					$txt_plural   .= ' on the network as you have Super Admin rights</a>.';
+				} else {
+					$txt_singular .= ' in this installation that you have permissions on</a>.';
+					$txt_plural   .= ' in this installation that you have permissions on</a>.';
+				}
 				?>
 				<p>
 					<?php
 					printf(
-						/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
 						_n(
-							'This will grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.',
-							'This will grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.',
+							$txt_singular,
+							$txt_plural,
 							$blogs_count
 						),
 						admin_url( 'my-sites.php' ),
Index: src/wp-admin/user-edit.php
===================================================================
--- src/wp-admin/user-edit.php	(revision 51730)
+++ src/wp-admin/user-edit.php	(working copy)
@@ -743,14 +743,23 @@
 				$blogs       = get_blogs_of_user( $user_id, true );
 				$blogs_count = count( $blogs );
 				if ( $blogs_count > 1 ) {
+					/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
+					$txt_singular = 'Application passwords grant access to <a href="%1$s">the %2$s site';
+					$txt_plural   = 'Application passwords grant access to <a href="%1$s">all %2$s sites';
+					if ( is_super_admin( $user_id ) ) {
+						$txt_singular .= ' on the network as you have Super Admin rights</a>.';
+						$txt_plural   .= ' on the network as you have Super Admin rights</a>.';
+					} else {
+						$txt_singular .= ' in this installation that you have permissions on</a>.';
+						$txt_plural   .= ' in this installation that you have permissions on</a>.';
+					}
 					?>
 					<p>
 						<?php
 						printf(
-							/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
 							_n(
-								'Application passwords grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.',
-								'Application passwords grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.',
+								$txt_singular,
+								$txt_plural,
 								$blogs_count
 							),
 							admin_url( 'my-sites.php' ),
