diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php
index 82b5013a08..3812bfbf86 100644
a
|
b
|
function wp_authenticate_username_password( $user, $username, $password ) { |
149 | 149 | if ( ! $user ) { |
150 | 150 | return new WP_Error( |
151 | 151 | 'invalid_username', |
152 | | __( '<strong>Error</strong>: Unknown username. Check again or try your email address.' ) |
| 152 | sprintf( |
| 153 | /* translators: %s: User name. */ |
| 154 | __( '<strong>Error</strong>: Unknown username. The username <strong>%s</strong> is not registered on this site. If you’re unsure of your username, you can attempt to login using your email address instead.' ), |
| 155 | $username |
| 156 | ) |
153 | 157 | ); |
154 | 158 | } |
155 | 159 | |