diff options
Diffstat (limited to 'templates/show_add_playlist.inc.php')
-rw-r--r-- | templates/show_add_playlist.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_add_playlist.inc.php b/templates/show_add_playlist.inc.php index a2fc25fa..c510b38e 100644 --- a/templates/show_add_playlist.inc.php +++ b/templates/show_add_playlist.inc.php @@ -27,15 +27,15 @@ */ ?> -<?php show_box_top(_('Create a new playlist')); ?> +<?php show_box_top(T_('Create a new playlist')); ?> <form name="songs" method="post" action="<?php echo conf('web_path'); ?>/playlist.php"> <table> <tr> - <td><?php echo _('Name'); ?>:</td> + <td><?php echo T_('Name'); ?>:</td> <td><input type="text" name="playlist_name" size="20" /></td> </tr> <tr> - <td><?php echo _('Type'); ?>:</td> + <td><?php echo T_('Type'); ?>:</td> <td> <select name="type"> <option value="private"> Private </option> @@ -45,7 +45,7 @@ </tr> </table> <div class="formValidation"> - <input class="button" type="submit" value="<?php echo _('Create'); ?>" /> + <input class="button" type="submit" value="<?php echo T_('Create'); ?>" /> <input type="hidden" name="action" value="Create" /> </div> </form> |