diff options
author | momo-i <momo-i@ampache> | 2009-05-19 00:45:51 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2009-05-19 00:45:51 +0000 |
commit | 27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea (patch) | |
tree | a342c9d203397019a706b25c0369655c36e9a055 /templates/show_artist.inc.php | |
parent | 3f2f2a124d04640937fcc9c01ebd1cfa6862603f (diff) | |
download | ampache-27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea.tar.gz ampache-27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea.tar.bz2 ampache-27898465844ac33da0bd5ac6c8fbbb4d05fbf5ea.zip |
Add Hint for translators
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r-- | templates/show_artist.inc.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index b2298d8f..942788af 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -19,9 +19,11 @@ */ $web_path = Config::get('web_path'); +/* HINT: Artist Fullname */ $title = sprintf(_('Albums by %s'), $artist->full_name); ?> <?php +/* HINT: Object type, Artist Fullname */ show_box_top(sprintf(gettext('%s by %s'), ucfirst($object_type) ,$artist->f_name),'info-box'); if (Config::get('ratings')) { ?> @@ -32,13 +34,13 @@ 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', _("Show All Songs By %s")); ?></a><?php printf(_("Show All Songs By %s"), $artist->f_name); ?> + <?php /* HINT: Artist Fullname */ ?><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); ?> + <?php /* HINT: Artist Fullname */ ?><?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); ?> </li> <li> - <?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random',_('Random'),'random_' . $artist->id); ?><?php printf(_('Add Random Songs By %s'), $artist->f_name); ?> + <?php /* HINT: Artist Fullname */ ?><?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random',_('Random'),'random_' . $artist->id); ?><?php printf(_('Add Random Songs By %s'), $artist->f_name); ?> </li> <?php if (Access::check('interface','50')) { ?> <li> |