Skip to content

Commit 4994c77

Browse files
I18N: Remove HTML tags from translatable strings in wp-activate.php.
Props ramiy. Fixes #41645. git-svn-id: https://develop.svn.wordpress.org/trunk@41579 602fd350-edb4-49c9-b593-d223f7449a82
1 parent de9ab62 commit 4994c77

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/wp-activate.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,9 @@ function wpmu_activate_stylesheet() {
108108
);
109109
} else {
110110
printf(
111-
/* translators: 1: site URL, 2: site domain, 3: username, 4: user email, 5: lost password URL */
112-
__( 'Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.' ),
113-
'http://' . $signup->domain,
114-
$signup->domain,
111+
/* translators: 1: site URL, 2: username, 3: user email, 4: lost password URL */
112+
__( 'Your site at %1$s is active. You may now log in to your site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ),
113+
sprintf( '<a href="http://%s">%s</a>', $signup->domain ),
115114
$signup->user_login,
116115
$signup->user_email,
117116
wp_lostpassword_url()

0 commit comments

Comments
 (0)