I18N: Remove `<a>` tag from a translatable string in `confirm_another_blog_signup()`.

Props ramiy.
Fixes #41694.

git-svn-id: https://develop.svn.wordpress.org/trunk@41911 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2017-10-18 17:35:55 +00:00
parent aa3e40c32c
commit d3df7a6a18
1 changed files with 7 additions and 4 deletions

View File

@ -470,10 +470,13 @@ function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $
?></h2>
<p>
<?php printf(
/* translators: 1: home URL, 2: site address, 3: login URL, 4: username */
__( '<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Log in</a> as &#8220;%4$s&#8221; 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. <a href="%2$s">Log in</a> as &#8220;%3$s&#8221; using your existing password.' ),
sprintf(
'<a href="%s">%s</a>',
esc_url( $home_url ),
untrailingslashit( $domain . $path )
),
esc_url( $login_url ),
$user_name
); ?>