summaryrefslogtreecommitdiffstats
path: root/templates/show_manage_democratic.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_manage_democratic.inc.php')
-rw-r--r--templates/show_manage_democratic.inc.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/templates/show_manage_democratic.inc.php b/templates/show_manage_democratic.inc.php
index 33d5373a..9b274265 100644
--- a/templates/show_manage_democratic.inc.php
+++ b/templates/show_manage_democratic.inc.php
@@ -26,7 +26,7 @@
* @link http://www.ampache.org/
*/
-show_box_top(_('Manage Democratic Playlists')); ?>
+show_box_top(T_('Manage Democratic Playlists')); ?>
<table class="tabledata" cellpadding="0" cellspacing="0">
<colgroup>
<col id="col_number" />
@@ -38,13 +38,13 @@ show_box_top(_('Manage Democratic Playlists')); ?>
<col id="col_action" />
</colgroup>
<tr class="th-top">
- <th class="cel_number"><?php echo _('Playlist'); ?></th>
- <th class="cel_base_playlist"><?php echo _('Base Playlist'); ?></th>
- <th class="cel_cooldown"><?php echo _('Cooldown'); ?></th>
- <th class="cel_level"><?php echo _('Level'); ?></th>
- <th class="cel_default"><?php echo _('Default'); ?></th>
- <th class="cel_vote_count"><?php echo _('Songs'); ?></th>
- <th class="cel_action"><?php echo _('Action'); ?></th>
+ <th class="cel_number"><?php echo T_('Playlist'); ?></th>
+ <th class="cel_base_playlist"><?php echo T_('Base Playlist'); ?></th>
+ <th class="cel_cooldown"><?php echo T_('Cooldown'); ?></th>
+ <th class="cel_level"><?php echo T_('Level'); ?></th>
+ <th class="cel_default"><?php echo T_('Default'); ?></th>
+ <th class="cel_vote_count"><?php echo T_('Songs'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
<?php
foreach ($playlists as $democratic_id) {
@@ -61,18 +61,18 @@ show_box_top(_('Manage Democratic Playlists')); ?>
<td><?php echo $democratic->f_primary; ?></td>
<td><?php echo $democratic->count_items(); ?></td>
<td>
- <?php echo Ajax::button('?page=democratic&action=send_playlist&democratic_id=' . $democratic->id,'all',_('Play'),'play_democratic'); ?>
- <a href="<?php echo Config::get('web_path'); ?>/democratic.php?action=delete&amp;democratic_id=<?php echo scrub_out($democratic->id); ?>"><?php echo get_user_icon('delete', _('Delete')); ?></a>
+ <?php echo Ajax::button('?page=democratic&action=send_playlist&democratic_id=' . $democratic->id,'all', T_('Play'),'play_democratic'); ?>
+ <a href="<?php echo Config::get('web_path'); ?>/democratic.php?action=delete&amp;democratic_id=<?php echo scrub_out($democratic->id); ?>"><?php echo get_user_icon('delete', T_('Delete')); ?></a>
</td>
</tr>
<?php } if (!count($playlists)) { ?>
<tr>
- <td colspan="7"><span class="fatalerror"><?php echo _('Not Enough Data'); ?></span></td>
+ <td colspan="7"><span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span></td>
</tr>
<?php } ?>
</table>
<br />
<div>
-<a class="button" href="<?php echo Config::get('web_path'); ?>/democratic.php?action=show_create"><?php echo _('Create New Playlist'); ?></a>
+<a class="button" href="<?php echo Config::get('web_path'); ?>/democratic.php?action=show_create"><?php echo T_('Create New Playlist'); ?></a>
</div>
<?php show_box_bottom(); ?>