summaryrefslogtreecommitdiffstats
path: root/templates/show_localplay_controllers.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_localplay_controllers.inc.php')
-rw-r--r--templates/show_localplay_controllers.inc.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/templates/show_localplay_controllers.inc.php b/templates/show_localplay_controllers.inc.php
index 8b3cda94..c6494266 100644
--- a/templates/show_localplay_controllers.inc.php
+++ b/templates/show_localplay_controllers.inc.php
@@ -37,10 +37,10 @@ $web_path = Config::get('web_path');
<col id="col_action" />
</colgroup>
<tr class="th-top">
- <th class="cel_name"><?php echo _('Name'); ?></th>
- <th class="cel_description"><?php echo _('Description'); ?></th>
- <th class="cel_version"><?php echo _('Version'); ?></th>
- <th class="cel_action"><?php echo _('Action'); ?></th>
+ <th class="cel_name"><?php echo T_('Name'); ?></th>
+ <th class="cel_description"><?php echo T_('Description'); ?></th>
+ <th class="cel_version"><?php echo T_('Version'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
<?php
foreach ($controllers as $controller) {
@@ -49,11 +49,11 @@ foreach ($controllers as $controller) {
$localplay->format();
if (Localplay::is_enabled($controller)) {
$action = 'confirm_uninstall_localplay';
- $action_txt = _('Disable');
+ $action_txt = T_('Disable');
}
else {
$action = 'install_localplay';
- $action_txt = _('Activate');
+ $action_txt = T_('Activate');
}
?>
<tr class="<?php echo flip_class(); ?>">
@@ -64,14 +64,14 @@ foreach ($controllers as $controller) {
</tr>
<?php } if (!count($controllers)) { ?>
<tr class="<?php echo flip_class(); ?>">
- <td colspan="4"><span class="error"><?php echo _('No Records Found'); ?></span></td>
+ <td colspan="4"><span class="error"><?php echo T_('No Records Found'); ?></span></td>
</tr>
<?php } ?>
<tr class="th-bottom">
- <th class="cel_name"><?php echo _('Name'); ?></th>
- <th class="cel_description"><?php echo _('Description'); ?></th>
- <th class="cel_version"><?php echo _('Version'); ?></th>
- <th class="cel_action"><?php echo _('Action'); ?></th>
+ <th class="cel_name"><?php echo T_('Name'); ?></th>
+ <th class="cel_description"><?php echo T_('Description'); ?></th>
+ <th class="cel_version"><?php echo T_('Version'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
</table>
<br />