summaryrefslogtreecommitdiffstats
path: root/templates/show_preference_admin.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_preference_admin.inc.php')
-rw-r--r--templates/show_preference_admin.inc.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/show_preference_admin.inc.php b/templates/show_preference_admin.inc.php
index 09848b5b..502c94f9 100644
--- a/templates/show_preference_admin.inc.php
+++ b/templates/show_preference_admin.inc.php
@@ -27,7 +27,7 @@
*/
?>
-<?php show_box_top(_('Preference Administration')); ?>
+<?php show_box_top(T_('Preference Administration')); ?>
<form method="post" action="<?php echo conf('web_path'); ?>/admin/preferences.php" enctype="multipart/form-data">
<table class="tabledata" cellpadding="0" cellspacing="0">
<colgroup>
@@ -35,32 +35,32 @@
<col id="col_level" />
</colgroup>
<tr class="th-top">
- <th class="cel_preference"><?php echo _('Preference'); ?></th>
- <th class="cel_level"><?php echo _('Level'); ?></th>
+ <th class="cel_preference"><?php echo T_('Preference'); ?></th>
+ <th class="cel_level"><?php echo T_('Level'); ?></th>
</tr>
<?php foreach ($preferences as $preference) {
unset($is_25,$is_5,$is_100);
?>
<tr class="<?php echo flip_class(); ?>">
- <td class="cel_preference"><?php echo scrub_out(_($preference['description'])); ?></td>
+ <td class="cel_preference"><?php echo scrub_out(T_($preference['description'])); ?></td>
<td class="cel_level">
<?php $level_name = "is_" . $preference['level']; ${$level_name} = 'selected="selected"'; ?>
<select name="prefs[<?php echo scrub_out($preference['name']); ?>]">
- <option value="5" <?php echo $is_5; ?>><?php echo _('Guest'); ?></option>
- <option value="25" <?php echo $is_25; ?>><?php echo _('User'); ?></option>
- <option value="100" <?php echo $is_100; ?>><?php echo _('Admin'); ?></option>
+ <option value="5" <?php echo $is_5; ?>><?php echo T_('Guest'); ?></option>
+ <option value="25" <?php echo $is_25; ?>><?php echo T_('User'); ?></option>
+ <option value="100" <?php echo $is_100; ?>><?php echo T_('Admin'); ?></option>
</select>
</td>
</tr>
<?php } ?>
<tr class="th-bottom">
- <th class="cel_preference"><?php echo _('Preference'); ?></th>
- <th class="cel_level"><?php echo _('Level'); ?></th>
+ <th class="cel_preference"><?php echo T_('Preference'); ?></th>
+ <th class="cel_level"><?php echo T_('Level'); ?></th>
</tr>
</table>
<div class="formValidation">
<input type="hidden" name="action" value="set_preferences" />
- <input type="submit" value="<?php echo _('Update'); ?>" />
+ <input type="submit" value="<?php echo T_('Update'); ?>" />
</div>
</form>
<?php show_box_bottom(); ?>