summaryrefslogtreecommitdiffstats
path: root/templates/show_get_albumart.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_get_albumart.inc.php')
-rw-r--r--templates/show_get_albumart.inc.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/show_get_albumart.inc.php b/templates/show_get_albumart.inc.php
index 46954fb7..d064cce5 100644
--- a/templates/show_get_albumart.inc.php
+++ b/templates/show_get_albumart.inc.php
@@ -27,12 +27,12 @@
*/
?>
-<?php show_box_top(_('Customize Search'), 'box box_get_albumart'); ?>
+<?php show_box_top(T_('Customize Search'), 'box box_get_albumart'); ?>
<form enctype="multipart/form-data" name="coverart" method="post" action="<?php echo Config::get('web_path'); ?>/albums.php?action=find_art&amp;album_id=<?php echo $album->id; ?>&amp;artist_name=<?php echo urlencode($_REQUEST['artist_name']);?>&amp;album_name=<?php echo urlencode($_REQUEST['album_name']); ?>&amp;cover=<?php echo urlencode($_REQUEST['cover']); ?>" style="Display:inline;">
<table>
<tr>
<td>
- <?php echo _('Artist'); ?>&nbsp;
+ <?php echo T_('Artist'); ?>&nbsp;
</td>
<td>
<input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo scrub_out(unhtmlentities($artistname)); ?>" />
@@ -40,7 +40,7 @@
</tr>
<tr>
<td>
- <?php echo _('Album'); ?>&nbsp;
+ <?php echo T_('Album'); ?>&nbsp;
</td>
<td>
<input type="text" size="20" id="album_name" name="album_name" value="<?php echo scrub_out(unhtmlentities($albumname)); ?>" />
@@ -48,7 +48,7 @@
</tr>
<tr>
<td>
- <?php echo _('Direct URL to Image'); ?>
+ <?php echo T_('Direct URL to Image'); ?>
</td>
<td>
<input type="text" size="40" id="cover" name="cover" value="" />
@@ -56,7 +56,7 @@
</tr>
<tr>
<td>
- <?php echo _('Local Image'); ?>
+ <?php echo T_('Local Image'); ?>
</td>
<td>
<input type="file" size="40" id="file" name="file" value="" />
@@ -67,7 +67,7 @@
<input type="hidden" name="action" value="find_art" />
<input type="hidden" name="album_id" value="<?php echo $album->id; ?>" />
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo Config::get('max_upload_size'); ?>" />
- <input type="submit" value="<?php echo _('Get Art'); ?>" />
+ <input type="submit" value="<?php echo T_('Get Art'); ?>" />
</div>
</form>
<?php show_box_bottom(); ?>