diff --git a/src/wp-signup.php b/src/wp-signup.php index 352f9b8330..f0f14f539d 100644 --- a/src/wp-signup.php +++ b/src/wp-signup.php @@ -470,10 +470,13 @@ function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $ ?>
%2$s is your new site. Log in as “%4$s” using your existing password.' ), - esc_url( $home_url ), - untrailingslashit( $domain . $path ), + /* translators: 1: link to new site, 2: login URL, 3: username */ + __( '%1$s is your new site. Log in as “%3$s” using your existing password.' ), + sprintf( + '%s', + esc_url( $home_url ), + untrailingslashit( $domain . $path ) + ), esc_url( $login_url ), $user_name ); ?>