diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-08 03:44:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-08 03:44:06 +0000 |
commit | dda0815b08128ef66da98ab007ed1b57ac33fe50 (patch) | |
tree | 142f25901f916a26a461fe0c2cd3fe63451a299a /templates/show_artist.inc.php | |
parent | 66b7d6f37a2d1dd02968bd06a53e9dfe8cc87871 (diff) | |
download | ampache-dda0815b08128ef66da98ab007ed1b57ac33fe50.tar.gz ampache-dda0815b08128ef66da98ab007ed1b57ac33fe50.tar.bz2 ampache-dda0815b08128ef66da98ab007ed1b57ac33fe50.zip |
more fixes for the translation (Thx momo-i) and updated ja_JP
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r-- | templates/show_artist.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index 3bb8ffec..1d6906a6 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -19,10 +19,10 @@ */ $web_path = Config::get('web_path'); -$title = _('Albums by') . " " . $artist->full_name; +$title = sprintf(_('Albums by %s'), $artist->full_name); ?> <?php -show_box_top(_(ucfirst($object_type) . 's by') . ' ' . $artist->f_name,'info-box'); +show_box_top(sprintf(ngettext('%s by %s', '%ss by %s', count(ucfirst($object_type))) , ucfirst($object_type) ,$artist->f_name),'info-box'); if (Config::get('ratings')) { ?> <div id="rating_"<?php echo intval($artist->id); ?>"_artist" style="display:inline;"> |