From 53dba84ec76989df9297a9a89099ed94eb8070fe Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 18 Oct 2017 17:36:50 +0000 Subject: [PATCH] I18N: Remove `` tag from a translatable string in `confirm_another_blog_signup()`. Props ramiy. Fixes #41694. Built from https://develop.svn.wordpress.org/trunk@41911 git-svn-id: http://core.svn.wordpress.org/trunk@41745 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-signup.php | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 6ae28b5172..fc9f86a754 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta2-41910'; +$wp_version = '4.9-beta2-41911'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-signup.php b/wp-signup.php index 352f9b8330..f0f14f539d 100644 --- a/wp-signup.php +++ b/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 ); ?>