summaryrefslogtreecommitdiffstats
path: root/templates/show_playlist_songs.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_playlist_songs.inc.php')
-rw-r--r--templates/show_playlist_songs.inc.php36
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/show_playlist_songs.inc.php b/templates/show_playlist_songs.inc.php
index c3ebc3b6..a9f997d2 100644
--- a/templates/show_playlist_songs.inc.php
+++ b/templates/show_playlist_songs.inc.php
@@ -46,19 +46,19 @@ $ajax_url = Config::get('ajax_url');
</colgroup>
<tr class="th-top">
<th class="cel_add">&nbsp;</th>
- <th class="cel_track"><?php echo _('Track'); ?></th>
- <th class="cel_song"><?php echo _('Song Title'); ?></th>
- <th class="cel_artist"><?php echo _('Artist'); ?></th>
- <th class="cel_album"><?php echo _('Album'); ?></th>
- <th class="cel_genre"><?php echo _('Genre'); ?></th>
- <th class="cel_track"><?php echo _('Track'); ?></th>
- <th class="cel_time"><?php echo _('Time'); ?></th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_song"><?php echo T_('Song Title'); ?></th>
+ <th class="cel_artist"><?php echo T_('Artist'); ?></th>
+ <th class="cel_album"><?php echo T_('Album'); ?></th>
+ <th class="cel_genre"><?php echo T_('Genre'); ?></th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_time"><?php echo T_('Time'); ?></th>
<?php if (Config::get('ratings')) {
Rating::build_cache('song', array_map(create_function('$i', 'return $i[\'object_id\'];'), $object_ids));
?>
- <th class="cel_rating"><?php echo _('Rating'); ?></th>
+ <th class="cel_rating"><?php echo T_('Rating'); ?></th>
<?php } ?>
- <th class="cel_action"><?php echo _('Action'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
<?php
foreach ($object_ids as $object) {
@@ -72,17 +72,17 @@ $ajax_url = Config::get('ajax_url');
<?php } ?>
<tr class="th-bottom">
<th class="cel_add">&nbsp;</th>
- <th class="cel_track"><?php echo _('Track'); ?></th>
- <th class="cel_song"><?php echo _('Song Title'); ?></th>
- <th class="cel_artist"><?php echo _('Artist'); ?></th>
- <th class="cel_album"><?php echo _('Album'); ?></th>
- <th class="cel_genre"><?php echo _('Genre'); ?></th>
- <th class="cel_track"><?php echo _('Track'); ?></th>
- <th class="cel_time"><?php echo _('Time'); ?></th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_song"><?php echo T_('Song Title'); ?></th>
+ <th class="cel_artist"><?php echo T_('Artist'); ?></th>
+ <th class="cel_album"><?php echo T_('Album'); ?></th>
+ <th class="cel_genre"><?php echo T_('Genre'); ?></th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_time"><?php echo T_('Time'); ?></th>
<?php if (Config::get('ratings')) { ?>
- <th class="cel_rating"><?php echo _('Rating'); ?></th>
+ <th class="cel_rating"><?php echo T_('Rating'); ?></th>
<?php } ?>
- <th class="cel_action"><?php echo _('Action'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
</table>
<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>