diff options
Diffstat (limited to 'templates/show_account.inc.php')
-rw-r--r-- | templates/show_account.inc.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/show_account.inc.php b/templates/show_account.inc.php index 1b4035f3..781860c5 100644 --- a/templates/show_account.inc.php +++ b/templates/show_account.inc.php @@ -32,32 +32,32 @@ <form method="post" name="preferences" action="<?php echo Config::get('web_path'); ?>/preferences.php?action=update_user" enctype="multipart/form-data"> <table class="tabledata"> <tr> - <td><?php echo _('Name'); ?>:</td> + <td><?php echo T_('Name'); ?>:</td> <td> <input type="text" name="fullname" size="27" value="<?php echo scrub_out($client->fullname); ?>" /> </td> </tr> <tr> - <td><?php echo _('E-mail'); ?>:</td> + <td><?php echo T_('E-mail'); ?>:</td> <td> <input type="text" name="email" size="27" value="<?php echo scrub_out($client->email); ?>" /> </td> </tr> <tr> - <td><?php echo _('New Password'); ?>:</td> + <td><?php echo T_('New Password'); ?>:</td> <td> <?php Error::display('password'); ?> <input type="password" name="password1" size="27" /> </td> </tr> <tr> - <td><?php echo _('Confirm Password'); ?>:</td> + <td><?php echo T_('Confirm Password'); ?>:</td> <td> <input type="password" name="password2" size="27" /> </td> </tr> <tr> - <td><?php echo _('Clear Stats'); ?>:</td> + <td><?php echo T_('Clear Stats'); ?>:</td> <td> <input type="checkbox" name="clear_stats" value="1" /> </td> @@ -67,5 +67,5 @@ <input type="hidden" name="user_id" value="<?php echo scrub_out($client->id); ?>" /> <?php echo Core::form_register('update_user'); ?> <input type="hidden" name="tab" value="<?php echo scrub_out($_REQUEST['tab']); ?>" /> - <input class="button" type="submit" value="<?php echo _('Update Account'); ?>" /> + <input class="button" type="submit" value="<?php echo T_('Update Account'); ?>" /> </div> |