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:
parent
aa3e40c32c
commit
d3df7a6a18
@ -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 “%4$s” using your existing password.' ),
|
||||
/* 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 “%3$s” using your existing password.' ),
|
||||
sprintf(
|
||||
'<a href="%s">%s</a>',
|
||||
esc_url( $home_url ),
|
||||
untrailingslashit( $domain . $path ),
|
||||
untrailingslashit( $domain . $path )
|
||||
),
|
||||
esc_url( $login_url ),
|
||||
$user_name
|
||||
); ?>
|
||||
|
Loading…
Reference in New Issue
Block a user