diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_add_catalog.inc.php | 14 | ||||
-rw-r--r-- | templates/show_edit_catalog.inc.php | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/templates/show_add_catalog.inc.php b/templates/show_add_catalog.inc.php index 2bd217b6..501dddd6 100644 --- a/templates/show_add_catalog.inc.php +++ b/templates/show_add_catalog.inc.php @@ -39,13 +39,13 @@ $default_sort = "%a/%A"; <td><input size="60" type="text" name="name" value="<?php echo scrub_out($_POST['name']); ?>" /></td> <td style="vertical-align:top; font-family: monospace;" rowspan="6" id="patterns_example"> <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 /> + <span class="format-specifier">%A</span> = <?php echo T_('album name'); ?><br /> + <span class="format-specifier">%a</span> = <?php echo T_('artist name'); ?><br /> + <span class="format-specifier">%c</span> = <?php echo T_('id3 comment'); ?><br /> + <span class="format-specifier">%T</span> = <?php echo T_('track number (padded with leading 0)'); ?><br /> + <span class="format-specifier">%t</span> = <?php echo T_('song title'); ?><br /> + <span class="format-specifier">%y</span> = <?php echo T_('year'); ?><br /> + <span class="format-specifier">%o</span> = <?php echo T_('other'); ?><br /> </td> </tr> diff --git a/templates/show_edit_catalog.inc.php b/templates/show_edit_catalog.inc.php index 02041978..6ef0763c 100644 --- a/templates/show_edit_catalog.inc.php +++ b/templates/show_edit_catalog.inc.php @@ -35,13 +35,13 @@ <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 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 /> + <span class="format-specifier">%A</span>= <?php echo T_('album name'); ?><br /> + <span class="format-specifier">%a</span>= <?php echo T_('artist name'); ?><br /> + <span class="format-specifier">%c</span>= <?php echo T_('id3 comment'); ?><br /> + <span class="format-specifier">%T</span>= <?php echo T_('track number (padded with leading 0)'); ?><br /> + <span class="format-specifier">%t</span>= <?php echo T_('song title'); ?><br /> + <span class="format-specifier">%y</span>= <?php echo T_('year'); ?><br /> + <span class="format-specifier">%o</span>= <?php echo T_('other'); ?><br /> </td> </tr> <tr> |