diff options
Diffstat (limited to 'h-source/Application/Views/Users/add.php')
-rwxr-xr-x | h-source/Application/Views/Users/add.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/h-source/Application/Views/Users/add.php b/h-source/Application/Views/Users/add.php index 10edcd1..3e8de61 100755 --- a/h-source/Application/Views/Users/add.php +++ b/h-source/Application/Views/Users/add.php @@ -23,11 +23,11 @@ <div id="left"> <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » create account + <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » <?php echo gtext("create new account");?> </div> <div class="new_account_title"> - Create new account + <?php echo gtext("create new account");?> </div> <?php echo $notice;?> @@ -35,22 +35,22 @@ <form class='formClass' action='<?php echo $this->baseUrl."/users/add/$lang";?>' method='POST'> <div class='formEntry'> - <span class='entryLabel'>choose the username (characters allowed: a-z A-Z 0-9):</span> + <span class='entryLabel'><?php echo gtext("choose the username");?> (<?php echo gtext("characters allowed");?>: a-z A-Z 0-9):</span> <?php echo Html_Form::input('username',$values['username']);?> </div> <div class='formEntry'> - <span class='entryLabel'>your e-mail address (necessary to confirm the registration):</span> + <span class='entryLabel'><?php echo gtext("your e-mail address");?> (<?php echo gtext("necessary to confirm the registration");?>):</span> <?php echo Html_Form::input('e_mail',$values['e_mail']);?> </div> <div class='formEntry'> - <span class='entryLabel'>choose the password (characters allowed: a-z A-Z 0-9 - _ !):</span> + <span class='entryLabel'><?php echo gtext("choose the password");?> (<?php echo gtext("characters allowed");?>: a-z A-Z 0-9 - _ !):</span> <?php echo Html_Form::password('password',$values['password']);?> </div> <div class='formEntry'> - <span class='entryLabel'>confirm your password:</span> + <span class='entryLabel'><?php echo gtext("confirm the password");?>:</span> <?php echo Html_Form::password('confirmation',$values['confirmation']);?> </div> @@ -59,12 +59,12 @@ </div> <div class='formEntry'> - <span class='entryLabel'>write the code above:</span> + <span class='entryLabel'><?php echo gtext("write the code above");?>:</span> <input type="input" name="captcha" value=""> </div> <div class='inputEntry'> - <input id='insertAction' type='submit' name='insertAction' value='create account'> + <input id='insertAction' type='submit' name='insertAction' value='<?php echo gtext("create new account");?>'> </div> </form> |