aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Views/Users
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Views/Users')
-rwxr-xr-xh-source/Application/Views/Users/add.php16
-rw-r--r--h-source/Application/Views/Users/forgot.php10
2 files changed, 13 insertions, 13 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> &raquo; create account
+ <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> &raquo; <?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>
diff --git a/h-source/Application/Views/Users/forgot.php b/h-source/Application/Views/Users/forgot.php
index e97be47..ad9e046 100644
--- a/h-source/Application/Views/Users/forgot.php
+++ b/h-source/Application/Views/Users/forgot.php
@@ -23,11 +23,11 @@
<div id="left">
<div class="position_tree_box">
- <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> &raquo; request new password
+ <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> &raquo; <?php echo gtext("request new password");?>
</div>
<div class="new_account_title">
- Request new password
+ <?php echo gtext("request new password");?>
</div>
<?php echo $notice;?>
@@ -35,7 +35,7 @@
<form class='formClass' action='<?php echo $this->currPage."/$lang";?>' method='POST'>
<div class='formEntry'>
- <span class='entryLabel'>write your username:</span>
+ <span class='entryLabel'><?php echo gtext("write your username");?>:</span>
<input type="input" name="username" value="">
</div>
@@ -44,12 +44,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='forgotAction' value='send e-mail'>
+ <input id='insertAction' type='submit' name='forgotAction' value='<?php echo gtext("request new password");?>'>
</div>
</form>