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_user_stats.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_user_stats.inc.php')
-rw-r--r-- | templates/show_user_stats.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_user_stats.inc.php b/templates/show_user_stats.inc.php index f07bb5e7..7b9d8e3e 100644 --- a/templates/show_user_stats.inc.php +++ b/templates/show_user_stats.inc.php @@ -27,7 +27,7 @@ if (count($favorite_artists)) { $items = $working_user->format_favorites($favorite_artists); $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=artist">' . - get_user_icon('all') . '</a> ' . _('Favorite Artists'); + get_user_icon('all', _('Favorite Artists')) . '</a> ' . _('Favorite Artists'); show_info_box($title,'artist',$items); } else { @@ -40,7 +40,7 @@ if (count($favorite_albums)) { $items = $working_user->format_favorites($favorite_albums); $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=album">' . - get_user_icon('all') . '</a> ' . _('Favorite Albums'); + get_user_icon('all', _('Favorite Albums')) . '</a> ' . _('Favorite Albums'); show_info_box($title,'album',$items); } else { @@ -53,7 +53,7 @@ if (count($favorite_songs)) { $items = $working_user->format_favorites($favorite_songs); $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=song">' . - get_user_icon('all') . '</a> ' . _('Favorite Songs'); + get_user_icon('all', _('Favorite Songs')) . '</a> ' . _('Favorite Songs'); show_info_box($title,'your_song',$items); } else { |