diff options
Diffstat (limited to 'templates/show_edit_artist.inc.php')
-rw-r--r-- | templates/show_edit_artist.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_edit_artist.inc.php b/templates/show_edit_artist.inc.php index 93801e5e..d5d265e4 100644 --- a/templates/show_edit_artist.inc.php +++ b/templates/show_edit_artist.inc.php @@ -28,11 +28,11 @@ ?> -<?php show_box_top(_('Edit Artist')); ?> +<?php show_box_top(T_('Edit Artist')); ?> <form name="edit_artist" method="post" enctype="multipart/form-data" action="<?php echo conf('web_path'); ?>/admin/flag.php?action=edit_artist"> <table class="tabledata"> <tr class="<?php echo flip_class(); ?>"> - <td><?php echo _('Name'); ?></td> + <td><?php echo T_('Name'); ?></td> <td> <input type="text" name="name" value="<?php echo scrub_out($artist->name); ?>"> </td> @@ -40,13 +40,13 @@ <tr class="<?php echo flip_class(); ?>"> <td> </td> <td> - <input type="checkbox" name="flag" value="1" checked="checked" /> <?php echo _('Flag for Retagging'); ?> + <input type="checkbox" name="flag" value="1" checked="checked" /> <?php echo T_('Flag for Retagging'); ?> </td> </tr> </table> <div class="formValidation"> <input type="hidden" name="artist_id" value="<?php echo $artist->id; ?>" /> - <input type="submit" value="<?php echo _('Update Artist'); ?>" /> + <input type="submit" value="<?php echo T_('Update Artist'); ?>" /> </div> </form> <?php show_box_bottom(); ?> |