diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2012-03-31 17:01:04 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-04-12 21:13:29 -0400 |
commit | f65076b93d91fe9718cf9bef37638d64290b9f28 (patch) | |
tree | 40fbc65baffab34971d8c7b685ef9c99e0f4014f /templates/show_add_catalog.inc.php | |
parent | 15457b16f17a141fa76a3b9882892362b601787c (diff) | |
download | ampache-f65076b93d91fe9718cf9bef37638d64290b9f28.tar.gz ampache-f65076b93d91fe9718cf9bef37638d64290b9f28.tar.bz2 ampache-f65076b93d91fe9718cf9bef37638d64290b9f28.zip |
Switch from _() to T_()
Even if we move away from php-gettext in the future, it's easy to
write a quick T_() as a simple wrapper; it's not so easy to rewrite
PHP to allow redeclaration of a function.
Diffstat (limited to 'templates/show_add_catalog.inc.php')
-rw-r--r-- | templates/show_add_catalog.inc.php | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/templates/show_add_catalog.inc.php b/templates/show_add_catalog.inc.php index 2b352d4b..2bd217b6 100644 --- a/templates/show_add_catalog.inc.php +++ b/templates/show_add_catalog.inc.php @@ -29,70 +29,70 @@ $default_rename = "%a - %T - %t"; $default_sort = "%a/%A"; ?> -<?php show_box_top(_('Add a Catalog'), 'box box_add_catalog'); ?> -<p><?php echo _("In the form below enter either a local path (i.e. /data/music) or the URL to a remote Ampache installation (i.e http://theotherampache.com)"); ?></p> +<?php show_box_top(T_('Add a Catalog'), 'box box_add_catalog'); ?> +<p><?php echo T_("In the form below enter either a local path (i.e. /data/music) or the URL to a remote Ampache installation (i.e http://theotherampache.com)"); ?></p> <?php Error::display('general'); ?> <form name="update_catalog" method="post" action="<?php echo Config::get('web_path'); ?>/admin/catalog.php" enctype="multipart/form-data"> <table class="tabledata" cellpadding="0" cellspacing="0"> <tr> - <td><?php echo _('Catalog Name'); ?>: </td> + <td><?php echo T_('Catalog Name'); ?>: </td> <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 _('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 _('Path'); ?>: </td> + <td><?php echo T_('Path'); ?>: </td> <td><input size="60" type="text" name="path" value="<?php echo scrub_out($_POST['path']); ?>" /></td> </tr> <tr> - <td><?php echo _('Catalog Type'); ?>: </td> + <td><?php echo T_('Catalog Type'); ?>: </td> <td> <select name="type"> - <option value="local"><?php echo _('Local'); ?></option> - <option value="remote"><?php echo _('Remote'); ?></option> + <option value="local"><?php echo T_('Local'); ?></option> + <option value="remote"><?php echo T_('Remote'); ?></option> </select> </td> </tr> <tr> - <td><?php echo _('Remote Catalog Username'); ?>: </td> - <td><input size="30" type="text" name="remote_username" value="<?php echo scrub_out($_POST['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($_POST['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 $default_rename; ?>" /></td> </tr> <tr> - <td><?php echo _('Folder Pattern'); ?>:<br /><?php echo _("(no leading or ending '/')"); ?></td> + <td><?php echo T_('Folder Pattern'); ?>:<br /><?php echo T_("(no leading or ending '/')"); ?></td> <td valign="top"><input size="60" type="text" name="sort_pattern" value="<?php echo $default_sort; ?>" /></td> </tr> <tr> - <td valign="top"><?php echo _('Gather Album Art'); ?>:</td> + <td valign="top"><?php echo T_('Gather Album Art'); ?>:</td> <td><input type="checkbox" name="gather_art" value="1" /></td> </tr> <tr> - <td valign="top"><?php echo _('Build Playlists from m3u Files'); ?>:</td> + <td valign="top"><?php echo T_('Build Playlists from m3u Files'); ?>:</td> <td><input type="checkbox" name="parse_m3u" value="1" /></td> </tr> </table> <div class="formValidation"> <input type="hidden" name="action" value="add_catalog" /> <?php echo Core::form_register('add_catalog'); ?> - <input class="button" type="submit" value="<?php echo _('Add Catalog'); ?>" /> + <input class="button" type="submit" value="<?php echo T_('Add Catalog'); ?>" /> </div> </form> <?php show_box_bottom(); ?> |