summaryrefslogtreecommitdiffstats
path: root/templates/show_user_stats.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-05-06 11:13:40 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-05-06 11:13:40 +0000
commit594a84df0456636acc1fa0cfd02c5ad278d746fc (patch)
tree2d59c2abb212b153bbb95d805546f858c49e8474 /templates/show_user_stats.inc.php
parent0b63ba290aa8afac25df642a69cf485426512e88 (diff)
downloadampache-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.php6
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&amp;type=artist">' .
- get_user_icon('all') . '</a>&nbsp;' . _('Favorite Artists');
+ get_user_icon('all', _('Favorite Artists')) . '</a>&nbsp;' . _('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&amp;type=album">' .
- get_user_icon('all') . '</a>&nbsp;' . _('Favorite Albums');
+ get_user_icon('all', _('Favorite Albums')) . '</a>&nbsp;' . _('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&amp;type=song">' .
- get_user_icon('all') . '</a>&nbsp;' . _('Favorite Songs');
+ get_user_icon('all', _('Favorite Songs')) . '</a>&nbsp;' . _('Favorite Songs');
show_info_box($title,'your_song',$items);
}
else {