summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-24 13:31:21 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-24 13:31:21 +0000
commitc794c54fc14d1a4af6101ace58f8e60da2dc7d98 (patch)
tree9ee48960cb4fb03f8f7852389544f1ce4298ff33
parentab2d6e7c5468870209730dc31af5d572222546ce (diff)
downloadwordpress-mu-c794c54fc14d1a4af6101ace58f8e60da2dc7d98.tar.gz
wordpress-mu-c794c54fc14d1a4af6101ace58f8e60da2dc7d98.tar.xz
wordpress-mu-c794c54fc14d1a4af6101ace58f8e60da2dc7d98.zip
Make string translatable (fixes #210)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@867 7be80a69-a1ef-0310-a953-fb0f7c49ff36
-rw-r--r--wp-signup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-signup.php b/wp-signup.php
index 9b232b0..1180d7a 100644
--- a/wp-signup.php
+++ b/wp-signup.php
@@ -220,7 +220,7 @@ function signup_user($user_name = '', $user_email = '', $errors = '') {
$errors = $filtered_results['errors'];
?>
<h2><?php printf( __('Get your own %s account in seconds'), $current_site->site_name ) ?></h2>
-<p>Fill out this one-step form and you'll be blogging seconds later!</p>
+<p><?php _e( "Fill out this one-step form and you'll be blogging seconds later!" ); ?></p>
<form name="setupform" id="setupform" method="post" action="wp-signup.php">
<input type="hidden" name="stage" value="validate-user-signup">
<?php do_action( "signup_hidden_fields" ); ?>