From d3df7a6a18e2cc414106cd261b326ab767d16d74 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 18 Oct 2017 17:35:55 +0000 Subject: [PATCH] I18N: Remove `` 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 --- src/wp-signup.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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 ); ?>