diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-05-06 11:13:40 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-05-06 11:13:40 +0000 |
commit | 594a84df0456636acc1fa0cfd02c5ad278d746fc (patch) | |
tree | 2d59c2abb212b153bbb95d805546f858c49e8474 /templates/show_artist.inc.php | |
parent | 0b63ba290aa8afac25df642a69cf485426512e88 (diff) | |
download | ampache-594a84df0456636acc1fa0cfd02c5ad278d746fc.tar.gz ampache-594a84df0456636acc1fa0cfd02c5ad278d746fc.tar.bz2 ampache-594a84df0456636acc1fa0cfd02c5ad278d746fc.zip |
alexey #426 translation patch
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r-- | templates/show_artist.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index 2f29d11a..b2298d8f 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -32,7 +32,7 @@ if (Config::get('ratings')) { <div id="information_actions"> <ul> <li> - <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>"><?php echo get_user_icon('view'); ?></a><?php printf(_("Show All Songs By %s"), $artist->f_name); ?> + <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>"><?php echo get_user_icon('view', _("Show All Songs By %s")); ?></a><?php printf(_("Show All Songs By %s"), $artist->f_name); ?> </li> <li> <?php echo Ajax::button('?action=basket&type=artist&id=' . $artist->id,'add',_('Add'),'add_' . $artist->id); ?><?php printf(_('Add All Songs By %s'), $artist->f_name); ?> @@ -42,12 +42,12 @@ if (Config::get('ratings')) { </li> <?php if (Access::check('interface','50')) { ?> <li> - <a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&artist=<?php echo $artist->id; ?>"><?php echo get_user_icon('cog'); ?></a> <?php echo _('Update from tags'); ?> + <a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&artist=<?php echo $artist->id; ?>"><?php echo get_user_icon('cog', _('Update from tags')); ?></a> <?php echo _('Update from tags'); ?> </li> <?php } ?> <?php if (Access::check_function('batch_download')) { ?> <li> - <a href="<?php echo $web_path; ?>/batch.php?action=artist&id=<?php echo $artist->id; ?>"><?php echo get_user_icon('batch_download'); ?></a> + <a href="<?php echo $web_path; ?>/batch.php?action=artist&id=<?php echo $artist->id; ?>"><?php echo get_user_icon('batch_download', _('Download')); ?></a> <?php echo _('Download'); ?> </li> <?php } ?> |