summaryrefslogtreecommitdiffstats
path: root/templates/show_album_art.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_album_art.inc.php')
-rw-r--r--templates/show_album_art.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_album_art.inc.php b/templates/show_album_art.inc.php
index f6e05283..5d968961 100644
--- a/templates/show_album_art.inc.php
+++ b/templates/show_album_art.inc.php
@@ -31,7 +31,7 @@ $total_images = count($images);
$rows = floor($total_images/4);
$i = 0;
?>
-<?php show_box_top(_('Select New Album Art'), 'box box_album_art'); ?>
+<?php show_box_top(T_('Select New Album Art'), 'box box_album_art'); ?>
<table class="table-data">
<tr>
<?php
@@ -45,15 +45,15 @@ while ($i <= $rows) {
else {
?>
<td align="center">
- <a href="<?php echo $image_url; ?>" target="_blank"><img src="<?php echo $image_url; ?>" alt="<?php echo _('Album Art'); ?>" border="0" height="175" width="175" /></a>
+ <a href="<?php echo $image_url; ?>" target="_blank"><img src="<?php echo $image_url; ?>" alt="<?php echo T_('Album Art'); ?>" border="0" height="175" width="175" /></a>
<br />
<p align="center">
<?php if (is_array($dimensions)) { ?>
[<?php echo intval($dimensions['width']); ?>x<?php echo intval($dimensions['height']); ?>]
<?php } else { ?>
- <span class="error"><?php echo _('Invalid'); ?></span>
+ <span class="error"><?php echo T_('Invalid'); ?></span>
<?php } ?>
- [<a href="<?php echo Config::get('web_path'); ?>/albums.php?action=select_art&amp;image=<?php echo $key; ?>&amp;album_id=<?php echo intval($_REQUEST['album_id']); ?>"><?php echo _('Select'); ?></a>]
+ [<a href="<?php echo Config::get('web_path'); ?>/albums.php?action=select_art&amp;image=<?php echo $key; ?>&amp;album_id=<?php echo intval($_REQUEST['album_id']); ?>"><?php echo T_('Select'); ?></a>]
</p>
</td>
<?php