From 1e3b84960f1ff52ca67cd318723a3957bd889c7e Mon Sep 17 00:00:00 2001 From: nbachiyski Date: Mon, 19 Apr 2010 12:01:32 +0000 Subject: [PATCH] Take out opening and closing

tags from translation strings. Focus on the key input on page load. git-svn-id: http://svn.automattic.com/wordpress/trunk@14161 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-activate.php | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/wp-activate.php b/wp-activate.php index 3ba175daf..b9e770705 100644 --- a/wp-activate.php +++ b/wp-activate.php @@ -63,11 +63,13 @@ get_header(); ?>

domain . $signup->path == '' ) { - printf(__('

Your account has been activated. You may now login to the site using your chosen username of “%2$s”. 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 reset your password.

'), network_site_url('wp-login.php', 'login'), $signup->user_login, $signup->user_email, network_site_url('wp-login.php?action=lostpassword', 'login')); - } else { - printf(__('

Your site at %2$s is active. You may now log in to your site using your chosen username of “%3$s”. 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 reset your password.

'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, network_site_url('wp-login.php?action=lostpassword')); - } + echo '

'; + if ( $signup->domain . $signup->path == '' ) { + printf( __('Your account has been activated. You may now login to the site using your chosen username of “%2$s”. 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 reset your password.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword', 'login' ) ); + } else { + printf( __('Your site at %2$s is active. You may now log in to your site using your chosen username of “%3$s”. 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 reset your password.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword' ) ); + } + echo '

'; } else { ?>

@@ -87,13 +89,16 @@ get_header(); -

View your site or Login'), $url, $url . 'wp-login.php' ); ?>

+

View your site or Login'), $url, $url . 'wp-login.php' ); ?>

-

Login or go back to the homepage.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?>

+

Login or go back to the homepage.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?>

- - + + \ No newline at end of file