summaryrefslogtreecommitdiffstats
path: root/templates/show_duplicates.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_duplicates.inc.php')
-rw-r--r--templates/show_duplicates.inc.php36
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/show_duplicates.inc.php b/templates/show_duplicates.inc.php
index 0eccaa85..d5305c97 100644
--- a/templates/show_duplicates.inc.php
+++ b/templates/show_duplicates.inc.php
@@ -27,7 +27,7 @@
*/
?>
-<?php show_box_top(_('Duplicate Songs')); ?>
+<?php show_box_top(T_('Duplicate Songs')); ?>
<form method="post" enctype="multipart/form-data" action="<?php echo $web_path; ?>/admin/flag.php?action=disable">
<table class="tabledata" cellpadding="0" cellspacing="0">
<colgroup>
@@ -41,14 +41,14 @@
<col id="col_filename" />
</colgroup>
<tr class="th-top">
- <th class="cel_disable"><?php echo _('Disable'); ?></th>
- <th class="cel_song"><?php echo _('Song'); ?></th>
- <th class="cel_artist"><?php echo _('Artist'); ?></th>
- <th class="cel_album"><?php echo _('Album'); ?></th>
- <th class="cel_length"><?php echo _('Length'); ?></th>
- <th class="cel_bitrate"><?php echo _('Bitrate'); ?></th>
- <th class="cel_size"><?php echo _('Size'); ?></th>
- <th class="cel_filename"><?php echo _('Filename'); ?></th>
+ <th class="cel_disable"><?php echo T_('Disable'); ?></th>
+ <th class="cel_song"><?php echo T_('Song'); ?></th>
+ <th class="cel_artist"><?php echo T_('Artist'); ?></th>
+ <th class="cel_album"><?php echo T_('Album'); ?></th>
+ <th class="cel_length"><?php echo T_('Length'); ?></th>
+ <th class="cel_bitrate"><?php echo T_('Bitrate'); ?></th>
+ <th class="cel_size"><?php echo T_('Size'); ?></th>
+ <th class="cel_filename"><?php echo T_('Filename'); ?></th>
</tr>
<?php
foreach ($duplicates as $item) {
@@ -65,7 +65,7 @@
?>
<tr id="<?php echo $row_key; ?>" class="<?php echo $current_class; ?>">
<td class="cel_disable" id="<?php echo($button_flip_state_id); ?>">
- <?php echo Ajax::button('?page=song&action=flip_state&song_id=' . $song_id,$button,_(ucfirst($button)),'flip_state_' . $song_id); ?>
+ <?php echo Ajax::button('?page=song&action=flip_state&song_id=' . $song_id,$button, T_(ucfirst($button)),'flip_state_' . $song_id); ?>
</td>
<td class="cel_song"><?php echo $song->f_link; ?></td>
<td class="cel_artist"><?php echo $song->f_artist_link; ?></td>
@@ -80,14 +80,14 @@
} // end foreach ($flags as $flag)
?>
<tr class="th-bottom">
- <th class="cel_disable"><?php echo _('Disable'); ?></th>
- <th class="cel_song"><?php echo _('Song'); ?></th>
- <th class="cel_artist"><?php echo _('Artist'); ?></th>
- <th class="cel_album"><?php echo _('Album'); ?></th>
- <th class="cel_length"><?php echo _('Length'); ?></th>
- <th class="cel_bitrate"><?php echo _('Bitrate'); ?></th>
- <th class="cel_size"><?php echo _('Size'); ?></th>
- <th class="cel_filename"><?php echo _('Filename'); ?></th>
+ <th class="cel_disable"><?php echo T_('Disable'); ?></th>
+ <th class="cel_song"><?php echo T_('Song'); ?></th>
+ <th class="cel_artist"><?php echo T_('Artist'); ?></th>
+ <th class="cel_album"><?php echo T_('Album'); ?></th>
+ <th class="cel_length"><?php echo T_('Length'); ?></th>
+ <th class="cel_bitrate"><?php echo T_('Bitrate'); ?></th>
+ <th class="cel_size"><?php echo T_('Size'); ?></th>
+ <th class="cel_filename"><?php echo T_('Filename'); ?></th>
</tr>
</table>
</form>