summaryrefslogtreecommitdiffstats
path: root/templates/show_edit_catalog.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_edit_catalog.inc.php')
-rw-r--r--templates/show_edit_catalog.inc.php36
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/show_edit_catalog.inc.php b/templates/show_edit_catalog.inc.php
index a23ebb2c..02041978 100644
--- a/templates/show_edit_catalog.inc.php
+++ b/templates/show_edit_catalog.inc.php
@@ -27,44 +27,44 @@
*/
?>
-<?php /* HINT: Catalog Name */ show_box_top(sprintf(_('Settings for %s') , $catalog->name . ' (' . $catalog->path . ')'), 'box box_edit_catalog'); ?>
+<?php /* HINT: Catalog Name */ show_box_top(sprintf(T_('Settings for %s') , $catalog->name . ' (' . $catalog->path . ')'), 'box box_edit_catalog'); ?>
<form method="post" action="<?php echo Config::get('web_path'); ?>/admin/catalog.php" enctype="multipart/form-data">
<table cellspacing="0" cellpadding="0">
<tr>
- <td><?php echo _('Name'); ?>:</td>
+ <td><?php echo T_('Name'); ?>:</td>
<td><input size="60" type="text" name="name" value="<?php echo scrub_out($catalog->name); ?>"></input></td>
<td style="vertical-align:top; font-family: monospace;" rowspan="5">
- <strong><?php echo _('Auto-inserted Fields'); ?>:</strong><br />
- %A = <?php echo _('album name'); ?><br />
- %a = <?php echo _('artist name'); ?><br />
- %c = <?php echo _('id3 comment'); ?><br />
- %T = <?php echo _('track number (padded with leading 0)'); ?><br />
- %t = <?php echo _('song title'); ?><br />
- %y = <?php echo _('year'); ?><br />
- %o = <?php echo _('other'); ?><br />
+ <strong><?php echo T_('Auto-inserted Fields'); ?>:</strong><br />
+ %A = <?php echo T_('album name'); ?><br />
+ %a = <?php echo T_('artist name'); ?><br />
+ %c = <?php echo T_('id3 comment'); ?><br />
+ %T = <?php echo T_('track number (padded with leading 0)'); ?><br />
+ %t = <?php echo T_('song title'); ?><br />
+ %y = <?php echo T_('year'); ?><br />
+ %o = <?php echo T_('other'); ?><br />
</td>
</tr>
<tr>
- <td><?php echo _('Catalog Type'); ?></td>
+ <td><?php echo T_('Catalog Type'); ?></td>
<td><?php echo scrub_out(ucfirst($catalog->catalog_type)); ?></td>
</tr>
<tr>
- <td><?php echo _('Remote Catalog Username'); ?>: </td>
- <td><input size="30" type="text" name="remote_username" value="<?php echo scrub_out($catalog->remote_username); ?>" /><span class="error">*<?php echo _('Required for Remote Catalogs'); ?></span></td>
+ <td><?php echo T_('Remote Catalog Username'); ?>: </td>
+ <td><input size="30" type="text" name="remote_username" value="<?php echo scrub_out($catalog->remote_username); ?>" /><span class="error">*<?php echo T_('Required for Remote Catalogs'); ?></span></td>
</tr>
<tr>
- <td><?php echo _('Remote Catalog Password'); ?>: </td>
- <td><input size="30" type="password" name="remote_password" value="" /><span class="error">*<?php echo _('Required for Remote Catalogs'); ?></span></td>
+ <td><?php echo T_('Remote Catalog Password'); ?>: </td>
+ <td><input size="30" type="password" name="remote_password" value="" /><span class="error">*<?php echo T_('Required for Remote Catalogs'); ?></span></td>
</tr>
<tr>
- <td><?php echo _('Filename pattern'); ?>:</td>
+ <td><?php echo T_('Filename pattern'); ?>:</td>
<td>
<input size="60" type="text" name="rename_pattern" value="<?php echo scrub_out($catalog->rename_pattern); ?>" />
</td>
</tr>
<tr>
<td>
- <?php echo _('Folder Pattern'); ?>:<br /><?php echo _('(no leading or ending \'/\')'); ?>
+ <?php echo T_('Folder Pattern'); ?>:<br /><?php echo T_('(no leading or ending \'/\')'); ?>
</td>
<td>
<input size="60" type="text" name="sort_pattern" value="<?php echo scrub_out($catalog->sort_pattern);?>" />
@@ -74,7 +74,7 @@
<div class="formValidation">
<input type="hidden" name="catalog_id" value="<?php echo scrub_out($catalog->id); ?>" />
<input type="hidden" name="action" value="update_catalog_settings" />
- <input class="button" type="submit" value="<?php echo _('Save Catalog Settings'); ?>" />
+ <input class="button" type="submit" value="<?php echo T_('Save Catalog Settings'); ?>" />
</div>
</form>
<?php show_box_bottom(); ?>