summaryrefslogtreecommitdiffstats
path: root/templates/show_manage_democratic.inc.php
diff options
context:
space:
mode:
authorPaul Arthur <flowerysong00@yahoo.com>2012-03-31 17:01:04 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2012-04-12 21:13:29 -0400
commitf65076b93d91fe9718cf9bef37638d64290b9f28 (patch)
tree40fbc65baffab34971d8c7b685ef9c99e0f4014f /templates/show_manage_democratic.inc.php
parent15457b16f17a141fa76a3b9882892362b601787c (diff)
downloadampache-f65076b93d91fe9718cf9bef37638d64290b9f28.tar.gz
ampache-f65076b93d91fe9718cf9bef37638d64290b9f28.tar.bz2
ampache-f65076b93d91fe9718cf9bef37638d64290b9f28.zip
Switch from _() to T_()
Even if we move away from php-gettext in the future, it's easy to write a quick T_() as a simple wrapper; it's not so easy to rewrite PHP to allow redeclaration of a function.
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(); ?>