From b6808ac36fb6b84c8ece869e097a74c8d8b67222 Mon Sep 17 00:00:00 2001 From: donncha Date: Wed, 19 Jul 2006 16:21:05 +0000 Subject: Language strings (#8) git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@692 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-signup.php | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'wp-signup.php') diff --git a/wp-signup.php b/wp-signup.php index 1aedb82..bd978d2 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -47,13 +47,13 @@ function show_blog_form($blog_id = '', $blog_title = '', $errors = '') { print '.' . $current_site->domain . $current_site->path . '
'; } if ( !is_user_logged_in() ) { - print '(Your address will be '; + print '(' . __( 'Your address will be ' ); if( constant( "VHOST" ) == 'no' ) { - print $current_site->domain . $current_site->path . 'blogname'; + print $current_site->domain . $current_site->path . __( 'blogname' ); } else { - print 'domain.' . $current_site->domain . $current_site->path; + print __( 'domain.' ) . $current_site->domain . $current_site->path; } - print '. Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!) '; + print '.' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)' ) . ' '; } // Blog Title @@ -62,7 +62,7 @@ function show_blog_form($blog_id = '', $blog_title = '', $errors = '') { } else { print ''; } -?>Blog Title:get_error_message('blog_title') ) { ?>

'; ?> -Privacy: +
'; - print '(Must be at least 4 characters, letters and numbers only.) '; + print __('(Must be at least 4 characters, letters and numbers only.)') . ' '; // User Email if ( $errors->get_error_message('user_email') ) { @@ -111,13 +111,13 @@ function show_user_form($user_name = '', $user_email = '', $errors = '') { } else { print ''; } -?>Email Address:get_error_message('user_email') ) { ?>


(We’ll send your password to this address, so triple-check it.) +
' . __('(We’ll send your password to this address, so triple-check it.)') . ' '; if ( $errmsg = $errors->get_error_message('generic') ) @@ -139,12 +139,12 @@ function signup_another_blog($blog_id = '', $blog_title = '', $errors = '') { echo '

' . sprintf( __('Get another %s blog in seconds'), $current_site->site_name ) . '

'; if ( $errors->get_error_code() ) { - print "

There was a problem, please correct the form below and try again.

"; + print '

'.__('There was a problem, please correct the form below and try again.').'

'; } ?> -

Welcome back, display_name; ?>. By filling out the form below, you can add another blog to your account. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.

-

Here are the blogs you already have:

+Welcome back, %s. By filling out the form below, you can add another blog to your account. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.

"), $current_user->display_name) ?> +