Index: sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/roles/views/edit-cross-locale-pte.php
===================================================================
--- sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/roles/views/edit-cross-locale-pte.php	(revision 5118)
+++ sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/roles/views/edit-cross-locale-pte.php	(working copy)
@@ -4,10 +4,14 @@
 	<?php echo $feedback_message; ?>
 
 	<p><?php
+		$user = get_user_by( 'id', $user_id );
 		printf(
-			/* translators: %s: username */
+			/* translators: %s: WP.org profile link */
 			__( 'You are currently editing the user %s.', 'rosetta' ),
-			'<em>' . $user->user_login . '</em>'
+			sprintf( '<a href="%1$s">%2$s</a>',
+				'https://profiles.wordpress.org/' . $user->user_nicename,
+				$user->user_login
+			)
 		);
 	?></p>
 
Index: sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/roles/views/edit-translation-editor.php
===================================================================
--- sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/roles/views/edit-translation-editor.php	(revision 5118)
+++ sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/roles/views/edit-translation-editor.php	(working copy)
@@ -6,10 +6,12 @@
 	<p><?php
 		$user = get_user_by( 'id', $user_id );
 		printf(
-			/* translators: 1: WP.org profile URL, 2: username */
-			__( 'You are currently editing the user <a href="%1$s">%2$s</a>.', 'rosetta' ),
-			'https://profiles.wordpress.org/' . $user->user_nicename,
-			'<em>' . $user->user_login . '</em>'
+			/* translators: %s: WP.org profile link */
+			__( 'You are currently editing the user %s.', 'rosetta' ),
+			sprintf( '<a href="%1$s">%2$s</a>',
+				'https://profiles.wordpress.org/' . $user->user_nicename,
+				$user->user_login
+			)
 		);
 	?></p>
 
