diff --git a/admin/catalog.php b/admin/catalog.php
index 6ea5bc29..e1e43f9b 100644
--- a/admin/catalog.php
+++ b/admin/catalog.php
@@ -123,12 +123,12 @@ switch ($_REQUEST['action']) {
if (count($song)) {
$catalog->remove_songs($song);
- $body = T_ngettext('Song Removed', 'Songs Removed', count($song));
+ $body = ngettext('%d Song Removed', '%d Songs Removed', count($song));
} else {
$body = T_('No Songs Removed');
}
$url = AmpConfig::get('web_path') . '/admin/catalog.php';
- $title = T_ngettext('Disabled Song Processed','Disabled Songs Processed',count($song));
+ $title = ngettext('%d Disabled Song Processed', '%d Disabled Songs Processed', count($song));
show_confirmation($title,$body,$url);
break;
case 'clean_all_catalogs':
diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php
index 8dec7258..8a4773ec 100644
--- a/lib/class/catalog.class.php
+++ b/lib/class/catalog.class.php
@@ -382,9 +382,9 @@ abstract class Catalog extends database_object
$hours = $hours % 24;
$time_text = "$days ";
- $time_text .= T_ngettext('day','days',$days);
+ $time_text .= ngettext('day','days',$days);
$time_text .= ", $hours ";
- $time_text .= T_ngettext('hour','hours',$hours);
+ $time_text .= ngettext('hour','hours',$hours);
$results['time_text'] = $time_text;
@@ -1032,7 +1032,7 @@ abstract class Catalog extends database_object
UI::show_box_top();
echo "";
- printf (T_ngettext('Catalog Clean Done. %d file removed.', 'Catalog Clean Done. %d files removed.', $dead_total), $dead_total);
+ printf (ngettext('Catalog Clean Done. %d file removed.', 'Catalog Clean Done. %d files removed.', $dead_total), $dead_total);
echo "
\n";
UI::show_box_bottom();
ob_flush();
@@ -1201,7 +1201,7 @@ abstract class Catalog extends database_object
if (!$playlist_id) {
return array(
'success' => false,
- 'error' => 'Failed to create playlist.',
+ 'error' => T_('Failed to create playlist.'),
);
}
@@ -1218,7 +1218,7 @@ abstract class Catalog extends database_object
return array(
'success' => false,
- 'error' => 'No valid songs found in playlist file.'
+ 'error' => T_('No valid songs found in playlist file.')
);
}
diff --git a/locale/ar_SA/LC_MESSAGES/messages.mo b/locale/ar_SA/LC_MESSAGES/messages.mo
index 83380fc6..1ec1fada 100644
Binary files a/locale/ar_SA/LC_MESSAGES/messages.mo and b/locale/ar_SA/LC_MESSAGES/messages.mo differ
diff --git a/locale/ar_SA/LC_MESSAGES/messages.po b/locale/ar_SA/LC_MESSAGES/messages.po
index 4634772f..029562be 100644
--- a/locale/ar_SA/LC_MESSAGES/messages.po
+++ b/locale/ar_SA/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2009 THE Ampache'S COPYRIGHT HOLDER
# This file is distributed under the same license as the Ampache package.
# momo-i , 2009.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-05-19 07:38+0900\n"
"Last-Translator: momo-i \n"
"Language-Team: Arabic\n"
@@ -25,7 +25,7 @@ msgstr ""
msgid "Your Access List Entry has been removed"
msgstr ""
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr ""
@@ -34,7 +34,7 @@ msgid "Are you sure you want to permanently delete"
msgstr ""
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr ""
@@ -42,7 +42,7 @@ msgstr ""
msgid "Your new Access Control List(s) have been created"
msgstr ""
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr ""
@@ -68,14 +68,29 @@ msgstr ""
msgid "Catalog Delete"
msgstr ""
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr ""
+#: ../../admin/catalog.php:126
+#, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr ""
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "بحث المعاقين أغاني"
+msgstr[1] "بحث المعاقين أغاني"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr ""
@@ -211,116 +226,146 @@ msgid ""
"currently configured charset"
msgstr ""
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr ""
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr ""
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr ""
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr ""
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr ""
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr ""
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "ضيف"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "مستخدم"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "مشرف"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr ""
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr ""
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr ""
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr ""
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr ""
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr ""
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, php-format
msgid "%s has been Deleted"
msgstr ""
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr ""
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr ""
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr ""
+#: ../../admin/users.php:181
+msgid "User Avatar Delete"
+msgstr ""
+
+#: ../../admin/users.php:195
+msgid "User Avater Deleted"
+msgstr ""
+
+#: ../../admin/users.php:195
+msgid "User Avatar has been deleted"
+msgstr ""
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "توليد ملف"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "New user API Key has been generated."
+msgstr ""
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr ""
@@ -380,88 +425,148 @@ msgstr ""
msgid "Show Artists starting with"
msgstr ""
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "كتالوج حفظ الإعدادات"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "نوع التسويقي"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "تحقق من الماضي"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "نوع التسويقي"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "نوع التسويقي"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "نوع التشغيل"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "إعدادات %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, php-format
msgid "Reading: %s"
msgstr ""
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
msgid "- Starting Add - "
msgstr ""
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "بدءا من البحث في الفنون الألبوم"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "نوع التسويقي"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "إحصائيات واضحة"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
msgid "Verify Catalogs"
msgstr ""
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
msgid "Add to Catalogs"
msgstr ""
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "استيراد قائمة التشغيل"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr ""
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+msgid "- Port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "إعدادات %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "غير معروف"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -577,12 +682,12 @@ msgstr "خطأ : تعذر الاتصال لجعل قاعدة البيانات"
msgid "File Moved..."
msgstr ""
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, php-format
msgid "Created %s user %s with password %s"
msgstr ""
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
msgid "User creation failed"
msgstr ""
@@ -704,6 +809,18 @@ msgstr ""
msgid "Error: Unable to copy file to %s"
msgstr "خطأ : تعذر الاتصال لجعل قاعدة البيانات"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -730,11 +847,44 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+msgid "Broadcast Delete"
+msgstr ""
+
+#: ../../broadcast.php:49
+msgid "Broadcast Deleted"
+msgstr ""
+
+#: ../../broadcast.php:49
+msgid "The Broadcast has been deleted"
+msgstr ""
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "الوسم الغيمة"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+msgid "Channel Created"
+msgstr ""
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "حذف"
+
+#: ../../channel.php:86
+msgid "Channel Deleted"
+msgstr ""
+
+#: ../../channel.php:86
+msgid "The Channel has been deleted"
+msgstr ""
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr ""
@@ -822,41 +972,46 @@ msgstr "واجهة ويب"
msgid "Stream Access"
msgstr "تيار الوصول"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr ""
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr ""
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "الفنانون"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr ""
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr ""
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -907,166 +1062,300 @@ msgstr ""
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "لا اسم المستخدم / كلمة السر المحددة"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr ""
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+msgid "Access denied to this playlist."
+msgstr ""
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr ""
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr ""
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
msgid "Update available"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
msgid "See"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "حفظ التغييرات"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
msgid "or"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "تنزيل"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "الفنان والعنوان"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "تحرير"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "حذف"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "الأغاني"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "البوم"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr ""
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "محطات إذاعية"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "التشغيل"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr ""
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr ""
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "استيراد قائمة التشغيل"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr ""
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr ""
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "الفيديو"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr ""
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "البوم"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+msgid "Shared Objects"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "حفظ التغييرات"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr ""
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "أبدا"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr ""
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../lib/class/catalog.class.php:1054
#, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr ""
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "إدارة التشغيل الديمقراطية"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "حفظ التغييرات"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "غير معروف"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr ""
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1077,34 +1366,23 @@ msgid "Primary"
msgstr ""
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "إدارة المحتوى"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "المدير التسويقي"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr ""
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr ""
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "غير معروف"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1137,22 +1415,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "إحصائيات واضحة"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr ""
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr ""
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr ""
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr ""
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1168,7 +1430,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1179,7 +1440,7 @@ msgid ""
"Thank you for registering\n"
msgstr ""
-#: ../../lib/class/registration.class.php:75
+#: ../../lib/class/registration.class.php:74
#, php-format
msgid ""
"A new user has registered\n"
@@ -1188,6 +1449,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
@@ -1262,107 +1524,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "العنوان"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "الألبوم"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "الفنان"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr ""
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "الوسم"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "اسم الملف"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "سنة"
@@ -1370,40 +1632,43 @@ msgstr "سنة"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "تصنيف"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "تشغيل"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr ""
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr ""
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1411,153 +1676,139 @@ msgstr ""
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "التشغيل"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "الاسم التشغيل"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "استيراد قائمة التشغيل"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "اسم"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "تشغيل"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "إضافة"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "في مرحلة ما بعد الصيحة"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr ""
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
msgid "No updates needed."
msgstr ""
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "البيانات غير كافية"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+msgid "User avatar"
+msgstr ""
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "غير معروف"
+
+#: ../../lib/class/wanted.class.php:272
msgid "Accept"
msgstr ""
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr ""
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
msgid "Add to wanted list"
msgstr ""
@@ -1639,135 +1890,139 @@ msgstr "اسم قاعدة البيانات المطلوبة"
msgid "Administrative user creation failed: %s"
msgstr "MySQL الإدارية اسم المستخدم"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr ""
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr ""
+
+#: ../../lib/login.php:131
+msgid "Unable to create local account"
+msgstr ""
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "يمكن"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "يعطل"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "بلا"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "يتدفق"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "الديمقراطية"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "لعب المحلية"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "الشبكة الدرب"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr ""
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr ""
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr ""
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr ""
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr ""
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr ""
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr ""
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr ""
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr ""
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr ""
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr ""
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "افتراضي"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr ""
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
msgid "Year ascending"
msgstr ""
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1799,7 +2054,8 @@ msgstr ""
msgid "Off the Charts!"
msgstr ""
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "منزل"
@@ -1815,14 +2071,14 @@ msgstr ""
msgid "Random Play"
msgstr ""
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr ""
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr ""
@@ -1856,7 +2112,7 @@ msgid "Browse Music"
msgstr ""
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "احصاءات"
@@ -1864,30 +2120,14 @@ msgstr "احصاءات"
msgid "Add New"
msgstr ""
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr ""
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr ""
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr ""
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr ""
-
-#: ../../login.php:118
-msgid "Unable to create local account"
-msgstr ""
-
#: ../../lostpassword.php:39
msgid "Password has been sent"
msgstr ""
@@ -1913,11 +2153,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -1985,11 +2227,11 @@ msgstr "البريد الإلكتروني"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "كلمة السر"
@@ -2053,48 +2295,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "خطأ : تعذر الاتصال لجعل قاعدة البيانات"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr ""
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr ""
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2109,13 +2351,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "اسم المستخدم"
@@ -2228,20 +2470,20 @@ msgstr ""
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr ""
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "عشوائية"
@@ -2258,14 +2500,46 @@ msgstr ""
msgid "Playlist Imported"
msgstr ""
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr ""
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr ""
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+msgid "Server registration completed."
+msgstr ""
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr ""
@@ -2282,35 +2556,35 @@ msgstr ""
msgid "Radio Station Added"
msgstr ""
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr ""
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr ""
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr ""
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr ""
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr ""
-#: ../../register.php:94
+#: ../../register.php:95
msgid "Invalid email address"
msgstr ""
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr ""
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr ""
@@ -2328,6 +2602,11 @@ msgstr "نوع البحث"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2336,43 +2615,76 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+msgid "Object Shared"
+msgstr ""
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "حذف"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "حذف"
+
+#: ../../share.php:110
+msgid "The Share has been deleted"
+msgstr ""
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr ""
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "الفلاتر"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "يبدأ"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "الحد الأدنى للتعداد"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "صنف"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "غير لعب"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "جميع التشغيل"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "عنوان الأغنية"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2381,93 +2693,68 @@ msgstr ""
msgid "Ampache error page"
msgstr "تحديث Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Ampache التصحيح"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "الأسئلة :"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "مخبأ عدد الزيارات :"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "الغاء"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr ""
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+msgid "Favorites"
+msgstr ""
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr ""
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr ""
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Ampache التثبيت"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "المتطلبات"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"وتتولى هذه الصفحة من Ampache تركيب ، وإنشاء قاعدة بيانات للampache.cfg.php "
-"الملف. قبل المتابعة يرجى التأكد من أن لديك ما يلي الشروط المسبقة"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"وقال خادم MySQL مع اسم المستخدم وكلمة السر التي يمكن أن تخلق / تغيير قواعد "
-"البيانات"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"لقد قرأ الويب الخاص بك للوصول إلى config/ampache.cfg.php.dist/ الملف وملف "
-"sql/ampache.sql/"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"وبمجرد الانتهاء من التأكد من أن لديك الشروط المذكورة أعلاه يرجى ملء "
-"المعلومات أدناه. عليك فقط طلب التهيئة المطلوبة القيم. إذا كنت ترغب في إجراء "
-"تغييرات في تركيب ampache الخاصة بك في وقت لاحق لمجرد تحرير /config/ampache."
-"cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr ""
@@ -2477,7 +2764,7 @@ msgstr ""
msgid "Next"
msgstr "التالي"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
msgid "Limit"
msgstr ""
@@ -2486,27 +2773,28 @@ msgid "Add to Playlist"
msgstr ""
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr ""
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "دفعة تنزيل"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr ""
@@ -2514,29 +2802,27 @@ msgstr ""
msgid "Add Dynamic Items"
msgstr ""
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "عشوائية"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "الملف نمط"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "البوم"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr ""
+#, fuzzy
+msgid "Random Playlist"
+msgstr "قاعدة التشغيل"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "حذف"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2569,15 +2855,15 @@ msgstr ""
msgid "Access Control Entries"
msgstr ""
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr ""
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr ""
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2586,88 +2872,82 @@ msgstr ""
msgid "Level"
msgstr "المستوى"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "نوع"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "العمل"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "تحرير"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "البريد الإلكتروني"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr ""
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "تأكيد كلمة السر"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "إحصائيات واضحة"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr ""
@@ -2786,13 +3066,79 @@ msgid "Gather Album Art"
msgstr ""
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr ""
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr ""
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "خلق تاريخ"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "تيار الوصول"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "وصف"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "نوع البحث"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr ""
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2805,16 +3151,16 @@ msgstr "الصفحة الرئيسية"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "تيار عنوان"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr ""
@@ -2823,11 +3169,6 @@ msgstr ""
msgid "Create a new playlist"
msgstr ""
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr ""
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2852,6 +3193,37 @@ msgstr ""
msgid "Reading"
msgstr ""
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "خلق تاريخ"
+
+#: ../../templates/show_add_share.inc.php:29
+msgid "Shared Object"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "يتدفق"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "تنزيل"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr ""
@@ -2878,17 +3250,22 @@ msgstr ""
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "الاسم الكامل"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "مستوى الوصول للمستخدم"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr ""
@@ -2908,257 +3285,344 @@ msgid "Invalid"
msgstr ""
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr ""
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "الإجراءات"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "الاسم التشغيل"
+msgid "Play last"
+msgstr "التشغيل"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "الاسم التشغيل"
+msgid "Add to temporary playlist"
+msgstr "استيراد قائمة التشغيل"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-msgid "Save Tracks Order"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Do you really want to reset album art?"
msgstr ""
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr ""
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr ""
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Do you really want to update from tags?"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "تنزيل"
-#: ../../templates/show_album_row.inc.php:28
-#, fuzzy
-msgid "Play add album"
-msgstr "الاسم التشغيل"
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
+msgid "Save Tracks Order"
+msgstr ""
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "البوم الفن"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Do you really want to update from tags?"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:132
+#, fuzzy
+msgid "Edit Album"
+msgstr "الألبوم"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+msgid "Add to existing playlist"
+msgstr ""
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "غطاء"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "العلامات"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "لا توجد سجلات"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr ""
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, php-format
-msgid "Show Albums By %s"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "التشغيل"
+msgid "Show all"
+msgstr "وتظهر قائمة التشغيل"
#: ../../templates/show_artist.inc.php:79
-#, php-format
-msgid "Play All Songs By %s"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "وتظهر قائمة التشغيل"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "تشغيل"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "التشغيل"
-#: ../../templates/show_artist.inc.php:85
-#, php-format
-msgid "Play Add All Songs By %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+msgid "Add all to temporary playlist"
msgstr ""
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr ""
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "الفنان والعنوان"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+#, fuzzy
+msgid "Edit Artist"
+msgstr "الفنان"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "وتبين للفنون"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "البوم"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
#, fuzzy
msgid "Similar Artists"
msgstr "الفنانون"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "الفنان والعنوان"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "وقت"
@@ -3172,6 +3636,45 @@ msgstr "لا توجد سجلات"
msgid "Click to close window"
msgstr "انقر لاغلاق النافذة"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr ""
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+#, fuzzy
+msgid "No"
+msgstr "بلا"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "يبدأ"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "لا توجد سجلات"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr ""
@@ -3189,67 +3692,81 @@ msgstr ""
msgid "Update"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "تحقق من الماضي"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "أضف الماضي"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "آخر النظيفة"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "لا توجد سجلات"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "وصف"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "النسخة"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "تفعيل"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "لا توجد سجلات"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "يبدأ"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "تيار عنوان"
+
+#: ../../templates/show_channels.inc.php:41
+msgid "State"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "لا توجد سجلات"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3260,7 +3777,45 @@ msgstr ""
msgid "Checking"
msgstr ""
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "العمل"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "لا توجد سجلات"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "شوهد للمرة الاخيرة"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "وتظهر قائمة التشغيل"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "تواصل"
@@ -3300,87 +3855,86 @@ msgstr ""
msgid "PHP Settings"
msgstr ""
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr ""
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "القيمة"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr ""
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr ""
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr ""
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr ""
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Gettext الدعم"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr ""
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "الأفضلية"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "تحديث Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "النسخة"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Ampache التثبيت"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3402,48 +3956,48 @@ msgstr ""
msgid "Playing from base Playlist"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr ""
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "تم رفض الوصول"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
msgid "This event has been logged."
msgstr ""
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
msgid ""
"You have been redirected to this page because you do not have access to this "
"function."
msgstr ""
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
msgid ""
"You have been redirected to this page because you attempted to access a "
"function that is disabled in the demo."
msgstr ""
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr ""
@@ -3472,15 +4026,16 @@ msgstr ""
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr ""
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr ""
@@ -3577,12 +4132,9 @@ msgid "Created by: %s for %s"
msgstr ""
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr ""
@@ -3594,27 +4146,27 @@ msgstr "تحرير القائمة المستخدم"
msgid "User Properties"
msgstr "مستخدم للعقارات"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "خيارات أخرى"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "التهيئة مسبقا"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Flash"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "منع تجاوز مسبقا"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "وهذا يؤثر على جميع المنظمات غير الادارية للحسابات"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "تحديث المستخدم"
@@ -3660,23 +4212,35 @@ msgstr ""
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "معلومات"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "استيراد الملف من قائمة التشغيل"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "نوع التشغيل"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "استيراد قائمة التشغيل"
@@ -3689,24 +4253,31 @@ msgstr ""
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "النسخة"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "الخطوة 1 -- خلق وإدراج قاعدة بيانات Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "الخطوة 2 -- إنشاء ملف ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "خطوة 3 -- الإعداد الأولي للحساب"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3715,57 +4286,99 @@ msgstr ""
"تخلق هذه الخطوة الاصلية Ampache حساب مشرف. الحساب الإداري الخاص بك مرة واحدة "
"وقد خلقكم ستوجه إلى صفحة تسجيل الدخول"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "إنشاء حساب مشرف"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "إنشاء حساب"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "المتطلبات"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"وتتولى هذه الصفحة من Ampache تركيب ، وإنشاء قاعدة بيانات للampache.cfg.php "
+"الملف. قبل المتابعة يرجى التأكد من أن لديك ما يلي الشروط المسبقة"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"وقال خادم MySQL مع اسم المستخدم وكلمة السر التي يمكن أن تخلق / تغيير قواعد "
+"البيانات"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"لقد قرأ الويب الخاص بك للوصول إلى config/ampache.cfg.php.dist/ الملف وملف "
+"sql/ampache.sql/"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"وبمجرد الانتهاء من التأكد من أن لديك الشروط المذكورة أعلاه يرجى ملء "
+"المعلومات أدناه. عليك فقط طلب التهيئة المطلوبة القيم. إذا كنت ترغب في إجراء "
+"تغييرات في تركيب ampache الخاصة بك في وقت لاحق لمجرد تحرير /config/ampache."
+"cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "تفحص"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "حالة"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "افنص"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, php-format
msgid "%s is readable"
msgstr ""
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "يجد Ampache.cfg.php"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3777,62 +4390,62 @@ msgstr ""
"وتتخذ هذه الخطوات الأساسية والقيم والتهيئة يولد ملف. سوف مطالبتك لتحميل ملف. "
"يرجى وضع تحميل ملف في /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "توليد ملف"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "الشبكة الدرب"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "اسم قاعدة البيانات المطلوبة"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL المضيف"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQL اسم المستخدم"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQL كلمة المرور"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "قراءة وكتابة"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "يجد Ampache.cfg.php"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php مشكل؟"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "شيك التهيئة"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "انتقل الى الخطوة 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3843,57 +4456,57 @@ msgstr ""
"حساب الحقوق وإنشاء قاعدة بيانات. هذه الخطوة قد تستغرق بعض الوقت اعتمادا على "
"سرعة الكمبيوتر"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "تضاف Ampache قاعدة البيانات"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "اسم قاعدة البيانات المطلوبة"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "MySQL الإدارية اسم المستخدم"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "MySQL الإدارية كلمة المرور"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "إنشاء قاعدة بيانات المستخدم لقاعدة البيانات الجديدة"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "قاعدة بيانات Ampache اسم المستخدم"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Ampache قاعدة بيانات المستخدم كلمة السر"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "فوق القائمة"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "استخدام قاعدة البيانات القائمة"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "تضاف قاعدة البيانات"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "اختيار وتركيب اللغة."
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "بدء التهيئة"
@@ -3911,11 +4524,6 @@ msgstr ""
msgid "Show All"
msgstr ""
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr ""
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -3925,12 +4533,12 @@ msgstr ""
msgid "Manage Radio Stations"
msgstr ""
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "الاسم التشغيل"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -3976,48 +4584,48 @@ msgstr ""
msgid "Edit Instance"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr ""
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr ""
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "كلمة السر"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr ""
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr ""
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr ""
@@ -4055,11 +4663,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Ampache التصحيح"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr ""
@@ -4124,6 +4727,7 @@ msgstr "خلق التشغيل الجديدة"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr ""
@@ -4137,34 +4741,18 @@ msgstr ""
msgid "Date Added"
msgstr ""
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "الاسم التشغيل"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-msgid "Play Add Album Preview"
-msgstr ""
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-msgid "Add Album Preview"
-msgstr ""
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "محطات إذاعية"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "البوم"
+msgid "No missing album found"
+msgstr "لا توجد سجلات"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "# أغاني"
@@ -4182,124 +4770,59 @@ msgstr ""
msgid "%s of 5"
msgstr ""
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "تطبيع مسارات"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "تشغيل"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "التشغيل"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "إضافة الكل"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "أضف عشوائية"
+#, fuzzy
+msgid "Create channel"
+msgstr "خلق تاريخ"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
msgid "Do you really want to delete the playlist?"
msgstr ""
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "التشغيل"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "التشغيل"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "نوع التشغيل"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "الاسم التشغيل"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# أغاني"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "مالك"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "وتظهر قائمة التشغيل"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "تشغيل"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "تشغيل"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr ""
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s$1 %s$2 التشغيل"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "النسخة"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr ""
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4307,13 +4830,13 @@ msgstr ""
msgid "Preference Administration"
msgstr ""
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "تنطبق على جميع"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "مستوى الوصول"
@@ -4348,6 +4871,20 @@ msgstr ""
msgid "Unlimited"
msgstr ""
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr ""
@@ -4356,22 +4893,71 @@ msgstr ""
msgid "Enqueue"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:66
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:69
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:72
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:75
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:78
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "سنة"
+msgstr[1] "سنة"
+
+#: ../../templates/show_recently_played.inc.php:84
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "لا توجد سجلات"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "لا توجد سجلات"
@@ -4440,7 +5026,7 @@ msgstr ""
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr ""
@@ -4466,16 +5052,52 @@ msgstr ""
msgid "Add Search Results"
msgstr ""
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "نوع البحث"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "خلق تاريخ"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "تحقق من الماضي"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+msgid "Public Url"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:26
+msgid "Shared on"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "إضافة الكل"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "حفظ التغييرات"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "استيراد قائمة التشغيل"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "استيراد قائمة التشغيل"
@@ -4493,53 +5115,40 @@ msgstr ""
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
msgid "Link"
msgstr ""
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
msgid "Label"
msgstr ""
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
msgid "Song Language"
msgstr ""
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
msgid "Catalog Number"
msgstr ""
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
msgid "Last Updated"
msgstr ""
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
msgid "Lyrics"
msgstr ""
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "تشغيل"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "أغنية المعلومات"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "عنوان الأغنية"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "لا توجد سجلات"
@@ -4560,13 +5169,30 @@ msgstr ""
msgid "Catalog Time"
msgstr ""
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr ""
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr ""
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "عنوان الأغنية"
+
+#: ../../templates/show_tagcloud.inc.php:40
+msgid "Do you really want to delete the tag?"
+msgstr ""
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Ampache التصحيح"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4686,10 +5312,24 @@ msgstr ""
"Ampache للعمل."
#: ../../templates/show_test_table.inc.php:96
+#, fuzzy
+msgid "PHP curl extension"
+msgstr "PHP دعم الدورة"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"هذا الفحص اختبار لمعرفة إذا كان لديك ماي تمديدات تحميلها لPHP. ويلزم لهذه "
+"Ampache للعمل."
+
+#: ../../templates/show_test_table.inc.php:105
msgid "PHP safe mode disabled"
msgstr ""
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4699,31 +5339,31 @@ msgstr ""
"حدود الذاكرة. بينما ليس من المطلوب ، من دون قدرة بعض هذه السمات ampache قد "
"لا تعمل بشكل صحيح"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
msgid "PHP memory limit override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
msgid "PHP execution time override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4733,11 +5373,11 @@ msgstr ""
"ليس في المواقع الصحيحة \n"
"\t أو أنها ليست في الوقت الراهن يمكن قراءتها من خلال خدمة الويب الخاص بك."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
msgid "Configuration file validity"
msgstr ""
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4746,24 +5386,24 @@ msgstr ""
"هذا الاختبار التأكد من أن لديك كل مجموعة من المتغيرات والتهيئة المطلوبة أننا "
"قادرون تماما على تحليل ملف الخاص بك"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "الديسيبل الربط"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
"configuration file."
msgstr "هذه محاولة لربط لقاعدة البيانات باستخدام قيم من حسابك ampache.cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "اسم قاعدة البيانات المطلوبة"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4772,12 +5412,12 @@ msgstr ""
"هذا الفحص بضع الجداول الرئيسية للتأكد من ان كنت قد نجحت في إدراج قاعدة "
"بيانات ampache وأن المستخدم الوصول إلى قاعدة البيانات"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "الشبكة الدرب"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4814,99 +5454,76 @@ msgid "The validation key used isn't correct"
msgstr ""
#: ../../templates/show_userflag.inc.php:23
-msgid "User Flags"
-msgstr ""
+#, fuzzy
+msgid "User Favorites"
+msgstr "مستخدم للعقارات"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "خلق تاريخ"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "شوهد للمرة الاخيرة"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "النشاط"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr ""
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "مستخدم على الشبكة الآن"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "والآن ، دون اتصال المستخدم"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr ""
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr ""
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr ""
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr ""
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
msgid "* Required fields"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr ""
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "الاسم الكامل"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "تاريخ التسجيل"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "آخر للملكية الفكرية"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "على الخط"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr ""
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr ""
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr ""
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -4918,20 +5535,18 @@ msgstr "إحصائيات واضحة"
msgid "Updating the %s catalog"
msgstr ""
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../templates/show_verify_catalog.inc.php:29
msgid "Verified"
msgstr ""
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "تشغيل"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr ""
@@ -4942,7 +5557,7 @@ msgid "No video found"
msgstr "لا توجد سجلات"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
msgid "Wanted List"
msgstr ""
@@ -4983,49 +5598,45 @@ msgstr ""
msgid "Browse"
msgstr "تصفح"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr "الاغنية العنوان"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "اللعب في الوقت الحاضر"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "الواردات"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "المتقدمة"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "أحدث"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "الشعبية"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "صنف"
-#: ../../templates/sidebar_home.inc.php:80
-msgid "My Flags"
-msgstr ""
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "وحدات"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr ""
@@ -5078,7 +5689,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5086,18 +5697,14 @@ msgid ""
"is: %s."
msgstr ""
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+msgid "The following updates need to be performed"
msgstr ""
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr ""
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Ampache التثبيت."
-
#: Database words
msgid "Allow Downloads"
msgstr ""
@@ -5198,14 +5805,67 @@ msgstr ""
msgid "Streaming"
msgstr ""
-#: Database words
-msgid "Interface"
-msgstr ""
-
#: Database words
msgid "System"
msgstr ""
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "الاسم التشغيل"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "الاسم التشغيل"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "الاسم التشغيل"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "التشغيل"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "التشغيل"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "الاسم التشغيل"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "تطبيع مسارات"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "التشغيل"
+
+#~ msgid "Add Random"
+#~ msgstr "أضف عشوائية"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "التشغيل"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "تشغيل"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "تشغيل"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "تشغيل"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "تشغيل"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Ampache التثبيت."
+
#, fuzzy
#~ msgid "Generate Thumbnails"
#~ msgstr "توليد ملف"
@@ -5237,9 +5897,6 @@ msgstr ""
#~ msgid "Callsign"
#~ msgstr "توقيع نداء"
-#~ msgid "Search Disabled Songs"
-#~ msgstr "بحث المعاقين أغاني"
-
#~ msgid "Reject"
#~ msgstr "رفض"
diff --git a/locale/base/gather-messages.sh b/locale/base/gather-messages.sh
index c715e4f5..ba5ea689 100755
--- a/locale/base/gather-messages.sh
+++ b/locale/base/gather-messages.sh
@@ -41,7 +41,7 @@ generate_pot() {
--add-comment=HINT: \
--msgid-bugs-address="translations@ampache.org" \
-L php \
- --keyword=gettext_noop --keyword=T_ --keyword=T_gettext \
+ --keyword=gettext_noop --keyword=T_ --keyword=T_gettext --keyword=T_ngettext --keyword=ngettext\
-o $POTNAME \
$(find ../../ -type f -name \*.php -o -name \*.inc | sort)
if [[ $? -eq 0 ]]; then
diff --git a/locale/base/messages.pot b/locale/base/messages.pot
index 47799764..4f5a7abb 100644
--- a/locale/base/messages.pot
+++ b/locale/base/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-05-05 21:16+0200\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -16,6 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: ../../admin/access.php:40
msgid "Deleted"
@@ -73,10 +74,24 @@ msgstr ""
msgid "Confirm Deletion Request"
msgstr ""
+#: ../../admin/catalog.php:126
+#, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr ""
+#: ../../admin/catalog.php:131
+#, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr ""
@@ -826,7 +841,7 @@ msgid "The Broadcast has been deleted"
msgstr ""
#: ../../browse.php:79 ../../lib/class/browse.class.php:200
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr ""
@@ -958,8 +973,8 @@ msgstr ""
#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:99
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr ""
@@ -970,7 +985,7 @@ msgstr ""
#: ../../lib/class/ampache_rss.class.php:70
#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr ""
@@ -1097,14 +1112,14 @@ msgstr ""
#: ../../templates/show_shout_row.inc.php:31
#: ../../templates/show_smartplaylist_row.inc.php:53
#: ../../templates/show_song_row.inc.php:71
-#: ../../templates/show_tagcloud.inc.php:35
+#: ../../templates/show_tagcloud.inc.php:36
#: ../../templates/show_user_row.inc.php:44
msgid "Edit"
msgstr ""
#: ../../lib/class/broadcast.class.php:149
#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
-#: ../../templates/rightbar.inc.php:120
+#: ../../templates/rightbar.inc.php:117
#: ../../templates/show_access_list.inc.php:76
#: ../../templates/show_catalog_row.inc.php:39
#: ../../templates/show_democratic_playlist.inc.php:92
@@ -1119,7 +1134,7 @@ msgstr ""
#: ../../templates/show_shout_row.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:47
#: ../../templates/show_smartplaylist_row.inc.php:55
-#: ../../templates/show_tagcloud.inc.php:39
+#: ../../templates/show_tagcloud.inc.php:40
#: ../../templates/show_user_row.inc.php:54
msgid "Delete"
msgstr ""
@@ -1143,7 +1158,7 @@ msgstr ""
#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:97
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr ""
@@ -1157,8 +1172,8 @@ msgstr ""
#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:98
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr ""
@@ -1167,13 +1182,13 @@ msgid "Manage Users"
msgstr ""
#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr ""
#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
-#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:37
-#: ../../templates/sidebar_home.inc.php:100
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr ""
@@ -1186,7 +1201,7 @@ msgid "Current Playlist"
msgstr ""
#: ../../lib/class/browse.class.php:187
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../templates/sidebar_home.inc.php:37
msgid "Smart Playlists"
msgstr ""
@@ -1201,8 +1216,8 @@ msgstr ""
#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:44
-#: ../../templates/sidebar_home.inc.php:101
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr ""
@@ -1216,21 +1231,21 @@ msgid "Wanted Albums"
msgstr ""
#: ../../lib/class/browse.class.php:217
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:93
msgid "Shared Objects"
msgstr ""
#: ../../lib/class/browse.class.php:225
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../templates/sidebar_home.inc.php:38
msgid "Channels"
msgstr ""
#: ../../lib/class/browse.class.php:229
-#: ../../templates/sidebar_home.inc.php:41
+#: ../../templates/sidebar_home.inc.php:40
msgid "Broadcasts"
msgstr ""
-#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:127
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr ""
@@ -1242,6 +1257,18 @@ msgstr ""
msgid "Never"
msgstr ""
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
@@ -1250,11 +1277,26 @@ msgstr ""
msgid "No Update Needed"
msgstr ""
+#: ../../lib/class/catalog.class.php:1035
+#, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../lib/class/catalog.class.php:1054
#, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr ""
+#: ../../lib/class/catalog.class.php:1204
+msgid "Failed to create playlist."
+msgstr ""
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
#: ../../lib/class/channel.class.php:154
msgid "Start Channel"
msgstr ""
@@ -1341,22 +1383,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr ""
-#: ../../lib/class/random.class.php:401 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr ""
-
-#: ../../lib/class/random.class.php:404
-msgid "Related Genre"
-msgstr ""
-
-#: ../../lib/class/random.class.php:407 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr ""
-
-#: ../../lib/class/random.class.php:410 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr ""
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1500,7 +1526,7 @@ msgstr ""
#: ../../templates/show_song_previews.inc.php:34
#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:69
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr ""
@@ -1533,7 +1559,7 @@ msgstr ""
#: ../../templates/show_song_previews.inc.php:33
#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
#: ../../templates/show_wanted_albums.inc.php:27
-#: ../../templates/sidebar_home.inc.php:70
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr ""
@@ -1618,7 +1644,7 @@ msgstr ""
#: ../../templates/show_manage_democratic.inc.php:26
#: ../../templates/show_search_bar.inc.php:34
#: ../../templates/sidebar_home.inc.php:49
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr ""
@@ -1724,7 +1750,7 @@ msgid "No updates needed."
msgstr ""
#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:46
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr ""
@@ -2007,7 +2033,7 @@ msgstr ""
#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:95
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr ""
@@ -2046,7 +2072,7 @@ msgid "Browse Music"
msgstr ""
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr ""
@@ -2405,8 +2431,8 @@ msgstr ""
#: ../../templates/show_add_channel.inc.php:76
#: ../../templates/show_channels.inc.php:34
#: ../../templates/show_edit_channel_row.inc.php:52
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr ""
@@ -2423,11 +2449,18 @@ msgstr ""
msgid "Playlist Imported"
msgstr ""
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr ""
-#: ../../playlist.php:158
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr ""
@@ -2565,7 +2598,7 @@ msgid "Invalid Object Selected"
msgstr ""
#: ../../templates/browse_filters.inc.php:30
-#: ../../templates/list_header.inc.php:178
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr ""
@@ -2649,7 +2682,7 @@ msgstr ""
msgid "Log out"
msgstr ""
-#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:84
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
msgid "Favorites"
msgstr ""
@@ -2675,7 +2708,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: ../../templates/list_header.inc.php:187
+#: ../../templates/list_header.inc.php:188
msgid "Limit"
msgstr ""
@@ -2705,7 +2738,7 @@ msgstr ""
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr ""
@@ -2713,11 +2746,23 @@ msgstr ""
msgid "Add Dynamic Items"
msgstr ""
-#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
+#: ../../templates/rightbar.inc.php:60
+msgid "Random Song"
msgstr ""
-#: ../../templates/rightbar.inc.php:123
+#: ../../templates/rightbar.inc.php:63
+msgid "Random Artist"
+msgstr ""
+
+#: ../../templates/rightbar.inc.php:66
+msgid "Random Album"
+msgstr ""
+
+#: ../../templates/rightbar.inc.php:69
+msgid "Random Playlist"
+msgstr ""
+
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -3888,6 +3933,7 @@ msgstr ""
#: ../../templates/show_now_playing_row.inc.php:39
#: ../../templates/show_recently_played.inc.php:30
#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr ""
@@ -4069,7 +4115,7 @@ msgstr ""
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr ""
@@ -4406,27 +4452,27 @@ msgstr ""
msgid "Edit Instance"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr ""
@@ -4682,6 +4728,20 @@ msgstr ""
msgid "Unlimited"
msgstr ""
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr ""
@@ -4700,6 +4760,54 @@ msgstr ""
msgid "Agent"
msgstr ""
+#: ../../templates/show_recently_played.inc.php:63
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:66
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:69
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:72
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:75
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:78
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:81
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:84
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../templates/show_recently_played.inc.php:133
msgid "No recently item found"
msgstr ""
@@ -4915,11 +5023,11 @@ msgstr ""
msgid "Most Popular Artists"
msgstr ""
-#: ../../templates/show_tagcloud.inc.php:34
+#: ../../templates/show_tagcloud.inc.php:35
msgid "Tag edit"
msgstr ""
-#: ../../templates/show_tagcloud.inc.php:39
+#: ../../templates/show_tagcloud.inc.php:40
msgid "Do you really want to delete the tag?"
msgstr ""
@@ -5212,6 +5320,13 @@ msgstr ""
msgid "Updating the %s catalog"
msgstr ""
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../templates/show_verify_catalog.inc.php:29
msgid "Verified"
msgstr ""
@@ -5226,7 +5341,7 @@ msgid "No video found"
msgstr ""
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:87
+#: ../../templates/sidebar_home.inc.php:90
msgid "Wanted List"
msgstr ""
@@ -5267,7 +5382,7 @@ msgstr ""
msgid "Browse"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr ""
@@ -5279,23 +5394,23 @@ msgstr ""
msgid "Import"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:72
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:78
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:79
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:81
+#: ../../templates/sidebar_home.inc.php:84
msgid "Top Rated"
msgstr ""
diff --git a/locale/ca_ES/LC_MESSAGES/messages.mo b/locale/ca_ES/LC_MESSAGES/messages.mo
index fbd01a2e..33d4c2f8 100644
Binary files a/locale/ca_ES/LC_MESSAGES/messages.mo and b/locale/ca_ES/LC_MESSAGES/messages.mo differ
diff --git a/locale/ca_ES/LC_MESSAGES/messages.po b/locale/ca_ES/LC_MESSAGES/messages.po
index 54b5971a..20cc3371 100644
--- a/locale/ca_ES/LC_MESSAGES/messages.po
+++ b/locale/ca_ES/LC_MESSAGES/messages.po
@@ -1,13 +1,13 @@
# translation of Ampache to ca_ES
# Copyright (c) Ampache.org
# This file is distributed under the same license as the Ampache package.
-#
+#
# Guillem Lluch Moll , 2008
msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5.0\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-04-04 14:00+0200\n"
"Last-Translator: Guillem Lluch Moll \n"
"Language-Team: Catalan \n"
@@ -25,7 +25,7 @@ msgstr "Esborrat"
msgid "Your Access List Entry has been removed"
msgstr "La teva llista d'accés ha esta esborrada"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Petició d'esborrar"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Estàs segur que ho vols esborrar permanentment"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Afegit"
@@ -43,7 +43,7 @@ msgstr "Afegit"
msgid "Your new Access Control List(s) have been created"
msgstr "La teva nova llista d'accés ha estat creada"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Actualitzat"
@@ -69,14 +69,29 @@ msgstr "S'ha esborrat el catàleg i tots els seus registres"
msgid "Catalog Delete"
msgstr "Catàleg esborrat"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Confirma la petició d'esborrar"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Cançons esborrades"
+msgstr[1] "Cançons esborrades"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Cap cançó no esborrada"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Cançons desactivades processades"
+msgstr[1] "Cançons desactivades processades"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Catàleg netejat"
@@ -219,116 +234,150 @@ msgstr ""
"La teva base de dades i les seves taules han estat actualitzades per a que "
"coincideixi amb el teu joc de caràcters actual"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Errada cal el nom d'usuari"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Errada les contrasenyes no coincideixen"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Usuari actualitzat"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "actualitzat"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Errada el nom d'usuari ja existeix"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Error: s'ha fallat l'insersió"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Convidat"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Usuari"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Administrador"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Nou usuari afegit"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Usuari permès"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Usuari desactivat"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Error"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Impossible desactivar l'últim administrador"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Usuari esborrat"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr "s'ha creat"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Error esborrant"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Impossible esborrar l'últim usuari administrador"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Estàs segur que ho vols esborrar permanentment"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Usuari esborrat"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Usuari esborrat"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr "s'ha creat"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Generar una configuració nova"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "La llista esmentada s'ha esborrat"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Portada netejada"
@@ -392,91 +441,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Mostra artistes que comencen per"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Guarda la configuració del catàleg"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Catàleg netejat"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Nom del catàleg"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Catàleg actualitzat"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Catàleg creat"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "LLista importada"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Configuració per a %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Llegint"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "S'ha afegit l'estació de ràdio"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Començant a cercar portades"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Catàleg actualitzat"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Esborrar les estadístiques del catàleg"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Catàlegs"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Afegeix un catàleg"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importa una llista de reproducció"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Recollir portades"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Port"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Configuració per a %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Desconegut (orfa)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -594,12 +704,12 @@ msgstr "Error: impossible de aconseguit la mida de %s"
msgid "File Moved..."
msgstr "arxius esborrats"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Creat per %s de %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Usuari activat"
@@ -724,6 +834,18 @@ msgstr "Errada el nom d'usuari ja existeix"
msgid "Error: Unable to copy file to %s"
msgstr "Error: impossible de aconseguit la mida de %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -750,11 +872,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Catàleg esborrat"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Catàleg esborrat"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "La llista esmentada s'ha esborrat"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Núvol d'etiquetes"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Catàleg creat"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Catàleg esborrat"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Catàleg esborrat"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr "s'ha creat"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "La llista esmentada s'ha esborrat"
@@ -844,41 +1005,46 @@ msgstr "Interfície Web"
msgid "Stream Access"
msgstr "Accés Stream"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Desconegut (orfa)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Disc"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artistes"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Varis"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Sonant ara"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -929,169 +1095,305 @@ msgstr "anys"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "No s'ha especificat Usuari/Contrasenya"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Error Handshake invàlid"
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Afegeix a la llista"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Petició invàlida"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Invàlid mitjà o no especificat"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Error: impossible d'obrir"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Actualitza-ho tot"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Servidor"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Guarda els canvis"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Port"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Baixar"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Artista i títol"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Editar"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Borra"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Cançons"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Àlbums"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Gestió d'usuaris"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Estació de ràdio"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "LListes de reproducció"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Cançons de la llista"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "LLista actual"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Importa una llista de reproducció"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Catàlegs"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Registre de Shoutbox"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Vídeos"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "Llista democràtica"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Àlbums relacionats"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Objecte"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Guarda els canvis"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Més"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Mai"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dia"
+msgstr[1] "dies"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hora"
+msgstr[1] "hores"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "No es necessita cap actualització "
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Netetja del catàleg feta"
+msgstr[1] "Netetja del catàleg feta"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Netetja del catàleg feta"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Ha esta impossible crear el nou compte"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Guarda els canvis"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Desconegut"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Aturat"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1102,34 +1404,23 @@ msgid "Primary"
msgstr "Primari"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Administrador de contingut"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Administrador del catàleg"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Aturat"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Pausat"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Desconegut"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1162,22 +1453,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Afegeix al catàleg"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Àlbums relacionats"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Gènere relacionat"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Artistes relacionats"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Aleatòri pur"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1193,7 +1468,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1219,8 +1493,8 @@ msgstr ""
"\n"
"Gràcies pel teu registre\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1228,6 +1502,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"S'ha registrat un usuari nou\n"
@@ -1310,107 +1585,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Títol"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Àlbum"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artista"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Comentari"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Etiqueta"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Nom de l'arxiu"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Any"
@@ -1418,40 +1693,43 @@ msgstr "Any"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Qualificat"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Escoltat"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Bitrate"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Escoltat"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1459,155 +1737,142 @@ msgstr "Catàleg"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "LLista"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Nom de la llista"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Importa una llista de reproducció"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Nom"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Escoltar"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Afegir"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Enviar el post"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "Mostra la lletra"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "No es necessita cap actualització "
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "No hi ha prou dades"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Usuari activat"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Desconegut"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Accepto"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Esborra"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Afegeix a la llista"
@@ -1693,136 +1958,141 @@ msgstr "Jos de caràcters de la BD actualitzats"
msgid "Administrative user creation failed: %s"
msgstr "Usuari activat"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "Error nom d'usuari o contrasenya incorrecta, tornau a provar"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Usuari desactivat per favor contacte amb l'Administrador"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "L'usuari ja ha entrat"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Ha esta impossible crear el nou compte"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Permet"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Desactiva"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "No cap"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Stream"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Democràtic"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Reproducció local"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Reproductor XSPF"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "M3U simple"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Desactivat"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Gestionar"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Afegir enviar a"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Afegir enviar i esborrar a"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Enviar netejar a"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Per defecte"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Sempre"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Decodificant"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1854,7 +2124,8 @@ msgstr "És dolent"
msgid "Off the Charts!"
msgstr "Fora de les llistes!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Inici"
@@ -1870,14 +2141,14 @@ msgstr "Reproduir localment"
msgid "Random Play"
msgstr "Reproduir aleatòriament"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Cerca"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Preferències"
@@ -1911,7 +2182,7 @@ msgid "Browse Music"
msgstr "Mostra la música"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Estadístiques"
@@ -1919,31 +2190,14 @@ msgstr "Estadístiques"
msgid "Add New"
msgstr "Afegeix nou"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Engega"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Atura"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "Error nom d'usuari o contrasenya incorrecta, tornau a provar"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Usuari desactivat per favor contacte amb l'Administrador"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "L'usuari ja ha entrat"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Ha esta impossible crear el nou compte"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1970,11 +2224,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2043,11 +2299,11 @@ msgstr "E-mail"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Contrasenya"
@@ -2114,48 +2370,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Error: impossible canviar de directori"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Error: impossible de aconseguit la mida de %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "ampache no ho pot llegir %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "%s no coincideix amb el joc de caràcters"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "L'arrel del catàleg illegible, aturant la neteja"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2170,13 +2426,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Nom d'usuari"
@@ -2296,20 +2552,20 @@ msgstr "Nom de la màquina"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Port"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Aleatori"
@@ -2326,14 +2582,47 @@ msgstr "s'ha creat"
msgid "Playlist Imported"
msgstr "LLista importada"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "LLista no importada"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "LLista buida esborrada"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registre complert"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Servidor"
@@ -2350,36 +2639,36 @@ msgstr "El teu compte s'ha actualitzat"
msgid "Radio Station Added"
msgstr "S'ha afegit l'estació de ràdio"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Error es necessita el Captcha"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Error s'ha fallat el captcha"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Tu has d'acceptar la licència d'usuari"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "No has estrat cap nom d'usuari"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Per favor entra el teu nom complert (Nom i Cognoms)"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Petició invàlida"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Has d'entrar una contresenya"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Les teves contrasenyes no coincideixen"
@@ -2398,6 +2687,11 @@ msgstr "Cercat"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2406,43 +2700,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Objecte"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Usuari esborrat"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Usuari esborrat"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr "s'ha creat"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Objecte sel-lecionat invàlid"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filtres"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Comença per"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Compta mínim"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Valorat"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Encara sense reproduir"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Totes les llistes"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Títol de la cançó"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2451,94 +2780,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Actualitza Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Depurar Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Petitions:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Hits al cache:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Cancel.la"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Surt"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Cançons preferides"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Errror l'arxiu de configuració ha caducat"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Generar una configuració nova"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Instalació de l'Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Requisits"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Aquesta pàgina s'encarrega de la instal·lació de la base de dades Ampache i "
-"la creació de l'arxiu ampache.cfg.php. Abans de continuar, per favor "
-"asseguri's que té els següents requisits previs "
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Un servidor MySQL amb un nom d'usuari i contrasenya que poden crear i "
-"modificar les bases de dades"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"La teva web té accés de lectura a /sql/ampache.sql i a l'arxiu /config/"
-"ampache.cfg.php.dist "
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Una vegada que t'has assegurat que tens els requisits abans esmentats, per "
-"favor emplena la informació que apareix a continuació. Només se t'ha demanat "
-"els requisits de configuració. Si desitges realitzar canvis posteriors en la "
-"teva instal·lació de l'ampache només has d'editar /config/ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Previ"
@@ -2548,7 +2852,7 @@ msgstr "Previ"
msgid "Next"
msgstr "Següent"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Mida límit"
@@ -2558,27 +2862,28 @@ msgid "Add to Playlist"
msgstr "Afegeix a la llista"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Afegeix a la nova llista"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Agrupar baixada"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Neteja la llista"
@@ -2586,29 +2891,27 @@ msgstr "Neteja la llista"
msgid "Add Dynamic Items"
msgstr "Afegeix ítems dinàmics"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Aleatori"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Artistes relacionats"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Afegeix aleatòriament des de l'àlbum"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Etiquetes relacionades"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Reproduir aleatòriament"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Borra"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2641,15 +2944,15 @@ msgstr "Afegir detalladament"
msgid "Access Control Entries"
msgstr "Control d'accés"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Adreça inicial"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Adreça final"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2658,88 +2961,82 @@ msgstr "Adreça final"
msgid "Level"
msgstr "Nivell"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Tipus"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Acció"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Editar"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nova contrasenya"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Confirma la contrasenya"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Neteja estadístiques"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Actualitza el compte"
@@ -2861,13 +3158,81 @@ msgid "Gather Album Art"
msgstr "Recollir portades"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Crea una lllista de reproducció des d'arxius m3u"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Afegeix al catàleg"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Crear data"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Accés Stream"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Descripció"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+#, fuzzy
+msgid "Interface"
+msgstr "Interfície"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Tipus de cerca"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Crea"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2880,16 +3245,16 @@ msgstr "Pàgina d'inici"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "URL de l'stream"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Codec"
@@ -2898,11 +3263,6 @@ msgstr "Codec"
msgid "Create a new playlist"
msgstr "Crea una llista nova"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Crea"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2927,6 +3287,38 @@ msgstr "Trobat"
msgid "Reading"
msgstr "Llegint"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Crear data"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Objecte"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Permetre streaming"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Permetre baixar"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Posa al Shoutbox"
@@ -2953,17 +3345,22 @@ msgstr "Afegir un nou usuari"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Nom complert"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Nivell d'accés de l'usuari"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Afegir usuari"
@@ -2983,259 +3380,346 @@ msgid "Invalid"
msgstr "Invàlid"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Tria"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Accions"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Reproduir l'àlbum"
+msgid "Play last"
+msgstr "LLista"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Reproduir l'àlbum"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Reproduir l'àlbum"
+msgid "Add to temporary playlist"
+msgstr "Afegeix a la nova llista"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Afegeix àlbum"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Afegeix aleatòriament des de l'àlbum"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Posa l'ordre de les cançons"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Realment vols esborrar aquest catàleg?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Reiniciar portada"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Troba la portada"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Realment vols esborrar aquest catàleg?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Actualitza des de les etiquetes"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Baixar"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Reproduir l'àlbum"
+msgid "Save Tracks Order"
+msgstr "Posa l'ordre de les cançons"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Portades"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Realment vols esborrar aquest catàleg?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Actualitza des de les etiquetes"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Edita l'àlbum"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Afegeix a la nova llista"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Portada"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "Etiquestes"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Senyal"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "No s'han trobat cançons desactivades"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Artistes més populars"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Àlbums més populars"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Els gèneres més populars"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Les cançons més populars"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Els streams més populars"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Les etiquetes més populars"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Carregant..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Mostra totes les cançons de %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Albums de %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "LLista"
+msgid "Show all"
+msgstr "Mostra-ho tot"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Mostra totes les cançons de %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Albums de %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Reproduir l'àlbum"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "LLista"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Mostra totes les cançons de %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Afegeix a la nova llista"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Mostra totes les cançons de %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Afegeix aleatoriament cançons de %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Artista i títol"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Edita l'artista"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Mostra la portada"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Àlbums"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Artistes similars"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Artista i títol"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Temps"
@@ -3249,6 +3733,44 @@ msgstr "No s'han trobat artistes similars"
msgid "Click to close window"
msgstr "Click per tancar la finestra"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Sí"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "No"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Gènere"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Comença"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "No s'han trobat artistes similars"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Verifica"
@@ -3266,67 +3788,82 @@ msgstr "Neteja"
msgid "Update"
msgstr "Actualitza"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Última verificació"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Últim afegit"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "Última neteja"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "No s'han trobat catàlegs"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Descripció"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Versió"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Activa"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "No s'han trobat registres"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Comença per"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "URL de l'stream"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Estat"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "No s'han trobat catàlegs"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3337,7 +3874,45 @@ msgstr "Netetgant el catàleg %s"
msgid "Checking"
msgstr "Comprovant"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Data"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Acció"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "No s'han trobat cançons desactivades"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Última vegada vist"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "No s'han trobat artistes similars"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Continua"
@@ -3377,87 +3952,86 @@ msgstr "Estableix el joc de caràcters"
msgid "PHP Settings"
msgstr "Configuració PHP"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Opcions"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Valor"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Límit de memòria"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Temps d'execució màxim"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Sobreescriu el temps d'execució"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Fallat"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Aconseguit"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Mode segur"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Suport Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Suport GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Suport Iconv"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Suport gettext"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Configuració actual"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Preferència"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Actualitza Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Versió"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Instalació de l'Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3479,31 +4053,31 @@ msgstr "Escolta una llista democràtica"
msgid "Playing from base Playlist"
msgstr "Escoltant de la llista base"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Vots"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Borra el vot"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Afegeix un vot"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Accés denegat"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Aquest esdeveniment s'ha registat"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3512,14 +4086,14 @@ msgstr ""
"Has estat redireccionat a aquesta pàgina perquè no tens accés a aquesta "
"funció."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"Si creus que això és un error, si us plau poseu-vos en contacte amb un "
"administrador de l'Ampache"
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3528,8 +4102,8 @@ msgstr ""
"Has estat redireccionat a aquesta pàgina perquè has tractat d'accedir a una "
"funció desactivada en la demo."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Temps afegit"
@@ -3558,15 +4132,16 @@ msgstr "Cançons repetides"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Cançó"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Longitud"
@@ -3664,12 +4239,9 @@ msgid "Created by: %s for %s"
msgstr "Creat per %s de %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Peça"
@@ -3681,27 +4253,27 @@ msgstr "Editant l'usuari existent"
msgid "User Properties"
msgstr "Propietats de l'usuari"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "Altres opcions"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Configuració per defecte"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Flash"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Evitar la sobreescritura de la configuració per defecte"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Afectarà tots el comptes no administratius"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Actualitza l'usuari"
@@ -3747,23 +4319,35 @@ msgstr "Aconsegueix la portada"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Informació"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Important un llista des d'un fitxer"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Tipus de llista"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importa una llista de reproducció"
@@ -3776,24 +4360,31 @@ msgstr "Àlbums del moment"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Versió"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Pas 1 - Crear i inserir la base de dades de l'ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Pas 2 - Creant l'arxiu ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Pas 3 - Establir el compte inicial"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3802,57 +4393,100 @@ msgstr ""
"Aquests passos generen el teu compte administratiu inicial per l'ampache. "
"Despré de crear-lo seràs dirigit a la pagina d'entrada"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Crea compte d'administració"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Crear un compte"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Requisits"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Aquesta pàgina s'encarrega de la instal·lació de la base de dades Ampache i "
+"la creació de l'arxiu ampache.cfg.php. Abans de continuar, per favor "
+"asseguri's que té els següents requisits previs "
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Un servidor MySQL amb un nom d'usuari i contrasenya que poden crear i "
+"modificar les bases de dades"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"La teva web té accés de lectura a /sql/ampache.sql i a l'arxiu /config/"
+"ampache.cfg.php.dist "
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Una vegada que t'has assegurat que tens els requisits abans esmentats, per "
+"favor emplena la informació que apareix a continuació. Només se t'ha demanat "
+"els requisits de configuració. Si desitges realitzar canvis posteriors en la "
+"teva instal·lació de l'ampache només has d'editar /config/ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "COMPROVA"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "ESTAT"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "DESCRIPCIÓ"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "ampache no ho pot llegir %s"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ja existeix Ampache.cfg.php"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3865,62 +4499,62 @@ msgstr ""
"configuració. Se te demanarà que descarreguis l'arxiu de configuració. Per "
"favor, posar el fitxerde configuració a / config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Genera l'arxiu de configuració"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Ruta del web"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Nom desitjat per la base de dades"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL hostname"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Usuari de MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Contrasenya de MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "LLegir/Escriure"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ja existeix Ampache.cfg.php"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Està configurat Ampache.cfg.php?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Comprova la configuració"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Ves al pas 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3931,57 +4565,57 @@ msgstr ""
"la base de dades Mysql amb els drets de creació. Aquest pas pot dur un temps "
"depenent de la velocitat de la seva computadora"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Inserix la BD de l'ampache"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Nom desitjat per la base de dades"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Nom d'usuari administrador de Mysql"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Contrasenya de l'administrador de Mysql"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Crea un usuari de la nova base de dades"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Nom d'usuari de la base de dades de l'Ampache "
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Contrasenya de l'usuari de la base de dades de l'Ampache"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Sobreescriure"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Emprar una BD existent"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Inserir base de dades"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Tria la llengua d'instal.lació"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Comença la configuració"
@@ -3999,11 +4633,6 @@ msgstr "Mostra unics"
msgid "Show All"
msgstr "Mostra-ho tot"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Data"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4013,12 +4642,12 @@ msgstr "Adreça IP"
msgid "Manage Radio Stations"
msgstr "Gestiona les estacions de ràdio"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Nom de la llista"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4064,48 +4693,48 @@ msgstr "Mostra instàncies de reproducció local"
msgid "Edit Instance"
msgstr "Edita la instància"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Control de reproducció local"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Mute"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Baixa el volum"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Puja el volum"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Volum"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Repeteix"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Recorda'm"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Contrasenya"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Entrada"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registre"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Missatge del dia"
@@ -4144,11 +4773,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Depurar Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Assumpte"
@@ -4213,6 +4837,7 @@ msgstr "Crea una nova llista"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Objecte"
@@ -4226,36 +4851,18 @@ msgstr "Adhesives"
msgid "Date Added"
msgstr "Data afegida"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Reproduir l'àlbum"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Reproduir l'àlbum"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Afegeix àlbum"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Opcions avançades"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Àlbums"
+msgid "No missing album found"
+msgstr "No s'han trobat cançons desactivades"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Artistes similars"
@@ -4273,125 +4880,60 @@ msgstr "encara no valorat"
msgid "%s of 5"
msgstr "%s de 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normalitza les cançons"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Reproduir l'àlbum"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "LLista"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Afegeix a tot"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Afegeix aleatòriament"
+#, fuzzy
+msgid "Create channel"
+msgstr "Crear data"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Realment vols esborrar aquest catàleg?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "LLista"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "LLista"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Mètode de llista"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Nom de la llista"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# Cançons"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Propietari"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "No s'han trobat artistes similars"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Cançons de la llista"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Cançons de la llista"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Gènere"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "Llista %s %s"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Versió"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Desactivar"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4399,13 +4941,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Preferència administrativa"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Aplica a tot"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Nivell d'accés"
@@ -4440,6 +4982,20 @@ msgstr "Ítems contats"
msgid "Unlimited"
msgstr "Sense límit"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minut"
+msgstr[1] "%d minuts"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d hora"
+msgstr[1] "%d hores"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Mida límit"
@@ -4448,22 +5004,78 @@ msgstr "Mida límit"
msgid "Enqueue"
msgstr "Posa a la cua"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Últim escoltat"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "segons"
+msgstr[1] "segons"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "minuts"
+msgstr[1] "minuts"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "hores"
+msgstr[1] "hores"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "dies"
+msgstr[1] "dies"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "semanes"
+msgstr[1] "semanes"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "mesos"
+msgstr[1] "mesos"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "anys"
+msgstr[1] "anys"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "segons"
+msgstr[1] "segons"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "No s'han trobat cançons desactivades"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "No s'han trobat artistes similars"
@@ -4537,7 +5149,7 @@ msgstr "Afegir regla"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Cerca avançada"
@@ -4563,16 +5175,54 @@ msgstr "Opcions"
msgid "Add Search Results"
msgstr "Afegeix els resultats de la cerca"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Objecte"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Crear data"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Última verificació"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Públic"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Afegir enviar a"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Afegeix a tot"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Guarda els canvis"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Importa una llista de reproducció"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "No s'han trobat artistes similars"
@@ -4590,59 +5240,46 @@ msgstr "Detalls"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Semblant a"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Nivell"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Llengua"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Nom del catàleg"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Senyals actualitzats"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "LLetres %s"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Cançons de la llista"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Informació de la cançó"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Títol de la cançó"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "No s'han trobat cançons desactivades"
@@ -4663,13 +5300,31 @@ msgstr "Mida del catàleg"
msgid "Catalog Time"
msgstr "Temps del catàleg"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Àlbums més populars"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Artistes més populars"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Títol de la cançó"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Realment vols esborrar aquest catàleg?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Depurar Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4791,10 +5446,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Sessió de PHP suportada"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Aquest test mira si tens la extensió de Mysql carregada per PHP. És "
+"necessari perque l'Ampache funcioni"
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Mode segur"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4805,33 +5474,33 @@ msgstr ""
"imprescindible, sense aquestes habilitats algunes funcions de l'ampache tal "
"vegada no aniran bé"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Límit de memòria"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Temps d'execució màxim"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4841,12 +5510,12 @@ msgstr ""
"no és al lloc correcte o\n"
"\tit no és pot llegir pel teu servidor web"
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Configura la llista de reproducció democràtica"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4855,12 +5524,12 @@ msgstr ""
"Aquest test assegura que tens totes les variable necessàries de configuració "
"i que es pot tractar completament el teu fixter de configuració "
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Jos de caràcters de la BD actualitzats"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4869,12 +5538,12 @@ msgstr ""
"Això intenta connectar a la teva base de dates usant els valors del teu "
"ampache.cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Nom desitjat per la base de dades"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4883,12 +5552,12 @@ msgstr ""
"Comprova algunes taules clau per assegurar-se que vostè potinserir la base "
"de dades de l'ampache i que l'usuari té accés a la base de dades"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Ruta del web"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4926,100 +5595,76 @@ msgstr "La clau de validació no és correcta"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Eines d'usuari"
+msgid "User Favorites"
+msgstr "Propietats de l'usuari"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Crear data"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Última vegada vist"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Activitat"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Estat"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "L'usuari és en línea ara"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "L'usuari és fora de línia ara"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Llista activa"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Artistes recomanats"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Àlbums recomanats"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Cançons recomanades"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "LLicència d'usuari"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Accepto"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Informació de l'usuari"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Necessari"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registra usuari"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Nom sencer"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Data del registre"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Últim IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "En línia"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Artistes preferits"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Àlbums preferits"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Cançons preferides"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5031,21 +5676,19 @@ msgstr "Catàlegs"
msgid "Updating the %s catalog"
msgstr "Actualitzant el cataleg %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d cançó trobada, comprovant la informació dels tags"
+msgstr[1] "%d cançons trobades, comprovant la informació dels tags"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Verificat"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Cançons de la llista"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Resolució"
@@ -5056,7 +5699,7 @@ msgid "No video found"
msgstr "No s'han trobat registres"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Artistes relacionats"
@@ -5098,51 +5741,46 @@ msgstr "Configuració del servidor"
msgid "Browse"
msgstr "Mostra"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Títol de la cançó"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Actualment reproduint"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Importa"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Avançat"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "El més nou"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Popular"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Valorat"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Senyal"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Mòduls"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Sortir"
@@ -5195,7 +5833,7 @@ msgstr "Gestiona la llista"
msgid "Account"
msgstr "Compte"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5206,19 +5844,15 @@ msgstr ""
"Ampache des de3.3.3.5. D'acord amb la nostra base de dades "
"la teva versióés: %s."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "s'han de fer les segúent actualitzacions"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Actualitza ara!"
-#: ../../update.php:71
-#, fuzzy
-msgid "Ampache Installation."
-msgstr "Instalació de l'Ampache"
-
#: Database words
msgid "Allow Downloads"
msgstr "Permetre baixar"
@@ -5321,15 +5955,155 @@ msgstr "Usuari a la peça"
msgid "Streaming"
msgstr "Streaming"
-#: Database words
-#, fuzzy
-msgid "Interface"
-msgstr "Interfície"
-
#: Database words
msgid "System"
msgstr "Sistema"
+#~ msgid "Related Album"
+#~ msgstr "Àlbums relacionats"
+
+#~ msgid "Related Genre"
+#~ msgstr "Gènere relacionat"
+
+#~ msgid "Pure Random"
+#~ msgstr "Aleatòri pur"
+
+#~ msgid "Related Tag"
+#~ msgstr "Etiquetes relacionades"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Reproduir l'àlbum"
+
+#~ msgid "Play Album"
+#~ msgstr "Reproduir l'àlbum"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Reproduir l'àlbum"
+
+#~ msgid "Add Album"
+#~ msgstr "Afegeix àlbum"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Reproduir l'àlbum"
+
+#~ msgid "Flag"
+#~ msgstr "Senyal"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Els gèneres més populars"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Les cançons més populars"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Els streams més populars"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Les etiquetes més populars"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Mostra totes les cançons de %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "LLista"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Mostra totes les cançons de %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "LLista"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Mostra totes les cançons de %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Mostra totes les cançons de %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Afegeix aleatoriament cançons de %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Tipus de llista"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Reproduir l'àlbum"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Reproduir l'àlbum"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Afegeix àlbum"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normalitza les cançons"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "LLista"
+
+#~ msgid "Add Random"
+#~ msgstr "Afegeix aleatòriament"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "LLista"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Cançons de la llista"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Cançons de la llista"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Cançons de la llista"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Eines d'usuari"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Artistes recomanats"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Àlbums recomanats"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Cançons recomanades"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Artistes preferits"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Àlbums preferits"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Cançons de la llista"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Senyal"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "s'han de fer les segúent actualitzacions"
+
+#, fuzzy
+#~ msgid "Ampache Installation."
+#~ msgstr "Instalació de l'Ampache"
+
#~ msgid "Make Sticky"
#~ msgstr "Fer adhesives"
@@ -5502,18 +6276,12 @@ msgstr "Sistema"
#~ msgid "Search Disabled Songs"
#~ msgstr "Cerca cançons desactivades"
-#~ msgid "Edit Album"
-#~ msgstr "Edita l'àlbum"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Assenyala per a revisar-ne les etiquetes"
#~ msgid "Update Album"
#~ msgstr "Actualitza l'Àlbum"
-#~ msgid "Edit Artist"
-#~ msgstr "Edita l'artista"
-
#~ msgid "Update Artist"
#~ msgstr "Actualitza l'artista"
@@ -5658,16 +6426,6 @@ msgstr "Sistema"
#~ msgid "DB Inserted"
#~ msgstr "BD inserida"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "dia"
-#~ msgstr[1] "dies"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "hora"
-#~ msgstr[1] "hores"
-
#, fuzzy
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
@@ -5689,12 +6447,6 @@ msgstr "Sistema"
#~ msgid "images synchronized: "
#~ msgstr "imatges sincronitzades: "
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Netetja del catàleg feta"
-#~ msgstr[1] "Netetja del catàleg feta"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5744,21 +6496,6 @@ msgstr "Sistema"
#~ "Hi ha funcions desactivades a la demo perquè usuaris anteriors "
#~ "hanutilitza funcionalitats per enviar materials inapropiats"
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d cançó trobada, comprovant la informació dels tags"
-#~ msgstr[1] "%d cançons trobades, comprovant la informació dels tags"
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minut"
-#~ msgstr[1] "%d minuts"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d hora"
-#~ msgstr[1] "%d hores"
-
#~ msgid "file"
#~ msgstr "arxiu"
@@ -5785,18 +6522,6 @@ msgstr "Sistema"
#~ "S'ha produït un problema amb la pujada d'arxius: només el %s s'ha "
#~ "carregat."
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Cançons esborrades"
-#~ msgstr[1] "Cançons esborrades"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Cançons desactivades processades"
-#~ msgstr[1] "Cançons desactivades processades"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "No s'han trobat registres"
@@ -5828,12 +6553,6 @@ msgstr "Sistema"
#~ msgid "Keywords"
#~ msgstr "Sílabes"
-#~ msgid "Yes"
-#~ msgstr "Sí"
-
-#~ msgid "No"
-#~ msgstr "No"
-
#~ msgid "Min Bitrate"
#~ msgstr "Bitrate mínim"
diff --git a/locale/cs_CZ/LC_MESSAGES/messages.mo b/locale/cs_CZ/LC_MESSAGES/messages.mo
index 7c0e7b8c..d4c6b139 100644
Binary files a/locale/cs_CZ/LC_MESSAGES/messages.mo and b/locale/cs_CZ/LC_MESSAGES/messages.mo differ
diff --git a/locale/cs_CZ/LC_MESSAGES/messages.po b/locale/cs_CZ/LC_MESSAGES/messages.po
index a4affb23..833c252a 100644
--- a/locale/cs_CZ/LC_MESSAGES/messages.po
+++ b/locale/cs_CZ/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the Ampache package.
# Martin Hasoň , 2009.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5.0\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-05-05 17:43+0200\n"
"Last-Translator: Martin Hasoň \n"
"Language-Team: Czech\n"
@@ -25,7 +25,7 @@ msgstr "Smazáno"
msgid "Your Access List Entry has been removed"
msgstr "Seznam přístupů byl odstraněn"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Žádost o odstranění"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Opravdu to chcete trvale smazat"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Přidáno"
@@ -43,7 +43,7 @@ msgstr "Přidáno"
msgid "Your new Access Control List(s) have been created"
msgstr "Nový seznam přístupů byl vytvořen"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Aktualizováno"
@@ -69,14 +69,31 @@ msgstr "Katalog a všechny přidružené záznamy byly smazány"
msgid "Catalog Delete"
msgstr "Smazat katalog"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Potvrdit požadavek na odstranění"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Skladby odstraněny"
+msgstr[1] "Skladby odstraněny"
+msgstr[2] "Skladby odstraněny"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Žádná skladba nebyla odstraněna"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Zakázání skladeb zpracováno"
+msgstr[1] "Zakázání skladeb zpracováno"
+msgstr[2] "Zakázání skladeb zpracováno"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Katalog byl vyčištěn"
@@ -219,116 +236,150 @@ msgstr ""
"Vaše databáze a související tabulky byly aktualizovány v souladu s aktuálně "
"nastaveným kódováním"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Chyba: Vyžadována uživatelské jméno"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Chyba: Heslo není správné"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Uživatel byl aktualizován"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "aktualizováno"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Chyba: Stejné uživatelské jméno již existuje"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Chyba: Přidání se nepodařilo"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Návštěvník"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Uživatel"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Administrátor"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Přidat nového uživatele"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Uživatel povolen"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Uživatel zakázán"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Chyba"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Nelze zakázat poslední administrátorský účet"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Uživatel byl smazán"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " byl vytvořen"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Chyba při odstraňování"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Nelze odstranit poslední administrátorský účet"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Opravdu to chcete trvale smazat"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Uživatel byl smazán"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Uživatel byl smazán"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " byl vytvořen"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Vytvořit nové nastavení"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "Požadovaný seznam skladeb byl smazán"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Obal byl smazán"
@@ -391,91 +442,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Zobrazit umělce začínající na"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Uložit nastavení katalogu"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Katalog byl vyčištěn"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Název katalogu"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Katalog byl aktualizován"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Katalog byl vytvořen"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Seznam skladeb byl načten"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Nastavení pro %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Čtení"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Internetové rádio bylo přidáno"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Vyhledat obal"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Katalog byl aktualizován"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Vyčistit statistiky katalogu"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Katalogy"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Přidat katalog"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Načíst seznam skladeb"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Získat obaly"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Port"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Nastavení pro %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Neznámý (chybí)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -593,12 +705,12 @@ msgstr "Chyba: Nemohu zjistit velikost souboru %s"
msgid "File Moved..."
msgstr "soubory odstraněny"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Vytvořil %s pro %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Uživatel byl aktivován"
@@ -723,6 +835,18 @@ msgstr "Chyba: Stejné uživatelské jméno již existuje"
msgid "Error: Unable to copy file to %s"
msgstr "Chyba: Nemohu zjistit velikost souboru %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -749,11 +873,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Smazat katalog"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Katalog byl smazán"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "Požadovaný seznam skladeb byl smazán"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Oblak žánrů"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Katalog byl vytvořen"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Smazat katalog"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Katalog byl smazán"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " byl vytvořen"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "Požadovaný seznam skladeb byl smazán"
@@ -844,41 +1007,46 @@ msgstr "Webové rozhraní"
msgid "Stream Access"
msgstr "Oprávnění k síťovému vysílání (stream)"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Neznámý (chybí)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Disk"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Umělci"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Různé"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Nyní hraje"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -929,169 +1097,308 @@ msgstr "roky"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Není uvedeno přihlašovací jméno / heslo"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Chyba: Neplatná komunikace"
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Přidat do seznamu skladeb"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Neplatný požadavek"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Multimediální objekt je neplatný nebo není definován"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Chyba: Nemohu otevřít"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Aktualizovat vše"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Server"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Uložit změny"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Port"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Stáhnout"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Umělec a název"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Upravit"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Odstranit"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Skladby"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Alba"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Spravovat uživatele"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Internetová rádia"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Seznamy skladeb"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Písně v seznamu skladeb"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Aktuální seznam skladeb"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Načíst seznam skladeb"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Katalogy"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Záznamy na chatu"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Videa"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "Seznam skladeb veřejného vysílání"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Podobná alba"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Objekt"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Uložit změny"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Více"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Nikdy"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "den"
+msgstr[1] "dny"
+msgstr[2] "dnů"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hodina"
+msgstr[1] "hodiny"
+msgstr[2] "hodin"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Aktualizace není nutná"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Čištění katalogu je dokončeno"
+msgstr[1] "Čištění katalogu je dokončeno"
+msgstr[2] "Čištění katalogu je dokončeno"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Čištění katalogu je dokončeno"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Nelze vytvořit nový účet"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Uložit změny"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Neznámý"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Zastaveno"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1102,34 +1409,23 @@ msgid "Primary"
msgstr "Základní"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Správce obsahu"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Správce katalogů"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Zastaveno"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Pozastavené"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Neznámý"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1162,22 +1458,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Přidat katalog"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Podobná alba"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Podobný žánr"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Podobný umělec"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Přidat naprosto náhodně"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1193,7 +1473,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1214,8 +1493,8 @@ msgstr ""
"\n"
"Děkujeme za vaši registraci\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1223,6 +1502,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"Nový uživatel byl registroán\n"
@@ -1305,107 +1585,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Název"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Umělec"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Komentář"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Žánr"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Soubor"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Rok"
@@ -1413,40 +1693,43 @@ msgstr "Rok"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Hodnocení"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Přehráno"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Datový tok"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Přehráno"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1454,155 +1737,142 @@ msgstr "Katalog"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Seznam skladeb"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Název seznamu skladeb"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Načíst seznam skladeb"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Jméno"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Přehrát"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Přidat do seznamu skladeb"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Přidat komentář"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "Zobrazit texty"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Aktualizace není nutná"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Není dostatek dat"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Uživatel byl aktivován"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Neznámý"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Přijmout"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Odstranit"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Přidat do seznamu skladeb"
@@ -1685,136 +1955,142 @@ msgstr "Kódování databáze bylo aktualizováno"
msgid "Administrative user creation failed: %s"
msgstr "Uživatel byl aktivován"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+"Chyba: Uživatelské jméno nebo heslo je neplatné. Zkuste to prosím znovu."
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Uživatel je zakázaný. Kontaktujte prosím administrátora."
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Uživatel je již přihlášen"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Nelze vytvořit nový účet"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Povolit"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Zakázat"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Nic"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Síťové vysílání"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Veřejné vysílání"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Místní přehrávání"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Přehrávač XSPF"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Jednoduché M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Zakázáno"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Správce"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Poslat po přidání"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Poslat a smazat po přidání"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Smazat po odeslání"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Výchozí"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Vždy"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Dekódování"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1846,7 +2122,8 @@ msgstr "Úžasné"
msgid "Off the Charts!"
msgstr "Ohodnotit!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Domů"
@@ -1862,14 +2139,14 @@ msgstr "Místní přehrávání"
msgid "Random Play"
msgstr "Náhodné přehrávání"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Hledat"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Nastavení"
@@ -1903,7 +2180,7 @@ msgid "Browse Music"
msgstr "Prohlížet hudbu"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statistiky"
@@ -1911,32 +2188,14 @@ msgstr "Statistiky"
msgid "Add New"
msgstr "Přidat nový"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Zapnuto"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Vypnuto"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-"Chyba: Uživatelské jméno nebo heslo je neplatné. Zkuste to prosím znovu."
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Uživatel je zakázaný. Kontaktujte prosím administrátora."
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Uživatel je již přihlášen"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Nelze vytvořit nový účet"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1963,11 +2222,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2036,11 +2297,11 @@ msgstr "E-mail"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Heslo"
@@ -2107,48 +2368,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Chyba: Nelze změnit adresář"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Chyba: Nemohu zjistit velikost souboru %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "ampache nemůže přečíst %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "znaková sada %s je odlišná od znakové sady webu"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Kořenový adresář katalogu je nečitelný, zastavte čištění"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2163,13 +2424,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Uživatelské jméno"
@@ -2289,20 +2550,20 @@ msgstr "Jméno počítače"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Port"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Přidat v náhodném pořadí"
@@ -2319,14 +2580,48 @@ msgstr " byl vytvořen"
msgid "Playlist Imported"
msgstr "Seznam skladeb byl načten"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "Seznam skladeb nebyl načten"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Prázdný seznam skladeb byl smazán"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registrace dokončena"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Server"
@@ -2343,36 +2638,36 @@ msgstr "Váš účet byl aktualizován"
msgid "Radio Station Added"
msgstr "Internetové rádio bylo přidáno"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Chyba: Vyžadovaná captcha"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Chyba: Neúspěšné ověření captcha"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Musíte akceptovat licenční ujednání"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Nezadali jste své uživatelské jméno"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Vyplňte prosím Vaše jméno a příjmení"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Neplatný požadavek"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Musíte zadat heslo"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Vaše hesla se neshodují"
@@ -2391,6 +2686,11 @@ msgstr "Nalezeno"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2399,43 +2699,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Objekt"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Uživatel byl smazán"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Uživatel byl smazán"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " byl vytvořen"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Byl vybrán neplatný objekt"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filtry"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Začíná na"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Minimální počet"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Hodnoceno"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Dosud nepřehráno"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Všechny seznamy skladeb"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Skladba"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2444,93 +2779,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Aktualizace Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Ladění Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Dotazy:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Záznamů ve vyrovnávací paměti:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Zrušit"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Odhlásit"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Oblíbené písně"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Chyba: Konfigurační soubor je zastaralý"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Vytvořit nové nastavení"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Instalace Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Požadavky"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Tato stránka slouží k instalaci databáze Ampache a k vytvoření souboru "
-"ampache.cfg.php. Napřed však prosím zkontrolujte, zda váš server splňuje "
-"následující požadavky"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"MySQL server s přihlašovacím jménem a heslem může vytvářet/upravovat "
-"databáze."
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Váš webový server má přístup je čtení souborů sql/ampache.sql file a /config/"
-"ampache.cfg.php.dist"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Jakmile budou splněny všechny výše uvedené požadavky, vyplňte prosím níže "
-"uvedené informace, které slouží k nastavení Ampache. Pokud budete chtít v "
-"budoucnu změnit tato nastavení, upravte soubor /config/ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Předchozí"
@@ -2540,7 +2851,7 @@ msgstr "Předchozí"
msgid "Next"
msgstr "Další"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Velikost"
@@ -2550,27 +2861,28 @@ msgid "Add to Playlist"
msgstr "Přidat do seznamu skladeb"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Přidat do nového seznamu skladeb"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Hromadné stažení"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Vyčistit seznam skladeb"
@@ -2578,29 +2890,27 @@ msgstr "Vyčistit seznam skladeb"
msgid "Add Dynamic Items"
msgstr "Přidat položky dynamicky"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Přidat v náhodném pořadí"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Podobný umělec"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Přidat písně z alba v náhodném pořadí"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Podobný žánr"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Náhodné přehrávání"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Odstranit"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2633,15 +2943,15 @@ msgstr "Pokročilé přidání"
msgid "Access Control Entries"
msgstr "Záznamy o přístupech"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Počáteční adresa"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Koncová adresa"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2650,88 +2960,82 @@ msgstr "Koncová adresa"
msgid "Level"
msgstr "Úroveň"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Typ"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Akce"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Upravit"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nové heslo"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Potvrzení hesla"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Vyčistit statistiky"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Aktualizovat účet"
@@ -2853,13 +3157,80 @@ msgid "Gather Album Art"
msgstr "Shromáždi obaly alb"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Vytvořit seznam skladeb ze souboru m3u"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Přidat katalog"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Datum vytvoření"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Oprávnění k síťovému vysílání (stream)"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Popis"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Rozhraní"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Typ vyhledávání"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Vytvořit"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2872,16 +3243,16 @@ msgstr "Hlavní stránka"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "URL síťového vysílání"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Kodek"
@@ -2890,11 +3261,6 @@ msgstr "Kodek"
msgid "Create a new playlist"
msgstr "Vytvořit nový seznam skladeb"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Vytvořit"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2919,6 +3285,38 @@ msgstr "Nalezeno"
msgid "Reading"
msgstr "Čtení"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Datum vytvoření"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Objekt"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Povolit vysílání po síti"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Povolit stahování"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Poslat zprávu na chat"
@@ -2945,17 +3343,22 @@ msgstr "Přidat nového uživatele"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Jméno"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Stupeň přístupových práv"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Přidat uživatele"
@@ -2975,259 +3378,346 @@ msgid "Invalid"
msgstr "Chybné"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Vybrat"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Akce"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Přehrát album"
+msgid "Play last"
+msgstr "Seznam skladeb"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Přehrát album"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Přehrát album"
+msgid "Add to temporary playlist"
+msgstr "Přidat do nového seznamu skladeb"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Přidat album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Přidat písně z alba v náhodném pořadí"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Nastavit počet skladeb"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Opravdu chcete smazat tento katalog?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Odstranit obaly"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Hledat obal"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Opravdu chcete smazat tento katalog?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Aktualizovat z tagů"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Stáhnout"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Přehrát album"
+msgid "Save Tracks Order"
+msgstr "Nastavit počet skladeb"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Obal alba"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Opravdu chcete smazat tento katalog?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Aktualizovat z tagů"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Upravit album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Přidat do nového seznamu skladeb"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Obal"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "Žánry"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Hlášení"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Nebyly nalezeny žádné zakázané skladby"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Nejoblíbenější umělci"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Nejoblíbenější alba"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Nejoblíbenější žánry"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Nejoblíbenější písně"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Nejoblíbenější síťová vysílání"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Nejoblíbenější tagy"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Načítám..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Zobrazit všechny písně od %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Alba od %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Seznam skladeb"
+msgid "Show all"
+msgstr "Zobrazit vše"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Přidat všechny písně od %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Alba od %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Přehrát album"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Seznam skladeb"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Přidat všechny písně od %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Přidat do nového seznamu skladeb"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Přidat všechny písně od %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Přidat písně v náhodném pořadí od %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Umělec a název"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Upravit umělce"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Zobrazit obal"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Alba"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Podobní umělci"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Umělec a název"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Čas"
@@ -3241,6 +3731,44 @@ msgstr "Žádný podobný umělec nebyl nalezen"
msgid "Click to close window"
msgstr "Klikněte pro zavření okna"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Ano"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Ne"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Žánr"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Start"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Žádný podobný umělec nebyl nalezen"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Zkontrolovat"
@@ -3258,67 +3786,82 @@ msgstr "Vyčistit"
msgid "Update"
msgstr "Aktualizovat"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Naposledy zkontrolované"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Naposledy přidané"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "Naposledy vyčištěné"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Žádný katalog nenalezen"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Popis"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Verze"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Aktivovat"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Nenalezeny žádné záznamy"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Začíná na"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "URL síťového vysílání"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Statut"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Žádný katalog nenalezen"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3329,7 +3872,45 @@ msgstr "Čištění katalogu %s"
msgid "Checking"
msgstr "Kontrola"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Datum"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Akce"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Nebyly nalezeny žádné zakázané skladby"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Naposledy přihlášen"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Žádný podobný umělec nebyl nalezen"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Pokračovat"
@@ -3369,87 +3950,86 @@ msgstr "Nastavit kódování databáze"
msgid "PHP Settings"
msgstr "PHP nastavení"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Nastavení"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Hodnota"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Limit paměti"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Maximální doba provádění skriptu"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Přepsat čas vykonávání"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Selhalo"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Úspěch"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Safe mode"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Podpora Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Podpora GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Podpora Iconv"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Podpora Gettect"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Aktuální nastavení"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Nastavení"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Aktualizace Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Verze"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Instalace Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3471,31 +4051,31 @@ msgstr "Přehrát skladby ze seznamu pro veřejné vysílání"
msgid "Playing from base Playlist"
msgstr "Přehrávání základního seznamu skladeb"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Hlasování"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Odstranit hlas"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Přidat hlas"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Přístup odepřen"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Tato událost byla zaznamenána."
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3503,14 +4083,14 @@ msgid ""
msgstr ""
"Byli jste přesměrování na tuto stránku, protože nemáte přístup k této funkci."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"Pokud si myslíte, že se jedná o chybu, nahlaste ji prosím administrátorovi "
"Ampache."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3519,8 +4099,8 @@ msgstr ""
"Byli jste přesměrování na tuto stránku, protože Vámi požadovaná funkce je v "
"demu zakázána."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Čas"
@@ -3549,15 +4129,16 @@ msgstr "Duplicitní skladby"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Skladba"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Doba"
@@ -3654,12 +4235,9 @@ msgid "Created by: %s for %s"
msgstr "Vytvořil %s pro %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Stopa"
@@ -3671,27 +4249,27 @@ msgstr "Upravuji existující uživatele"
msgid "User Properties"
msgstr "Uživatelské nastavení"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "Ostatní volby"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Upravit nastavení"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Flash"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Zabránit přepsání nastavení"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Budou ovlivněny všechny účty kromě administrátorského"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Aktualizovat uživatele"
@@ -3737,23 +4315,35 @@ msgstr "Získat obal"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Informace"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Načíst seznam skladeb ze souboru"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Typ seznamu skladeb"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Načíst seznam skladeb"
@@ -3766,24 +4356,31 @@ msgstr "Právě přehrávaná alba"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Verze"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Krok 1 - Vytvoření a vložení databáze Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Krok 2 - Vytvořit soubor ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Krok 3 - Nastavení prvního účtu"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3792,57 +4389,99 @@ msgstr ""
"Vytvoření účtu administrátora. Jakmile bude účet vytvořen, budete "
"přesměrování na přihlašovací stránku."
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Vytvořit administrátorský účet"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Vytvořit účet"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Požadavky"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Tato stránka slouží k instalaci databáze Ampache a k vytvoření souboru "
+"ampache.cfg.php. Napřed však prosím zkontrolujte, zda váš server splňuje "
+"následující požadavky"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"MySQL server s přihlašovacím jménem a heslem může vytvářet/upravovat "
+"databáze."
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Váš webový server má přístup je čtení souborů sql/ampache.sql file a /config/"
+"ampache.cfg.php.dist"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Jakmile budou splněny všechny výše uvedené požadavky, vyplňte prosím níže "
+"uvedené informace, které slouží k nastavení Ampache. Pokud budete chtít v "
+"budoucnu změnit tato nastavení, upravte soubor /config/ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "KONTROLA"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATUT"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "POPIS"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "ampache nemůže přečíst %s"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Soubor Ampache.cfg.php existuje"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3855,62 +4494,62 @@ msgstr ""
"Budete vyzvání k uložení tohoto souboru. Po stažení souboru ho prosím "
"umístěte do adresáře /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Vytvořit konfigurační soubor"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Cesta k webu"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Název databáze"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL server"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQL Uživatel"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQL Heslo"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Číst/Psát"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Soubor Ampache.cfg.php existuje"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Je nakonfigurován Ampache.cfg.php?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Kontrola nastavení"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Pokračovat"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3921,57 +4560,57 @@ msgstr ""
"údaje o MySQL účtu s právy pro vytváření databází. Tento krok může trvat "
"delší dobu, v závislosti na rychlosti Vašeho počítače."
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Vytvořit databázi Ampache"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Název databáze"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Administrátorské jméno pro přístup do MySQL"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Administrátorské heslo pro přístup do MySQL"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Vytvořit nového uživatele pro novou databázi"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Uživatelské jméno pro databázi Ampache"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Uživatelské heslo pro databázi Ampache"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Nahradit existující databázi"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Použít existující databázi"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Vytvořit databázi"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Vyberte jazyk pro instalaci."
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Spuštění konfigurace"
@@ -3989,11 +4628,6 @@ msgstr "Zobrazit unikátní"
msgid "Show All"
msgstr "Zobrazit vše"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Datum"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4003,12 +4637,12 @@ msgstr "IP adresa"
msgid "Manage Radio Stations"
msgstr "Spravovat internetová rádia"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Název seznamu skladeb"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4054,48 +4688,48 @@ msgstr "Zobrazit instance místního vysílání"
msgid "Edit Instance"
msgstr "Upravit položku"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Správa místního přehrávání"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Ztišit"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Zeslabit"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Zesílit"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Hlasitost"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Opakovat"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Pamatovat si mě"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Heslo"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Přihlásit"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registrovat se"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Zpráva dne"
@@ -4134,11 +4768,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Ladění Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Předmět"
@@ -4203,6 +4832,7 @@ msgstr "Vytvořit nový seznam skladeb"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Objekt"
@@ -4216,36 +4846,18 @@ msgstr "Připojené"
msgid "Date Added"
msgstr "Datum přidání"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Přehrát album"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Přehrát album"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Přidat album"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Pokročilé volby"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Alba"
+msgid "No missing album found"
+msgstr "Nebyly nalezeny žádné zakázané skladby"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Podobní umělci"
@@ -4263,125 +4875,60 @@ msgstr "dosud neohodnoceno"
msgid "%s of 5"
msgstr "%s z 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normalizovat stopy"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Přehrát album"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Seznam skladeb"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Přidat vše"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Přidat náhodně"
+#, fuzzy
+msgid "Create channel"
+msgstr "Datum vytvoření"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Opravdu chcete smazat tento katalog?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Seznam skladeb"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Seznam skladeb"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Způsob aktualizace seznamu skladeb"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Název seznamu skladeb"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "Počet skladeb"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Vlastník"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Žádný podobný umělec nebyl nalezen"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Písně v seznamu skladeb"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Písně v seznamu skladeb"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Žánr"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s seznam skladeb"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Verze"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Deaktivovat"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4389,13 +4936,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Administrátorské nastavení"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Aplikovat na vše"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Úroveň přístupových práv"
@@ -4430,6 +4977,22 @@ msgstr "Počet položek"
msgid "Unlimited"
msgstr "Neomezeno"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minuta"
+msgstr[1] "%d minuty"
+msgstr[2] "%d minut"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d hodina"
+msgstr[1] "%d hodiny"
+msgstr[2] "%d hodin"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Velikost"
@@ -4438,22 +5001,86 @@ msgstr "Velikost"
msgid "Enqueue"
msgstr "Přidat"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Naposledy přehráváno"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "sekundami"
+msgstr[1] "sekundami"
+msgstr[2] "sekundami"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "minutami"
+msgstr[1] "minutami"
+msgstr[2] "minutami"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "hodinami"
+msgstr[1] "hodinami"
+msgstr[2] "hodinami"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "dny"
+msgstr[1] "dny"
+msgstr[2] "dny"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "týdny"
+msgstr[1] "týdny"
+msgstr[2] "týdny"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "měsíci"
+msgstr[1] "měsíci"
+msgstr[2] "měsíci"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "roky"
+msgstr[1] "roky"
+msgstr[2] "roky"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "sekundami"
+msgstr[1] "sekundami"
+msgstr[2] "sekundami"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Nebyly nalezeny žádné zakázané skladby"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Žádný podobný umělec nebyl nalezen"
@@ -4526,7 +5153,7 @@ msgstr "Přidat pravidlo"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Pokročilé vyhledávání"
@@ -4552,16 +5179,54 @@ msgstr "Volby"
msgid "Add Search Results"
msgstr "Přidat nalezené záznamy"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Objekt"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Datum vytvoření"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Naposledy zkontrolované"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Veřejné"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Poslat po přidání"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Přidat vše"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Uložit změny"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Načíst seznam skladeb"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Žádný podobný umělec nebyl nalezen"
@@ -4579,59 +5244,46 @@ msgstr "Podrobnosti"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Jako"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Úroveň"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Jazyk"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Název katalogu"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Hlášení aktualizována"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "Texty skladby %s"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Písně v seznamu skladeb"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Informace o skladbě"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Skladba"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Nebyly nalezeny žádné zakázané skladby"
@@ -4652,13 +5304,31 @@ msgstr "Velikost katalogu"
msgid "Catalog Time"
msgstr "Celková doba skladeb v katalogu"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Nejoblíbenější alba"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Nejoblíbenější umělci"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Skladba"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Opravdu chcete smazat tento katalog?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Ladění Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4776,10 +5446,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Podpora pro PHP sezení"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Kontrola přítomnosti PHP rozšíření pro práci s MySQL databází, která je "
+"nutná pro chod Ampache."
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Safe mode"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4789,33 +5473,33 @@ msgstr ""
"dostupné paměti. Ačkoliv není takto kontrolované nastavení vyžadováno, bez "
"něho nebudou některé funkce Ampache fungovat správně."
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Limit paměti"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Maximální doba provádění skriptu"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4825,12 +5509,12 @@ msgstr ""
"soubor ampache.cfg.php umístěn ve správném adresáři nebo\n"
"\tnejsou dobře nastavena přístupová práva k souboru pro webový server."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Nastavit seznam skladeb pro veřejné vysílání"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4839,12 +5523,12 @@ msgstr ""
"Kontrola zda jsou nastaveny všechny potřebné konfigurační proměnné a zda je "
"v pořádku Váš konfigurační soubor"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Kódování databáze bylo aktualizováno"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4853,12 +5537,12 @@ msgstr ""
"Pokus o připojení k databázi na základě údajů uvedených ve Vašem "
"konfiguračním souboru ampache.cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Název databáze"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4867,12 +5551,12 @@ msgstr ""
"Kontrola zda byly vytvořeny důležité tabulky v databázi ampache a zda má k "
"této databázi uživatel přístup"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Cesta k webu"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4909,100 +5593,76 @@ msgstr "Použitý ověřovací klíč není správný"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Uživatelské nástroje"
+msgid "User Favorites"
+msgstr "Uživatelské nastavení"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Datum vytvoření"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Naposledy přihlášen"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Aktivita"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Statut"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Uživatel je připojen"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Uživatel je odpojen"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Aktivní seznam skladeb"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Doporučení umělci"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Doporučená alba"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Doporučené písně"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Licenční ujednání"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Přijmout"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Informace o uživateli"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Vyžadováno"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registrovat uživatele"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Celé jméno"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Datum registrace"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Poslední IP adresa"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "Přihlášen"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Oblíbení umělci"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Oblíbená alba"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Oblíbené písně"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5014,21 +5674,20 @@ msgstr "Katalogy"
msgid "Updating the %s catalog"
msgstr "Aktualizovat katalog %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "Nalezena jedna položka Zkontroluje informace z tagů."
+msgstr[1] "Nalezeno %d položek. Zkontroluje informace z tagů."
+msgstr[2] "Nalezeny %d položky. Zkontroluje informace z tagů."
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Ověřeno"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Písně v seznamu skladeb"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Rozlišení"
@@ -5039,7 +5698,7 @@ msgid "No video found"
msgstr "Nenalezeny žádné záznamy"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Podobný umělec"
@@ -5081,51 +5740,46 @@ msgstr "Nastavení serveru"
msgid "Browse"
msgstr "Prohlížet"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Skladba"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Nyní hraje"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Načíst"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Možnosti"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "Nejnovější"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Nejoblíbenější"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Hodnoceno"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Hlášení"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Moduly"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Odhlásit"
@@ -5178,7 +5832,7 @@ msgstr "Spravovat seznamy skladeb"
msgid "Account"
msgstr "Účet"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5189,18 +5843,15 @@ msgstr ""
"3.3.3.5. Podle údajů obsažených ve Vaší databázi, je Vaše "
"současná verze databáze: %s."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "je nutné provést následující aktualizace"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Aktualizovat nyní!"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Instalace Ampache."
-
#: Database words
msgid "Allow Downloads"
msgstr "Povolit stahování"
@@ -5301,14 +5952,154 @@ msgstr "Uživatel "
msgid "Streaming"
msgstr "Síťové vysílání"
-#: Database words
-msgid "Interface"
-msgstr "Rozhraní"
-
#: Database words
msgid "System"
msgstr "Systém"
+#~ msgid "Related Album"
+#~ msgstr "Podobná alba"
+
+#~ msgid "Related Genre"
+#~ msgstr "Podobný žánr"
+
+#~ msgid "Pure Random"
+#~ msgstr "Přidat naprosto náhodně"
+
+#~ msgid "Related Tag"
+#~ msgstr "Podobný žánr"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Přehrát album"
+
+#~ msgid "Play Album"
+#~ msgstr "Přehrát album"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Přehrát album"
+
+#~ msgid "Add Album"
+#~ msgstr "Přidat album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Přehrát album"
+
+#~ msgid "Flag"
+#~ msgstr "Hlášení"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Nejoblíbenější žánry"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Nejoblíbenější písně"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Nejoblíbenější síťová vysílání"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Nejoblíbenější tagy"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Zobrazit všechny písně od %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Seznam skladeb"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Přidat všechny písně od %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Seznam skladeb"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Přidat všechny písně od %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Přidat všechny písně od %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Přidat písně v náhodném pořadí od %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Typ seznamu skladeb"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Přehrát album"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Přehrát album"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Přidat album"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normalizovat stopy"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Seznam skladeb"
+
+#~ msgid "Add Random"
+#~ msgstr "Přidat náhodně"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Seznam skladeb"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Písně v seznamu skladeb"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Písně v seznamu skladeb"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Písně v seznamu skladeb"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Uživatelské nástroje"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Doporučení umělci"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Doporučená alba"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Doporučené písně"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Oblíbení umělci"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Oblíbená alba"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Písně v seznamu skladeb"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Hlášení"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "je nutné provést následující aktualizace"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Instalace Ampache."
+
#~ msgid "Make Sticky"
#~ msgstr "Přilepit"
@@ -5479,18 +6270,12 @@ msgstr "Systém"
#~ msgid "Search Disabled Songs"
#~ msgstr "Vyhledat zakázané písně"
-#~ msgid "Edit Album"
-#~ msgstr "Upravit album"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Označit k úpravě tagů"
#~ msgid "Update Album"
#~ msgstr "Aktualizovat album"
-#~ msgid "Edit Artist"
-#~ msgstr "Upravit umělce"
-
#~ msgid "Update Artist"
#~ msgstr "Aktualizovat umělce"
@@ -5631,18 +6416,6 @@ msgstr "Systém"
#~ msgid "DB Inserted"
#~ msgstr "Databáze vytvořena"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "den"
-#~ msgstr[1] "dny"
-#~ msgstr[2] "dnů"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "hodina"
-#~ msgstr[1] "hodiny"
-#~ msgstr[2] "hodin"
-
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
#~ "Nelze načíst PEAR knihovnu pro XMLRPC. Ujietěte se, že je XML-RPC "
@@ -5663,13 +6436,6 @@ msgstr "Systém"
#~ msgid "images synchronized: "
#~ msgstr "Synchronizované obaly:"
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Čištění katalogu je dokončeno"
-#~ msgstr[1] "Čištění katalogu je dokončeno"
-#~ msgstr[2] "Čištění katalogu je dokončeno"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5720,24 +6486,6 @@ msgstr "Systém"
#~ "Funkce jsou v demu zakázány, protože předchozí uživatelé dema je použili "
#~ "k posílání nevhodných materiálů"
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "Nalezena jedna položka Zkontroluje informace z tagů."
-#~ msgstr[1] "Nalezeno %d položek. Zkontroluje informace z tagů."
-#~ msgstr[2] "Nalezeny %d položky. Zkontroluje informace z tagů."
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minuta"
-#~ msgstr[1] "%d minuty"
-#~ msgstr[2] "%d minut"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d hodina"
-#~ msgstr[1] "%d hodiny"
-#~ msgstr[2] "%d hodin"
-
#~ msgid "file"
#~ msgstr "soubor"
@@ -5764,20 +6512,6 @@ msgstr "Systém"
#~ "Objevil se problém s nahráváním souboru. Byla nahrána pouze část souboru "
#~ "%s."
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Skladby odstraněny"
-#~ msgstr[1] "Skladby odstraněny"
-#~ msgstr[2] "Skladby odstraněny"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Zakázání skladeb zpracováno"
-#~ msgstr[1] "Zakázání skladeb zpracováno"
-#~ msgstr[2] "Zakázání skladeb zpracováno"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Nenalezeny žádné záznamy"
@@ -5808,12 +6542,6 @@ msgstr "Systém"
#~ msgid "Keywords"
#~ msgstr "Klíčová slova"
-#~ msgid "Yes"
-#~ msgstr "Ano"
-
-#~ msgid "No"
-#~ msgstr "Ne"
-
#~ msgid "Min Bitrate"
#~ msgstr "Minimální datový tok"
diff --git a/locale/de_DE/LC_MESSAGES/messages.mo b/locale/de_DE/LC_MESSAGES/messages.mo
index eb73ed73..40af1737 100644
Binary files a/locale/de_DE/LC_MESSAGES/messages.mo and b/locale/de_DE/LC_MESSAGES/messages.mo differ
diff --git a/locale/de_DE/LC_MESSAGES/messages.po b/locale/de_DE/LC_MESSAGES/messages.po
index 0aea6b77..d1a21e9c 100644
--- a/locale/de_DE/LC_MESSAGES/messages.po
+++ b/locale/de_DE/LC_MESSAGES/messages.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.7.0-dev\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-05-05 21:16+0200\n"
-"PO-Revision-Date: 2014-05-05 21:49+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
+"PO-Revision-Date: 2014-05-07 19:51+0100\n"
"Last-Translator: Manuel Landmann \n"
"Language-Team: German \n"
"Language: de_DE\n"
@@ -80,10 +80,24 @@ msgstr "Katalog löschen"
msgid "Confirm Deletion Request"
msgstr "Bestätige die Löschanfrage"
+#: ../../admin/catalog.php:126
+#, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Ein Song gelöscht"
+msgstr[1] "%d Songs gelöscht"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Keine Songs gelöscht"
+#: ../../admin/catalog.php:131
+#, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Ein Deaktivierter Song bearbeitet"
+msgstr[1] "%d Deaktivierte Songs bearbeitet"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Katalog bereinigt"
@@ -848,7 +862,7 @@ msgid "The Broadcast has been deleted"
msgstr "Der Broadcast wurde gelöscht"
#: ../../browse.php:79 ../../lib/class/browse.class.php:200
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Tag Wolke"
@@ -983,8 +997,8 @@ msgstr "Platte"
#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:99
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Interpreten"
@@ -995,7 +1009,7 @@ msgstr "Verschiedene"
#: ../../lib/class/ampache_rss.class.php:70
#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Aktuell wird gespielt"
@@ -1123,14 +1137,14 @@ msgstr "Bradcast bearbeiten"
#: ../../templates/show_shout_row.inc.php:31
#: ../../templates/show_smartplaylist_row.inc.php:53
#: ../../templates/show_song_row.inc.php:71
-#: ../../templates/show_tagcloud.inc.php:35
+#: ../../templates/show_tagcloud.inc.php:36
#: ../../templates/show_user_row.inc.php:44
msgid "Edit"
msgstr "Bearbeiten"
#: ../../lib/class/broadcast.class.php:149
#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
-#: ../../templates/rightbar.inc.php:120
+#: ../../templates/rightbar.inc.php:117
#: ../../templates/show_access_list.inc.php:76
#: ../../templates/show_catalog_row.inc.php:39
#: ../../templates/show_democratic_playlist.inc.php:92
@@ -1145,7 +1159,7 @@ msgstr "Bearbeiten"
#: ../../templates/show_shout_row.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:47
#: ../../templates/show_smartplaylist_row.inc.php:55
-#: ../../templates/show_tagcloud.inc.php:39
+#: ../../templates/show_tagcloud.inc.php:40
#: ../../templates/show_user_row.inc.php:54
msgid "Delete"
msgstr "Löschen"
@@ -1169,7 +1183,7 @@ msgstr "Broadcast beenden"
#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:97
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Songs"
@@ -1183,8 +1197,8 @@ msgstr "Songs"
#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:98
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Alben"
@@ -1193,13 +1207,13 @@ msgid "Manage Users"
msgstr "Benutzer verwalten"
#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Radiosender"
#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
-#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:37
-#: ../../templates/sidebar_home.inc.php:100
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Playlisten"
@@ -1212,7 +1226,7 @@ msgid "Current Playlist"
msgstr "Aktuelle Playlist"
#: ../../lib/class/browse.class.php:187
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../templates/sidebar_home.inc.php:37
msgid "Smart Playlists"
msgstr "Intelligente Playlist"
@@ -1227,8 +1241,8 @@ msgstr "Shoutboxeinträge"
#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:44
-#: ../../templates/sidebar_home.inc.php:101
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Videos"
@@ -1242,21 +1256,21 @@ msgid "Wanted Albums"
msgstr "Gesuchte Alben"
#: ../../lib/class/browse.class.php:217
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:93
msgid "Shared Objects"
msgstr "Freigegebene Objekte"
#: ../../lib/class/browse.class.php:225
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../templates/sidebar_home.inc.php:38
msgid "Channels"
msgstr "Kanäle"
#: ../../lib/class/browse.class.php:229
-#: ../../templates/sidebar_home.inc.php:41
+#: ../../templates/sidebar_home.inc.php:40
msgid "Broadcasts"
msgstr "Broadcasts"
-#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:127
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Mehr"
@@ -1268,6 +1282,18 @@ msgstr "Mehr"
msgid "Never"
msgstr "Niemals"
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "Tag"
+msgstr[1] "Tage"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "Stunde"
+msgstr[1] "Stunden"
+
#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr "Katalog konnte nicht hinzugefügt werden, überprüfe die Log-Dateien"
@@ -1276,12 +1302,27 @@ msgstr "Katalog konnte nicht hinzugefügt werden, überprüfe die Log-Dateien"
msgid "No Update Needed"
msgstr "Es wird keine Aktualisierung benötigt."
+#: ../../lib/class/catalog.class.php:1035
+#, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Katalog wurde erfolgreich gesäubert. Eine Datei wurde entfernt."
+msgstr[1] "Katalog wurde erfolgreich gesäubert. %d Dateien wurden entfernt."
+
#: ../../lib/class/catalog.class.php:1054
#, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr ""
"Katalog wurde erfolgreich überprüft. %d von %d Dateien wurden aktualisiert."
+#: ../../lib/class/catalog.class.php:1204
+msgid "Failed to create playlist."
+msgstr "Beim erstellen der Playlist ist ein Fehler aufgetreten."
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr "Keine gültigen Songs in der Playlist gefunden."
+
#: ../../lib/class/channel.class.php:154
msgid "Start Channel"
msgstr "Starte Kanal"
@@ -1370,22 +1411,6 @@ msgstr "Ungültige URL. Gültige Varianten sind: http:// oder https://"
msgid "Invalid Catalog"
msgstr "Ungültiger Katalog"
-#: ../../lib/class/random.class.php:401 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Zugehöriges Album"
-
-#: ../../lib/class/random.class.php:404
-msgid "Related Genre"
-msgstr "Zugehöriges Genre"
-
-#: ../../lib/class/random.class.php:407 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Ähnlicher Interpret"
-
-#: ../../lib/class/random.class.php:410 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Einfach zufällig"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1554,7 +1579,7 @@ msgstr "Titel"
#: ../../templates/show_song_previews.inc.php:34
#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:69
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
@@ -1587,7 +1612,7 @@ msgstr "Album"
#: ../../templates/show_song_previews.inc.php:33
#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
#: ../../templates/show_wanted_albums.inc.php:27
-#: ../../templates/sidebar_home.inc.php:70
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Interpret"
@@ -1672,7 +1697,7 @@ msgstr "Katalog"
#: ../../templates/show_manage_democratic.inc.php:26
#: ../../templates/show_search_bar.inc.php:34
#: ../../templates/sidebar_home.inc.php:49
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Playlist"
@@ -1778,7 +1803,7 @@ msgid "No updates needed."
msgstr "Es wird keine Aktualisierung benötigt."
#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:46
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Nicht genügend Informationen"
@@ -2086,7 +2111,7 @@ msgstr "Zufällige Wiedergabe"
#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:95
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Suchen"
@@ -2125,7 +2150,7 @@ msgid "Browse Music"
msgstr "Musik durchblättern"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statistiken"
@@ -2512,8 +2537,8 @@ msgstr "Port"
#: ../../templates/show_add_channel.inc.php:76
#: ../../templates/show_channels.inc.php:34
#: ../../templates/show_edit_channel_row.inc.php:52
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Zufällig"
@@ -2530,11 +2555,18 @@ msgstr "Die Playlist '%1$s (%2$s)' wurde erstellt."
msgid "Playlist Imported"
msgstr "Playlist importiert"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] "Der Import der Playliste mit %d Song war erfolgreich."
+msgstr[1] "Der Import der Playlist mit %d Songs war erfolgreich."
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "Die Playlist wurde nicht importiert"
-#: ../../playlist.php:158
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Leere Playlisten wurden gelöscht"
@@ -2624,7 +2656,7 @@ msgstr "Die Suche wurde gespeichert"
#: ../../search.php:43
#, php-format
msgid "Your Search has been saved as a track in %s"
-msgstr "Deine Suche wurde als Track in der Playliste '%s' gespeichert"
+msgstr "Deine Suche wurde als Track in der Playlist '%s' gespeichert"
#: ../../server/player.ajax.php:41
#: ../../templates/show_html5_player.inc.php:654
@@ -2676,7 +2708,7 @@ msgid "Invalid Object Selected"
msgstr "Es wurde ein ungültiges Objekt ausgewählt"
#: ../../templates/browse_filters.inc.php:30
-#: ../../templates/list_header.inc.php:178
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filter"
@@ -2761,7 +2793,7 @@ msgstr "Abbrechen"
msgid "Log out"
msgstr "Abmelden"
-#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:84
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
msgid "Favorites"
msgstr "Favoriten"
@@ -2787,7 +2819,7 @@ msgstr "Zurück"
msgid "Next"
msgstr "Weiter"
-#: ../../templates/list_header.inc.php:187
+#: ../../templates/list_header.inc.php:188
msgid "Limit"
msgstr "Grenze"
@@ -2817,7 +2849,7 @@ msgstr "Herunterladen"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Playlist leeren"
@@ -2825,11 +2857,23 @@ msgstr "Playlist leeren"
msgid "Add Dynamic Items"
msgstr "Dynamisch hinzufügen"
-#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Ähnlicher Tag"
+#: ../../templates/rightbar.inc.php:60
+msgid "Random Song"
+msgstr "Zufällige Songs"
-#: ../../templates/rightbar.inc.php:123
+#: ../../templates/rightbar.inc.php:63
+msgid "Random Artist"
+msgstr "Zufälliger Interpret"
+
+#: ../../templates/rightbar.inc.php:66
+msgid "Random Album"
+msgstr "Zufälliges Album"
+
+#: ../../templates/rightbar.inc.php:69
+msgid "Random Playlist"
+msgstr "Zufällige Playlist"
+
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr "Nichts hier"
@@ -4009,6 +4053,7 @@ msgstr "Doppelte Lieder anzeigen"
#: ../../templates/show_now_playing_row.inc.php:39
#: ../../templates/show_recently_played.inc.php:30
#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Song"
@@ -4190,7 +4235,7 @@ msgstr "Empfange Cover"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Information"
@@ -4559,27 +4604,27 @@ msgstr "Lokale Abspielinstanzen anzeigen"
msgid "Edit Instance"
msgstr "Instanz bearbeiten"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Steuerung für lokales Abspielen"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Lautlos"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Leiser"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Lauter"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Lautstärke"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Wiederholen"
@@ -4835,6 +4880,20 @@ msgstr "Anzahl"
msgid "Unlimited"
msgstr "Unbegrenzt"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Eine Minute"
+msgstr[1] "%d Minuten"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d Stunde"
+msgstr[1] "%d Stunden"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Größenbegrenzung"
@@ -4853,6 +4912,54 @@ msgstr "zuletzt gespielt vor"
msgid "Agent"
msgstr "Agent"
+#: ../../templates/show_recently_played.inc.php:63
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "Sekunde"
+msgstr[1] "Sekunden"
+
+#: ../../templates/show_recently_played.inc.php:66
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "Minute"
+msgstr[1] "Minuten"
+
+#: ../../templates/show_recently_played.inc.php:69
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "Stunde"
+msgstr[1] "Stunden"
+
+#: ../../templates/show_recently_played.inc.php:72
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "Tag"
+msgstr[1] "Tagen"
+
+#: ../../templates/show_recently_played.inc.php:75
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "Woche"
+msgstr[1] "Wochen"
+
+#: ../../templates/show_recently_played.inc.php:78
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "Monat"
+msgstr[1] "Monaten"
+
+#: ../../templates/show_recently_played.inc.php:81
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "Jahr"
+msgstr[1] "Jahren"
+
+#: ../../templates/show_recently_played.inc.php:84
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "Dekade"
+msgstr[1] "Dekaden"
+
#: ../../templates/show_recently_played.inc.php:133
msgid "No recently item found"
msgstr "Kein passendes Objekt gefunden"
@@ -5071,11 +5178,11 @@ msgstr "Meistgespielte Alben"
msgid "Most Popular Artists"
msgstr "Meistgespielte Interpreten"
-#: ../../templates/show_tagcloud.inc.php:34
+#: ../../templates/show_tagcloud.inc.php:35
msgid "Tag edit"
msgstr "tag bearbeiten"
-#: ../../templates/show_tagcloud.inc.php:39
+#: ../../templates/show_tagcloud.inc.php:40
msgid "Do you really want to delete the tag?"
msgstr "Möchtest Du diesen Tag wirklich löschen?"
@@ -5410,6 +5517,13 @@ msgstr "Katalog überprüfen"
msgid "Updating the %s catalog"
msgstr "Aktualisiere Katalog: %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "Eine Datei gefunden, prüfe Tag-Informationen"
+msgstr[1] "%d Dateien gefunden, prüfe Tag-Informationen"
+
#: ../../templates/show_verify_catalog.inc.php:29
msgid "Verified"
msgstr "Geprüft"
@@ -5424,7 +5538,7 @@ msgid "No video found"
msgstr "Es wurde kein Video gefunden."
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:87
+#: ../../templates/sidebar_home.inc.php:90
msgid "Wanted List"
msgstr "Wunschliste"
@@ -5465,7 +5579,7 @@ msgstr "Serverkonfiguration"
msgid "Browse"
msgstr "Durchblättern"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr "Songtitel"
@@ -5477,23 +5591,23 @@ msgstr "Wird gerade gespielt"
msgid "Import"
msgstr "Importieren"
-#: ../../templates/sidebar_home.inc.php:72
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Erweitert"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr "Kürzlich"
-#: ../../templates/sidebar_home.inc.php:78
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "Neuestes"
-#: ../../templates/sidebar_home.inc.php:79
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Beliebt"
-#: ../../templates/sidebar_home.inc.php:81
+#: ../../templates/sidebar_home.inc.php:84
msgid "Top Rated"
msgstr "Am besten bewertet"
@@ -5677,3 +5791,15 @@ msgstr "Streaming"
#: Database words
msgid "System"
msgstr "System"
+
+#~ msgid "Related Album"
+#~ msgstr "Zugehöriges Album"
+
+#~ msgid "Related Genre"
+#~ msgstr "Zugehöriges Genre"
+
+#~ msgid "Pure Random"
+#~ msgstr "Einfach zufällig"
+
+#~ msgid "Related Tag"
+#~ msgstr "Ähnlicher Tag"
diff --git a/locale/el_GR/LC_MESSAGES/messages.mo b/locale/el_GR/LC_MESSAGES/messages.mo
index 8f80f91c..5381eaeb 100644
Binary files a/locale/el_GR/LC_MESSAGES/messages.mo and b/locale/el_GR/LC_MESSAGES/messages.mo differ
diff --git a/locale/el_GR/LC_MESSAGES/messages.po b/locale/el_GR/LC_MESSAGES/messages.po
index f560496e..f7781036 100644
--- a/locale/el_GR/LC_MESSAGES/messages.po
+++ b/locale/el_GR/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) Ampache.org
# This file is distributed under the same license as the Ampache package.
# Greek Team , 2008
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5.0\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2008-08-25 08:43+0900\n"
"Last-Translator: Ampache \n"
"Language-Team: Greek \n"
@@ -25,7 +25,7 @@ msgstr "Διαγράφηκε(αν)"
msgid "Your Access List Entry has been removed"
msgstr "Η εγγραφές στη λίστα πρόσβασης έχει αφαιρεθεί"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Αίτημα Διαγραφής"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Είστε σίγουροι για την οριστική διαγραφή του"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Προστέθηκε"
@@ -44,7 +44,7 @@ msgstr "Προστέθηκε"
msgid "Your new Access Control List(s) have been created"
msgstr "Η νέα εγγραφή σας στη λίστα πρόσβασης έχει δημιουργηθεί"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Ενημερωμένο"
@@ -71,15 +71,30 @@ msgstr "Ο Κατάλογος και οι συσχετισμένες εγγρα
msgid "Catalog Delete"
msgstr "Ο κατάλογος διαγράφηκε"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
#, fuzzy
msgid "Confirm Deletion Request"
msgstr "Αίτημα Διαγραφής"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Τραγούδια αφαιρέθηκαν"
+msgstr[1] "Τραγούδια αφαιρέθηκαν"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Κανένα τραγούδι δεν αφαιρέθηκε"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Επεξεργασμένα απενεργοποιημένα τραγούδια"
+msgstr[1] "Επεξεργασμένα απενεργοποιημένα τραγούδια"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Ο Κατάλογος καθαρίστηκε"
@@ -220,116 +235,149 @@ msgid ""
"currently configured charset"
msgstr ""
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Σφάλμα: Απαιτείται όνομα χρήστη"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Σφάλμα: Οι κωδικοί δεν ταιριάζουν"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Ο Χρήστης ενημερώθηκε"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "ενημερώθηκε"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Σφάλμα: Το όνομα Χρήστης υπάρχει ήδη"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Σφάλμα: Η εισαγωγή απέτυχε"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Επισκέπτης"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Χρήστης"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Διαχειριστής"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Προστέθηκε νέος χρήστης"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Ο Χρήστης ενεργοποιήθηκε"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Ο Χρήστης απενεργοποιήθηκε"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Σφάλμα"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Αδύνατο να απενεργοποιηθεί ο τελευταίος Διαχειριστής"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Ο Χρήστης διαγράφηκε"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr "δημιουργήθηκε"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Σφάλμα Διαγραφής"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Αδύνατο να διαγράψω τον τελεταίο χρήστη - Διαχειριστή"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Είστε σίγουροι για την οριστική διαγραφή του"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Ο Χρήστης διαγράφηκε"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Ο Χρήστης διαγράφηκε"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr "δημιουργήθηκε"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Δημιουργία νέου σετ ρυθμίσεων"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "New user API Key has been generated."
+msgstr ""
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Το εξώφυλλο καθαρίστηκε"
@@ -393,91 +441,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Δείξε καλλιτέχνες που αρχίζουν από"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Αποθήκευση ρυθμίσεων Καταλόγου"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Ο Κατάλογος καθαρίστηκε"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Αριθμός καταλόγους"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Ο Κατάλογος ενημερώθηκε"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Κατάλογος δημιουργήθηκε"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Η playlist εισήχθη"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Ρυθμίσεις για"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Ανάγνωση"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Ο Ραδιοφωνικός Σταθμός προστέθηκε"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Έναρξη Αναζήτησης Εξωφύλλου"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Ο Κατάλογος ενημερώθηκε"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Καθαρισμός στατιστικών Καταλόγου"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Καθαρισμός στατιστικών Καταλόγου"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Προσθήκη καταλόγου"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Εισαγωγή playlist"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Συγκέντρωση εξωφύλλων"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Πόρτα"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Ρυθμίσεις για"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Άγνωστα (Μεμονωμένα)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -594,12 +703,12 @@ msgstr "Σφάλμα: Αδύνατο να υπολογίσω το μέγεθος
msgid "File Moved..."
msgstr "αρχεία αφαιρέθηκαν"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, php-format
msgid "Created %s user %s with password %s"
msgstr ""
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Ο Χρήστης ενεργοποιήθηκε"
@@ -723,6 +832,18 @@ msgstr "Σφάλμα: Το όνομα Χρήστης υπάρχει ήδη"
msgid "Error: Unable to copy file to %s"
msgstr "Σφάλμα: Αδύνατο να υπολογίσω το μέγεθος αρχείου για το"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -749,11 +870,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Ο κατάλογος διαγράφηκε"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Ο κατάλογος διαγράφηκε"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "δημιουργήθηκε"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr ""
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Κατάλογος δημιουργήθηκε"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Ο κατάλογος διαγράφηκε"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Ο κατάλογος διαγράφηκε"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr "δημιουργήθηκε"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr ""
@@ -843,41 +1003,46 @@ msgstr "Περιβάλλον Web"
msgid "Stream Access"
msgstr "Πρόσβαση ροής"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Άγνωστα (Μεμονωμένα)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Δίσκος"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Καλλιτέχνες"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Ποικίλα"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Τώρα παίζει"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -928,172 +1093,310 @@ msgstr "χρόνια νωρίτερα"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Δεν ορίστηκε Όνομα Χρήστη/Κωδικός"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr ""
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Προσθήκη στην playlist"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
#, fuzzy
msgid "Invalid Request"
msgstr "Αίτημα Διαγραφής"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr ""
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Σφάλμα: Αδύνατο να ανοιχτεί"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Ενημέρωση όλων"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Εξυπηρετητής"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Αποθήκευση"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Πόρτα"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Κατέβασμα"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Καλλιτέχνης και Τίτλος"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Επεξεργασία"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Διαγραφή"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Τραγούδια"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Άλμπουμς"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Διαχείριση Χρηστών"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Ραδιοφωνικοί Σταθμοί"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Playlists"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Τραγούδια από playlist"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Τρέχουσα playlist"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Εισαγωγή playlist"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr ""
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Εγγραφές Shoutbox"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
#, fuzzy
msgid "Videos"
msgstr "Ποικίλα"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
#, fuzzy
msgid "Democratic Playlist"
msgstr "Δημιουργία Δημοκρατικής playlist"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Σχετικό άλμπουμ"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Αντικείμενο"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Αποθήκευση"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Περισσότερα"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Ποτέ"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+#, fuzzy
+msgid "day"
+msgid_plural "days"
+msgstr[0] "ημέρα"
+msgstr[1] "ημέρα"
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "ώρα"
+msgstr[1] "ώρα"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Δε χρειάζεται ενημέρωση"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Η εκκαθάριση των καταλόγων Ολοκληρώθηκε"
+msgstr[1] "Η εκκαθάριση των καταλόγων Ολοκληρώθηκε"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Η εκκαθάριση των καταλόγων Ολοκληρώθηκε"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Αδύνατο να δημιουργηθεί καινούριος λογαριασμός"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Αποθήκευση"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Άγνωστο"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Διακόπηκε"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1104,34 +1407,23 @@ msgid "Primary"
msgstr ""
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Διαχειριστής Περιεχομένου"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Διαχειριστής Καταλόγων"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Διακόπηκε"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Σε παύση"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Άγνωστο"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1164,22 +1456,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Προσθήκη Καταλόγου"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Σχετικό άλμπουμ"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Σχετικό Είδος"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Σχετικό Καλλιτέχνης"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Στην τύχη"
-
#: ../../lib/class/registration.class.php:52
#, fuzzy, php-format
msgid "New User Registration at %s"
@@ -1195,7 +1471,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1206,7 +1481,7 @@ msgid ""
"Thank you for registering\n"
msgstr ""
-#: ../../lib/class/registration.class.php:75
+#: ../../lib/class/registration.class.php:74
#, php-format
msgid ""
"A new user has registered\n"
@@ -1215,6 +1490,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
@@ -1290,108 +1566,108 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Τίτλος"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Άλμπουμ"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Καλλιτέχνης"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Σχόλιο"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
#, fuzzy
msgid "Tag"
msgstr "Επανεγγραφή tags"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Όνομα Αρχείου"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Χρόνος"
@@ -1399,40 +1675,43 @@ msgstr "Χρόνος"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Αξιολόγηση"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Παιγμένα"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Bitrate"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Παιγμένα"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1440,156 +1719,143 @@ msgstr "Κατάλογος"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Playlist"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Όνομα playlist"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Εισαγωγή playlist"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr ""
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Παίξε"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Προσθήκη"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Στείλε Shout"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
#, fuzzy
msgid "Show Lyrics"
msgstr "Δείξε playlist"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Δε χρειάζεται ενημέρωση"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Ανεπαρκή δεδομένα"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Ο Χρήστης ενεργοποιήθηκε"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Άγνωστο"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Δέχομαι"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Αφαίρεση"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Προσθήκη στην playlist"
@@ -1677,135 +1943,140 @@ msgstr "Επιθυμητό όνομα βάσης"
msgid "Administrative user creation failed: %s"
msgstr "Ο Χρήστης ενεργοποιήθηκε"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Ο Χρήστης απενεργοποιήθηκε. Επικοινωνήστε με το διαχειριστή"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr ""
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Αδύνατο να δημιουργηθεί καινούριος λογαριασμός"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Ενεργό"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Ανενεργό"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Κανένα"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Ροή"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Δημοκρατική"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Τοπική Αναπαραγωγή"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "XSPF Player"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Απλή M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Απενεργοποιημένο"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Μάνατζερ"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Στείλε με την προσθήκη"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Στείλε και καθάρισε με την προσθήκη"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Καθάρισε με την αποστολή"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Προκαθορισμένη"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Πάντα"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
msgid "Year ascending"
msgstr ""
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1837,7 +2108,8 @@ msgstr "Είναι τρελό"
msgid "Off the Charts!"
msgstr "Έξω από τα charts"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Αρχική"
@@ -1853,14 +2125,14 @@ msgstr "Τοπική Αναπαραγωγή"
msgid "Random Play"
msgstr "Τυχαία Αναπαραγωγή"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Αναζήτηση"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Προτιμήσεις"
@@ -1894,7 +2166,7 @@ msgid "Browse Music"
msgstr "Περιήγηση στη Μουσική"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Στατιστικά"
@@ -1902,31 +2174,14 @@ msgstr "Στατιστικά"
msgid "Add New"
msgstr "Προσθήκη Νέου"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Ενεργό"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Ανενεργό"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Ο Χρήστης απενεργοποιήθηκε. Επικοινωνήστε με το διαχειριστή"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr ""
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Αδύνατο να δημιουργηθεί καινούριος λογαριασμός"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1953,11 +2208,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2026,11 +2283,11 @@ msgstr "E-mail"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Κωδικός"
@@ -2097,48 +2354,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Σφάλμα: Αδύνατο να μεταβώ στον κατάλογο"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, fuzzy, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Σφάλμα: Αδύνατο να υπολογίσω το μέγεθος αρχείου για το"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, fuzzy, php-format
msgid "%s is not readable by ampache"
msgstr "είναι μη αναγνώσιμο από τον ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Η Ρίζα των καταλόγων δεν μπορεί να αναγνωσθεί, η εκκαθάριση διακόπηκε"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2153,13 +2410,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Όνομα Χρήστη"
@@ -2279,20 +2536,20 @@ msgstr "Όνομα Εξυπηρετητή"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Πόρτα"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Τυχαία"
@@ -2309,15 +2566,48 @@ msgstr "δημιουργήθηκε"
msgid "Playlist Imported"
msgstr "Η playlist εισήχθη"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
#, fuzzy
msgid "Playlist Not Imported"
msgstr "Η playlist εισήχθη"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Οι άδειες playlists διαγράφηκαν"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Η εγγραφή ολοκληρώθηκε"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Εξυπηρετητής"
@@ -2334,36 +2624,36 @@ msgstr "Ο λογαριασμός σας ενημερώθηκε"
msgid "Radio Station Added"
msgstr "Ο Ραδιοφωνικός Σταθμός προστέθηκε"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Σφάλμα Απαιτείται Captcha"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Σφάλμα το Captcha απέτυχε"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Πρέπει να συμφωνήσετε με τους όρους χρήσης"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Δε δώσατε όνομα Χρήστη"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Παρακαλώ συμπληρώστε το ονοματεπώνυμό σας"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Αίτημα Διαγραφής"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Πρέπει να δώσετε κωδικό"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Οι κωδικοί δεν ταιριάζουν"
@@ -2382,6 +2672,11 @@ msgstr "Αναζητήθηκαν"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2390,44 +2685,79 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Αντικείμενο"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Ο Χρήστης διαγράφηκε"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Ο Χρήστης διαγράφηκε"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr "δημιουργήθηκε"
+
#: ../../shout.php:49
#, fuzzy
msgid "Invalid Object Selected"
msgstr "Κατέβασε τα επιλεγμένα"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Φίλτρα"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Αρχίζουν από"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Ελάχιστο Πλήθος"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Αξιολογημένα"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Δεν έχουν παιχτεί"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Όλες οι playlists"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Τίτλος Τραγουδιού"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2436,94 +2766,68 @@ msgstr ""
msgid "Ampache error page"
msgstr "Ενημέρωση Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Ampache Debug"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr ""
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Ακύρωση"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Έξοδος"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+msgid "Favorites"
+msgstr "Αγαπημένα"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Σφάλμα: Παλιό Αρχείο Ρυθμίσεων"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Δημιουργία νέου σετ ρυθμίσεων"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Εγκατάσταση"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Απαιτήσεις"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Αυτή η σελίδα χειρίζεται την εγκατάσταση της βάσης δεδομένων και τη "
-"δημιουργία του αρχείου ρυθμίσεων. Πριν συνεχίσετε, βεβαιωθείτε ότι "
-"ικανοποιείτε τις ακόλουθες προϋποθέσεις"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Ένας MySQL Server με όνομα χρήστη και κωδικό που μπορεί να δημιουργεί/"
-"τροποποιεί βάσεις"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Ο webserver έχει δικαιώματα ανάγνωσης στο /sql/ampache.sql αρχείο και στο "
-"αρχείο /config/ampache.cfg.php.dist"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Μόλις βεβαιωθείτε ότι ικανοποιείτε τις παραπάνω προϋποθέσεις, παρακαλώ "
-"συμπληρώστε τις πληροφορίες παρακάτω. Θα σας ζητηθούν μόνο οι απαραίτητες "
-"για τις επιθυμητές ρυθμίσεις. Αν θελήσετε να κάνετε αργότερα αλλαγές απλώς "
-"επεξεργαστείτε το /config/ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Προηγούμενο"
@@ -2533,7 +2837,7 @@ msgstr "Προηγούμενο"
msgid "Next"
msgstr "Επόμενο"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Όριο μεγέθους"
@@ -2543,27 +2847,28 @@ msgid "Add to Playlist"
msgstr "Προσθήκη στην playlist"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Προσθήκη σε νέα playlist"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Διαδοχικό κατέβασμα"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Καθαρισμός playlist"
@@ -2571,30 +2876,27 @@ msgstr "Καθαρισμός playlist"
msgid "Add Dynamic Items"
msgstr "Προσθήκη Δυναμικών Στοιχείων"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Τυχαία"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Σχετικό Καλλιτέχνης"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Προσθήκη στην τύχη από άλμπουμ"
+
#: ../../templates/rightbar.inc.php:69
#, fuzzy
-msgid "Related Tag"
-msgstr "Σχετικό άλμπουμ"
+msgid "Random Playlist"
+msgstr "Τυχαία Αναπαραγωγή"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Διαγραφή"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2632,15 +2934,15 @@ msgstr "Προχωρημένα"
msgid "Access Control Entries"
msgstr "Έλεγχος Πρόσβασης"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Αρχική Διεύθυνση"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Τελική Διεύθυνση"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2649,88 +2951,82 @@ msgstr "Τελική Διεύθυνση"
msgid "Level"
msgstr "Επίπεδο"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Τύπος"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Ενέργεια"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Επεξεργασία"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Νέος Κωδικός"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Επιβεβαίωση Κωδικού"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Καθαρισμός Στατιστικών"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Ενημέρωση Λογαριασμού"
@@ -2854,13 +3150,81 @@ msgid "Gather Album Art"
msgstr "Συγκέντρωση εξωφύλλων"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Χτίσε playlists από m3u αρχεία"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Προσθήκη Καταλόγου"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Ημερομηνία Δημιουργίας"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Πρόσβαση ροής"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Περιγραφή"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+#, fuzzy
+msgid "Interface"
+msgstr "Περιβάλλον Web"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Τύπος Αναζήτησης"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Δημιουργία"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2873,16 +3237,16 @@ msgstr "Αρχική Σελίδα"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "Stream URL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
#, fuzzy
msgid "Codec"
@@ -2892,11 +3256,6 @@ msgstr "Κωδικός"
msgid "Create a new playlist"
msgstr "Δημιουργία νέας playlist"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Δημιουργία"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2921,6 +3280,38 @@ msgstr "Βρέθηκαν"
msgid "Reading"
msgstr "Ανάγνωση"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Ημερομηνία Δημιουργίας"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Αντικείμενο"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Ροή"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Κατέβασμα"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Στείλε στο Shoutbox"
@@ -2948,17 +3339,22 @@ msgstr "Προσθήκη Νέου Χρήστη"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Ονοματεπώνυμο"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Επίπεδο Πρόσβασης Χρήστη"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Προσθήκη Χρήστη"
@@ -2979,260 +3375,347 @@ msgid "Invalid"
msgstr "Αίτημα Διαγραφής"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Επιλογή"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Ενέργειες"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Αναπαραγωγή άλμπουμ"
+msgid "Play last"
+msgstr "Playlist"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Αναπαραγωγή άλμπουμ"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Αναπαραγωγή άλμπουμ"
+msgid "Add to temporary playlist"
+msgstr "Προσθήκη σε νέα playlist"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Προσθήκη άλμπουμ"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Προσθήκη στην τύχη από άλμπουμ"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Όρισε Αριθμούς Κομματιών"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Θέλετε σίγουρα να διαγράψετε αυτόν τον κατάλογο;"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Επαναφορά εξωφύλλου"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Αναζήτηση εξωφύλλου"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Θέλετε σίγουρα να διαγράψετε αυτόν τον κατάλογο;"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Ενημέρωση από tags"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Κατέβασμα"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Αναπαραγωγή άλμπουμ"
+msgid "Save Tracks Order"
+msgstr "Όρισε Αριθμούς Κομματιών"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Εξώφυλλο"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Θέλετε σίγουρα να διαγράψετε αυτόν τον κατάλογο;"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Ενημέρωση από tags"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Επεξεργασία άλμπουμ"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Προσθήκη σε νέα playlist"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Εξώφυλλο"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
#, fuzzy
msgid "Tags"
msgstr "Επανεγγραφή tags"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Μαρκάρισμα"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Δεν βρέθηκαν απενεργοποιημένα τραγούδια"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Δημοφιλέστεροι Καλλιτέχνες"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Δημοφιλέστερα Άλμπουμς"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Δημοφιλέστερα είδη"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Δημοφιλέστερα Τραγούδια"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Δημοφιλέστερα Live Streams"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Δημοφιλέστερα Tags"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr ""
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, fuzzy, php-format
-msgid "Show All Songs By %s"
-msgstr "Δείξε όλα τα τραγούδια από"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Άλμπουμς από"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Playlist"
+msgid "Show all"
+msgstr "Δείξτα όλα"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Πρόσθεσε όλα τα τραγούδια από"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Άλμπουμς από"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Αναπαραγωγή άλμπουμ"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Playlist"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Πρόσθεσε όλα τα τραγούδια από"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Προσθήκη σε νέα playlist"
-#: ../../templates/show_artist.inc.php:91
-#, fuzzy, php-format
-msgid "Add All Songs By %s"
-msgstr "Πρόσθεσε όλα τα τραγούδια από"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, fuzzy, php-format
-msgid "Add Random Songs By %s"
-msgstr "Πρόσθεσε τυχαία τραγούδια από"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Καλλιτέχνης και Τίτλος"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Επεξεργασία καλλιτέχνη"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Δείξε Εξώφυλλα"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Άλμπουμς"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Παρόμοιοι καλλιτέχνες"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Καλλιτέχνης και Τίτλος"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Χρόνος"
@@ -3246,6 +3729,44 @@ msgstr "Παρόμοιοι καλλιτέχνες"
msgid "Click to close window"
msgstr "Κλικ για κλείσιμο παραθύρου"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Ναι"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Όχι"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Είδος"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Κατάσταση"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Παρόμοιοι καλλιτέχνες"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Επικύρωση"
@@ -3263,68 +3784,83 @@ msgstr "Καθαρισμός"
msgid "Update"
msgstr "Ενημέρωση"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Τελευταία επικύρωση"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Τελευταία Προσθήκη"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
#, fuzzy
msgid "Last Clean"
msgstr "Τελευταία τον είδαμε"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Δεν βρέθηκαν κατάλογοι"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Έκδοση"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Ενεργοποίηση"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Δεν βρέθηκαν εγγραφές"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Αρχίζουν από"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Stream URL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Κατάσταση"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Δεν βρέθηκαν κατάλογοι"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, fuzzy, php-format
@@ -3335,7 +3871,45 @@ msgstr "Καθαρισμός του"
msgid "Checking"
msgstr "Έλεγχος"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Ημερομηνία"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Ενέργεια"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Δεν βρέθηκαν απενεργοποιημένα τραγούδια"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Τελευταία τον είδαμε"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Παρόμοιοι καλλιτέχνες"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Συνέχιση"
@@ -3377,89 +3951,88 @@ msgstr ""
msgid "PHP Settings"
msgstr ""
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr ""
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Τιμή"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr ""
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
#, fuzzy
msgid "Override Execution Time"
msgstr "Εγγραφή πάνω σε ήδη υπάρχουσα βάση"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
#, fuzzy
msgid "Failed"
msgstr "Αρχείο"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr ""
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr ""
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr ""
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Προτίμηση"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Ενημέρωση Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Έκδοση"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Εγκατάσταση"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3482,49 +4055,49 @@ msgstr "Δημιουργία Δημοκρατικής playlist"
msgid "Playing from base Playlist"
msgstr "Αναπαραγωγή από τη βασική playlist"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Ψήφοι"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Αφαίρεση Ψήφου"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Προσθήκη Ψήφου"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Απαγορεύεται η πρόσβαση"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Το συγκεκριμένο στοιχείο έχει μαρκαριστεί"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
msgid ""
"You have been redirected to this page because you do not have access to this "
"function."
msgstr ""
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
msgid ""
"You have been redirected to this page because you attempted to access a "
"function that is disabled in the demo."
msgstr ""
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Χρόνος Προσθήκης"
@@ -3553,15 +4126,16 @@ msgstr "Διπλότυπα τραγούδια"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Τραγούδι"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Διάρκεια"
@@ -3663,12 +4237,9 @@ msgid "Created by: %s for %s"
msgstr ""
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Κομμάτι"
@@ -3680,29 +4251,29 @@ msgstr "Επεξεργασία υπάρχοντος Χρήστη"
msgid "User Properties"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
#, fuzzy
msgid "Other Options"
msgstr "Επιλογές RPC"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
#, fuzzy
msgid "Flash"
msgstr "Μαρκάρισμα"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Ενημέρωση Χρήστη"
@@ -3748,23 +4319,35 @@ msgstr "Βάλε εξώφυλλο"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Πληροφορίες"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Εισαγωγή playlist από αρχείο"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Τύπος playlist"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Εισαγωγή playlist"
@@ -3777,24 +4360,31 @@ msgstr "Άλμπουμς της στιγμής"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Έκδοση"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Βήμα 1 - Δημιουργία Βάσης Δεδομένων"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Βήμα 2- Δημιουργία του ampache.cfg.php αρχείου"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Βήμα 3 - Δημιουργία αρχικού λογαριασμού"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3803,57 +4393,100 @@ msgstr ""
"Αυτό το βήμα δημιουργεί τον αρχικό λογαριασμό Διαχειριστή του Ampache. Μόλις "
"ο λογαριασμός δημιουργηθεί θα ανακατευθυνθείτε στη σελίδα ειδόδου"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Δημιουργία Λογαριασμού Διαχειριστή"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Δημιουργία Λογαριασμού"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Απαιτήσεις"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Αυτή η σελίδα χειρίζεται την εγκατάσταση της βάσης δεδομένων και τη "
+"δημιουργία του αρχείου ρυθμίσεων. Πριν συνεχίσετε, βεβαιωθείτε ότι "
+"ικανοποιείτε τις ακόλουθες προϋποθέσεις"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Ένας MySQL Server με όνομα χρήστη και κωδικό που μπορεί να δημιουργεί/"
+"τροποποιεί βάσεις"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Ο webserver έχει δικαιώματα ανάγνωσης στο /sql/ampache.sql αρχείο και στο "
+"αρχείο /config/ampache.cfg.php.dist"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Μόλις βεβαιωθείτε ότι ικανοποιείτε τις παραπάνω προϋποθέσεις, παρακαλώ "
+"συμπληρώστε τις πληροφορίες παρακάτω. Θα σας ζητηθούν μόνο οι απαραίτητες "
+"για τις επιθυμητές ρυθμίσεις. Αν θελήσετε να κάνετε αργότερα αλλαγές απλώς "
+"επεξεργαστείτε το /config/ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "ΕΛΕΓΧΟΣ"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "ΚΑΤΑΣΤΑΣΗ"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "ΠΕΡΙΓΡΑΦΗ"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "είναι μη αναγνώσιμο από τον ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Υπάρχει ήδη το αρχείο ρυθμίσεων ampache.cfg.php"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3867,62 +4500,62 @@ msgstr ""
"κατεβάσετε το αρχείο ρυθμίσεων. Στη συνέχεια τοποθετήστε το κατεβασμένο "
"αρχείο στο φάκελο /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Δημιουργία Αρχείο Ρυθμίσεων"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Διαδρομή web"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Επιθυμητό όνομα βάσης"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "Όνομα Εξυπηρετητή MySQL"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Όνομα χρήστη MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Κωδικός MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Ανάγνωση/Εγγραφή"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Υπάρχει ήδη το αρχείο ρυθμίσεων ampache.cfg.php"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Διαμορφώθηκε το αρχείο ampache.cfg.php;"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Έλεγχος για αρχείο ρυθμίσεων"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Συνεχίστε στο Βήμα 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3933,58 +4566,58 @@ msgstr ""
"λογαριασμό mysql με δικαιώματα δημιουργίας βάσης. Αυτό μπορεί να διαρκέσει "
"λίγο ανάλογα με την ταχύτητα του υπολογιστή σας"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Εισαγωγή στοιχείων στη βάση"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Επιθυμητό όνομα βάσης"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Όνομα Διαχειριστή MySQL"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Κωδικός Διαχειριστή MySQL"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Δημιουργία Χρήστη της νέας βάσης"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Όνομα Χρήστη νέας βάσης"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Κωδικός Χρήστη νέας βάσης"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Εγγραφή πάνω σε ήδη υπάρχουσα βάση"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
#, fuzzy
msgid "Use Existing Database"
msgstr "Εισαγωγή βάσης"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Εισαγωγή βάσης"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Εγκατάσταση"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Έναρξη ρύθμισης"
@@ -4002,11 +4635,6 @@ msgstr "Δείξε Μοναδική"
msgid "Show All"
msgstr "Δείξτα όλα"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Ημερομηνία"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4017,12 +4645,12 @@ msgstr "Διεύθυνση IP"
msgid "Manage Radio Stations"
msgstr "Ραδιοφωνικοί Σταθμοί"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Όνομα playlist"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4068,48 +4696,48 @@ msgstr "Δείξε Στιγμιότυπα Τοπικής Αναπαραγωγή
msgid "Edit Instance"
msgstr "Επεξεργασία Στιγμιοτύπου"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Έλεγχος Τοπικής Αναπαραγωγής"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Σίγαση"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Μείωση Έντασης"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Αύξηση Έντασης"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Ένταση"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Επανάληψη"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Να με θυμάσαι"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Κωδικός"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Είσοδος"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Εγγραφή"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Μήνυμα της Ημέρας"
@@ -4149,11 +4777,6 @@ msgstr ""
msgid "Yourself"
msgstr "ώρες"
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Ampache Debug"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Θέμα"
@@ -4218,6 +4841,7 @@ msgstr "Δημιουργία νέου playlist"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Αντικείμενο"
@@ -4231,36 +4855,18 @@ msgstr "Μόνιμο"
msgid "Date Added"
msgstr ""
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Αναπαραγωγή άλμπουμ"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Αναπαραγωγή άλμπουμ"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Προσθήκη άλμπουμ"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Προχωρημένες Επιλογές"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Άλμπουμς"
+msgid "No missing album found"
+msgstr "Δεν βρέθηκαν απενεργοποιημένα τραγούδια"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Παρόμοιοι καλλιτέχνες"
@@ -4279,125 +4885,60 @@ msgstr ""
msgid "%s of 5"
msgstr ""
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Ομοιοποίηση στάθμης κομματιών"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Αναπαραγωγή άλμπουμ"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Playlist"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Προσθήκη όλων"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Προσθήκη στην τύχη"
+#, fuzzy
+msgid "Create channel"
+msgstr "Ημερομηνία Δημιουργίας"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Θέλετε σίγουρα να διαγράψετε αυτόν τον κατάλογο;"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Playlist"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Playlist"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Η playlist δημιουργήθηκε"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Όνομα playlist"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "Τραγούδια"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Ιδιοκτήτης"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Παρόμοιοι καλλιτέχνες"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Τραγούδια από playlist"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Τραγούδια από playlist"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Είδος"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "Βασική playlist"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Έκδοση"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Απενεργοποίηση"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4405,13 +4946,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Προτιμήσεις Διαχείρισης"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Εφαρμογή σε όλα"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Επίπεδο πρόσβασης"
@@ -4446,6 +4987,20 @@ msgstr "Πλήθος Στοιχείων"
msgid "Unlimited"
msgstr "Απεριόριστα"
+#: ../../templates/show_random.inc.php:68
+#, fuzzy, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "λεπτά"
+msgstr[1] "λεπτά"
+
+#: ../../templates/show_random.inc.php:70
+#, fuzzy, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "ώρα"
+msgstr[1] "ώρα"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Όριο μεγέθους"
@@ -4454,22 +5009,78 @@ msgstr "Όριο μεγέθους"
msgid "Enqueue"
msgstr "Βάλτα στην ουρά"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Παίχτηκαν Τελευταία"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "δευτερόλεπτα νωρίτερα"
+msgstr[1] "δευτερόλεπτα νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "λεπτά νωρίτερα"
+msgstr[1] "λεπτά νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "ώρες νωρίτερα"
+msgstr[1] "ώρες νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "μέρες νωρίτερα"
+msgstr[1] "μέρες νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "εβδομάδες νωρίτερα"
+msgstr[1] "εβδομάδες νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "μήνες νωρίτερα"
+msgstr[1] "μήνες νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "χρόνια νωρίτερα"
+msgstr[1] "χρόνια νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "δευτερόλεπτα νωρίτερα"
+msgstr[1] "δευτερόλεπτα νωρίτερα"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Δεν βρέθηκαν απενεργοποιημένα τραγούδια"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Παρόμοιοι καλλιτέχνες"
@@ -4543,7 +5154,7 @@ msgstr "Προσθήκη όλων"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Προχωρημένη Αναζήτηση"
@@ -4569,16 +5180,54 @@ msgstr ""
msgid "Add Search Results"
msgstr ""
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Αντικείμενο"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Ημερομηνία Δημιουργίας"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Τελευταία επικύρωση"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Δημόσια"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Στείλε με την προσθήκη"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Προσθήκη όλων"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Αποθήκευση"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Εισαγωγή playlist"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Παρόμοιοι καλλιτέχνες"
@@ -4596,57 +5245,44 @@ msgstr "Λεπτομέρειες"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Σύνδεσμοι"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
msgid "Label"
msgstr "Ετικέτα"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Γλώσσα"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
msgid "Catalog Number"
msgstr "Αριθμός καταλόγους"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
msgid "Last Updated"
msgstr "Τελευταία Ενημέρωση"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "Δείξε playlist"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Τραγούδια από playlist"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
#, fuzzy
msgid "Song Information"
msgstr "Πληροφορίες"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Τίτλος Τραγουδιού"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Δεν βρέθηκαν απενεργοποιημένα τραγούδια"
@@ -4667,13 +5303,31 @@ msgstr "Μέγεθος Καταλόγου"
msgid "Catalog Time"
msgstr "Χρόνος Καταλόγου"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Δημοφιλέστερα Άλμπουμς"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Δημοφιλέστεροι Καλλιτέχνες"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Τίτλος Τραγουδιού"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Θέλετε σίγουρα να διαγράψετε αυτόν τον κατάλογο;"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Ampache Debug"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4779,10 +5433,22 @@ msgstr "Έλεγχος για τις απαραίτητες επεκτάσεις
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Υποστήριξη PHP Session"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr "Έλεγχος για τις απαραίτητες επεκτάσεις mysql που είναι απαραίτητες"
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Τραγούδια ενεργοποιήθηκαν"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4792,32 +5458,32 @@ msgstr ""
"θέση να τροποποιεί τα όρια της μνήμης. Δεν απαιτείται, αλλά χωρίς αυτό "
"ορισμένα χαρακτηριστικά του ampache ίσως δε λειτουργούν σωστά"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
msgid "PHP memory limit override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Εγγραφή πάνω σε ήδη υπάρχουσα βάση"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4827,12 +5493,12 @@ msgstr ""
"αρχείο δε βρίσκεται στη σωστή θέση ή ο webserver δεν έχει τα απαραίτητα "
"δικαιώματα"
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Δημιουργία Δημοκρατικής playlist"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4841,12 +5507,12 @@ msgstr ""
"Έλεγχος για το αν έχετε ορίσει όλες τις μεταβλητές ρύθμισης και μπορούν να "
"μεταφερθούν στο αρχείο ρυθμίσεων"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Σύνδεση με Βάση"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4855,23 +5521,23 @@ msgstr ""
"Αυτό επιχειρεί να συνδεθεί στη βάση χρησιμοποιώντας τις τιμές που έχουν "
"ορισθεί στο ampache.cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Επιθυμητό όνομα βάσης"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
msgid ""
"This checks a few key tables to make sure that you have successfully "
"inserted the Ampache database and that the user has access to the database"
msgstr ""
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Διαδρομή web"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4907,100 +5573,76 @@ msgstr "Το κλειδί επικύρωσης είναι λάθος"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Εργαλεία Χρήστη"
+msgid "User Favorites"
+msgstr "Αγαπημένα"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Ημερομηνία Δημιουργίας"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Τελευταία τον είδαμε"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Δραστηριότητα"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Κατάσταση"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Ο Χρήστης είναι μέσα τώρα"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Ο Χρήστης είναι εκτός τώρα"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Ενεργή playlist"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Προτεινόμενοι Καλλιτέχνες"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Προτεινόμενα άλμπουμς"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Προτεινόμενα Τραγούδια"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Συμφωνία τελικής χρήσης"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Δέχομαι"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Πληροφορίες Χρήστη"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Απαιτήσεις"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Εγγραφή Χρήστη"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Ονοματεπώνυμο"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Ημερομηνία Εγγραφής"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Τελευταία IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "Συνδεδεμένος"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Αγαπημένοι καλλιτέχνες"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Αγαπημένα άλμπουμς"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Αγαπημένα Τραγούδια"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5012,21 +5654,19 @@ msgstr "Καθαρισμός στατιστικών Καταλόγου"
msgid "Updating the %s catalog"
msgstr "Ενημέρωση του"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, fuzzy, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "τραγούδια που ελέγχονται τα tags"
+msgstr[1] "τραγούδια που ελέγχονται τα tags"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Επικυρωμένα"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Τραγούδια από playlist"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
#, fuzzy
msgid "Resolution"
@@ -5038,7 +5678,7 @@ msgid "No video found"
msgstr "Δεν βρέθηκαν εγγραφές"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Σχετικό Καλλιτέχνης"
@@ -5080,53 +5720,48 @@ msgstr "Ρύθμιση Εξυπηρετητή"
msgid "Browse"
msgstr "Περιήγηση"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Τίτλος Τραγουδιού"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Τώρα παίζουν"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
#, fuzzy
msgid "Import"
msgstr "Εξαγωγή"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Προχωρημένα"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
#, fuzzy
msgid "Newest"
msgstr "Πρόσφατα άλμπουμς"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Αξιολογημένα"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Μαρκάρισμα"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Λειτουργικές Μονάδες"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Έξοδος"
@@ -5179,7 +5814,7 @@ msgstr "Διαχείριση playlist"
msgid "Account"
msgstr "Λογαριασμός"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5187,20 +5822,15 @@ msgid ""
"is: %s."
msgstr ""
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+msgid "The following updates need to be performed"
msgstr ""
-#: ../../update.php:67
+#: ../../update.php:76
#, fuzzy
msgid "Update Now!"
msgstr "Ενημέρωση Τραγουδιού"
-#: ../../update.php:71
-#, fuzzy
-msgid "Ampache Installation."
-msgstr "Εγκατάσταση"
-
#: Database words
#, fuzzy
msgid "Allow Downloads"
@@ -5315,16 +5945,160 @@ msgstr ""
msgid "Streaming"
msgstr "Ροή"
-#: Database words
-#, fuzzy
-msgid "Interface"
-msgstr "Περιβάλλον Web"
-
#: Database words
#, fuzzy
msgid "System"
msgstr "Στοιχείο"
+#~ msgid "Related Album"
+#~ msgstr "Σχετικό άλμπουμ"
+
+#~ msgid "Related Genre"
+#~ msgstr "Σχετικό Είδος"
+
+#~ msgid "Pure Random"
+#~ msgstr "Στην τύχη"
+
+#, fuzzy
+#~ msgid "Related Tag"
+#~ msgstr "Σχετικό άλμπουμ"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Αναπαραγωγή άλμπουμ"
+
+#~ msgid "Play Album"
+#~ msgstr "Αναπαραγωγή άλμπουμ"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Αναπαραγωγή άλμπουμ"
+
+#~ msgid "Add Album"
+#~ msgstr "Προσθήκη άλμπουμ"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Αναπαραγωγή άλμπουμ"
+
+#~ msgid "Flag"
+#~ msgstr "Μαρκάρισμα"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Δημοφιλέστερα είδη"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Δημοφιλέστερα Τραγούδια"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Δημοφιλέστερα Live Streams"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Δημοφιλέστερα Tags"
+
+#, fuzzy
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Δείξε όλα τα τραγούδια από"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Πρόσθεσε όλα τα τραγούδια από"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Πρόσθεσε όλα τα τραγούδια από"
+
+#, fuzzy
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Πρόσθεσε όλα τα τραγούδια από"
+
+#, fuzzy
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Πρόσθεσε τυχαία τραγούδια από"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Τύπος playlist"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Αναπαραγωγή άλμπουμ"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Αναπαραγωγή άλμπουμ"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Προσθήκη άλμπουμ"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Ομοιοποίηση στάθμης κομματιών"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Playlist"
+
+#~ msgid "Add Random"
+#~ msgstr "Προσθήκη στην τύχη"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Τραγούδια από playlist"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Τραγούδια από playlist"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Τραγούδια από playlist"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Εργαλεία Χρήστη"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Προτεινόμενοι Καλλιτέχνες"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Προτεινόμενα άλμπουμς"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Προτεινόμενα Τραγούδια"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Αγαπημένοι καλλιτέχνες"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Αγαπημένα άλμπουμς"
+
+#~ msgid "Favorite Songs"
+#~ msgstr "Αγαπημένα Τραγούδια"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Τραγούδια από playlist"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Μαρκάρισμα"
+
+#, fuzzy
+#~ msgid "Ampache Installation."
+#~ msgstr "Εγκατάσταση"
+
#~ msgid "Make Sticky"
#~ msgstr "Κάντο μόνιμο"
@@ -5488,18 +6262,12 @@ msgstr "Στοιχείο"
#~ msgid "Search Disabled Songs"
#~ msgstr "Αναζήτηση στα απενεργοποιημένα τραγούδια"
-#~ msgid "Edit Album"
-#~ msgstr "Επεξεργασία άλμπουμ"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Μαρκάρισμα για αναθεώρηση tags"
#~ msgid "Update Album"
#~ msgstr "Ενημέρωση άλμπουμ"
-#~ msgid "Edit Artist"
-#~ msgstr "Επεξεργασία καλλιτέχνη"
-
#~ msgid "Update Artist"
#~ msgstr "Ενημέρωση καλλιτέχνη"
@@ -5607,18 +6375,6 @@ msgstr "Στοιχείο"
#~ msgid "Ampache.cfg.php Configured?"
#~ msgstr "Διαμορφώθηκε το αρχείο ampache.cfg.php;"
-#, fuzzy
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "ημέρα"
-#~ msgstr[1] "ημέρα"
-
-#, fuzzy
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "ώρα"
-#~ msgstr[1] "ώρα"
-
#, fuzzy
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
@@ -5631,12 +6387,6 @@ msgstr "Στοιχείο"
#~ msgid "Reason"
#~ msgstr "Αιτία"
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Η εκκαθάριση των καταλόγων Ολοκληρώθηκε"
-#~ msgstr[1] "Η εκκαθάριση των καταλόγων Ολοκληρώθηκε"
-
#~ msgid "RPC Options"
#~ msgstr "Επιλογές RPC"
@@ -5667,24 +6417,6 @@ msgstr "Στοιχείο"
#~ msgid "PHP recommendation settings"
#~ msgstr "Συστάσεις"
-#, fuzzy
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "τραγούδια που ελέγχονται τα tags"
-#~ msgstr[1] "τραγούδια που ελέγχονται τα tags"
-
-#, fuzzy
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "λεπτά"
-#~ msgstr[1] "λεπτά"
-
-#, fuzzy
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "ώρα"
-#~ msgstr[1] "ώρα"
-
#~ msgid "file"
#~ msgstr "αρχείο"
@@ -5698,18 +6430,6 @@ msgstr "Στοιχείο"
#~ msgstr ""
#~ "Υπήρξε πρόβλημα με το ανέβασμα του αρχείο. Κανένα %s αρχείο δεν ανέβηκε"
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Τραγούδια αφαιρέθηκαν"
-#~ msgstr[1] "Τραγούδια αφαιρέθηκαν"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Επεξεργασμένα απενεργοποιημένα τραγούδια"
-#~ msgstr[1] "Επεξεργασμένα απενεργοποιημένα τραγούδια"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Δεν βρέθηκαν εγγραφές"
@@ -5745,12 +6465,6 @@ msgstr "Στοιχείο"
#~ msgid "Keywords"
#~ msgstr "Λέξεις κλειδιά"
-#~ msgid "Yes"
-#~ msgstr "Ναι"
-
-#~ msgid "No"
-#~ msgstr "Όχι"
-
#~ msgid "Min Bitrate"
#~ msgstr "Ελάχιστο Bitrate"
@@ -5999,9 +6713,6 @@ msgstr "Στοιχείο"
#~ msgid "Sections"
#~ msgstr "Ενότητες"
-#~ msgid "Favorites"
-#~ msgstr "Αγαπημένα"
-
#~ msgid "catalog"
#~ msgstr "κατάλογος"
diff --git a/locale/en_GB/LC_MESSAGES/messages.mo b/locale/en_GB/LC_MESSAGES/messages.mo
index 405e1d9c..9b583ca8 100644
Binary files a/locale/en_GB/LC_MESSAGES/messages.mo and b/locale/en_GB/LC_MESSAGES/messages.mo differ
diff --git a/locale/en_GB/LC_MESSAGES/messages.po b/locale/en_GB/LC_MESSAGES/messages.po
index ca645188..bee0ad3c 100644
--- a/locale/en_GB/LC_MESSAGES/messages.po
+++ b/locale/en_GB/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2009 THE Ampache'S COPYRIGHT HOLDER
# This file is distributed under the same license as the Ampache package.
# momo-i , 2009.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN $Rev$\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-05-06 22:00+0900\n"
"Last-Translator: momo-i \n"
"Language-Team: English (British)\n"
@@ -25,7 +25,7 @@ msgstr ""
msgid "Your Access List Entry has been removed"
msgstr ""
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr ""
@@ -34,7 +34,7 @@ msgid "Are you sure you want to permanently delete"
msgstr ""
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr ""
@@ -42,7 +42,7 @@ msgstr ""
msgid "Your new Access Control List(s) have been created"
msgstr ""
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr ""
@@ -68,14 +68,29 @@ msgstr ""
msgid "Catalog Delete"
msgstr ""
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr ""
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Song Removed"
+msgstr[1] "Songs Removed"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr ""
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Disabled Song Processed"
+msgstr[1] "Disabled Songs Processed"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr ""
@@ -210,116 +225,145 @@ msgstr ""
"Your Database and associated tables have been updated to match your "
"currently configured charset"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr ""
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr ""
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr ""
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr ""
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr ""
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr ""
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr ""
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr ""
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr ""
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr ""
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr ""
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr ""
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr ""
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr ""
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr ""
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, php-format
msgid "%s has been Deleted"
msgstr ""
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr ""
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr ""
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr ""
+#: ../../admin/users.php:181
+msgid "User Avatar Delete"
+msgstr ""
+
+#: ../../admin/users.php:195
+msgid "User Avater Deleted"
+msgstr ""
+
+#: ../../admin/users.php:195
+msgid "User Avatar has been deleted"
+msgstr ""
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+msgid "Generate new API Key"
+msgstr ""
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "New user API Key has been generated."
+msgstr ""
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr ""
@@ -380,80 +424,136 @@ msgstr ""
msgid "Show Artists starting with"
msgstr ""
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
msgid "- All Catalog Operations"
msgstr ""
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
msgid "- Catalog Clean"
msgstr ""
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
msgid "- Catalog Verify"
msgstr ""
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
msgid "- Catalog Add"
msgstr ""
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
msgid "- Catalog Art Gather"
msgstr ""
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+msgid "- Playlist Import"
+msgstr ""
+
+#: ../../bin/catalog_update.inc:84
msgid "Starting Catalog Operations..."
msgstr ""
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, php-format
msgid "Reading: %s"
msgstr ""
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
msgid "- Starting Add - "
msgstr ""
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr ""
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
msgid "- Catalog Update -"
msgstr ""
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
msgid "Clean Catalogs"
msgstr ""
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
msgid "Verify Catalogs"
msgstr ""
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
msgid "Add to Catalogs"
msgstr ""
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+msgid "Import Playlists"
+msgstr ""
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr ""
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+msgid "- Port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:69
+msgid "Starting Channel..."
+msgstr ""
+
+#: ../../bin/channel_run.inc:73
+msgid "Unknown channel."
+msgstr ""
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -569,12 +669,12 @@ msgstr ""
msgid "File Moved..."
msgstr ""
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, php-format
msgid "Created %s user %s with password %s"
msgstr ""
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
msgid "User creation failed"
msgstr ""
@@ -694,6 +794,18 @@ msgstr ""
msgid "Error: Unable to copy file to %s"
msgstr ""
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -719,11 +831,43 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+msgid "Broadcast Delete"
+msgstr ""
+
+#: ../../broadcast.php:49
+msgid "Broadcast Deleted"
+msgstr ""
+
+#: ../../broadcast.php:49
+msgid "The Broadcast has been deleted"
+msgstr ""
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr ""
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+msgid "Channel Created"
+msgstr ""
+
+#: ../../channel.php:71
+msgid "Channel Delete"
+msgstr ""
+
+#: ../../channel.php:86
+msgid "Channel Deleted"
+msgstr ""
+
+#: ../../channel.php:86
+msgid "The Channel has been deleted"
+msgstr ""
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr ""
@@ -810,41 +954,46 @@ msgstr ""
msgid "Stream Access"
msgstr ""
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr ""
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr ""
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr ""
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr ""
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr ""
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -895,162 +1044,293 @@ msgstr ""
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
msgid "Invalid Username/Password"
msgstr ""
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr ""
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+msgid "Access denied to this playlist."
+msgstr ""
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr ""
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr ""
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
msgid "Update available"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
msgid "See"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
msgid "changes"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "hour"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
msgid "download"
msgstr ""
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+msgid "Broadcast edit"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr ""
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr ""
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr ""
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr ""
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr ""
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr ""
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr ""
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
msgid "Smart Playlists"
msgstr ""
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr ""
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr ""
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr ""
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr ""
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
msgid "Wanted Albums"
msgstr ""
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+msgid "Shared Objects"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+msgid "Channels"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr ""
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr ""
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "day"
+msgstr[1] "days"
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "%d hour"
+msgstr[1] "%d hours"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr ""
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Catalog Clean Done. %d file removed."
+msgstr[1] "Catalog Clean Done. %d files removed."
+
+#: ../../lib/class/catalog.class.php:1054
#, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr ""
+#: ../../lib/class/catalog.class.php:1204
+msgid "Failed to create playlist."
+msgstr ""
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+msgid "Start Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr ""
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1061,34 +1341,23 @@ msgid "Primary"
msgstr ""
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr ""
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr ""
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr ""
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr ""
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr ""
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1119,22 +1388,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr ""
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr ""
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr ""
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr ""
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr ""
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1150,7 +1403,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1177,8 +1429,8 @@ msgstr ""
"\n"
"Thank you for registering\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1186,6 +1438,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"A new user has registered\n"
@@ -1266,107 +1519,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr ""
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr ""
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr ""
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr ""
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr ""
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr ""
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr ""
@@ -1374,39 +1627,42 @@ msgstr ""
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr ""
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
msgid "# Played"
msgstr ""
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr ""
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr ""
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1414,152 +1670,137 @@ msgstr ""
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr ""
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr ""
+
+#: ../../lib/class/search.class.php:372
msgid "Smart Playlist"
msgstr ""
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr ""
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr ""
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr ""
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr ""
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr ""
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
msgid "No updates needed."
msgstr ""
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr ""
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+msgid "User avatar"
+msgstr ""
+
+#: ../../lib/class/wanted.class.php:145
+msgid "Unknown Artist"
+msgstr ""
+
+#: ../../lib/class/wanted.class.php:272
msgid "Accept"
msgstr ""
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr ""
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
msgid "Add to wanted list"
msgstr ""
@@ -1638,134 +1879,138 @@ msgstr ""
msgid "Administrative user creation failed: %s"
msgstr ""
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr ""
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr ""
+
+#: ../../lib/login.php:131
+msgid "Unable to create local account"
+msgstr ""
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr ""
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr ""
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr ""
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr ""
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr ""
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr ""
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
msgid "Web Player"
msgstr ""
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr ""
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr ""
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr ""
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr ""
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr ""
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr ""
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr ""
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr ""
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr ""
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr ""
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr ""
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr ""
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr ""
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
msgid "Year ascending"
msgstr ""
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1797,7 +2042,8 @@ msgstr ""
msgid "Off the Charts!"
msgstr ""
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr ""
@@ -1813,14 +2059,14 @@ msgstr ""
msgid "Random Play"
msgstr ""
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr ""
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr ""
@@ -1854,7 +2100,7 @@ msgid "Browse Music"
msgstr ""
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr ""
@@ -1862,30 +2108,14 @@ msgstr ""
msgid "Add New"
msgstr ""
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr ""
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr ""
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr ""
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr ""
-
-#: ../../login.php:118
-msgid "Unable to create local account"
-msgstr ""
-
#: ../../lostpassword.php:39
msgid "Password has been sent"
msgstr ""
@@ -1909,11 +2139,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -1979,11 +2211,11 @@ msgstr ""
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr ""
@@ -2046,48 +2278,48 @@ msgid "Error: Unable to change to directory %s"
msgstr ""
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr ""
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr ""
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2102,13 +2334,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr ""
@@ -2215,20 +2447,20 @@ msgstr ""
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr ""
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr ""
@@ -2245,14 +2477,46 @@ msgstr ""
msgid "Playlist Imported"
msgstr ""
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr ""
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr ""
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+msgid "Server registration completed."
+msgstr ""
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr ""
@@ -2269,35 +2533,35 @@ msgstr ""
msgid "Radio Station Added"
msgstr ""
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr ""
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr ""
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr ""
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr ""
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr ""
-#: ../../register.php:94
+#: ../../register.php:95
msgid "Invalid email address"
msgstr ""
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr ""
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr ""
@@ -2314,6 +2578,11 @@ msgstr ""
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2322,43 +2591,74 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+msgid "Object Shared"
+msgstr ""
+
+#: ../../share.php:96
+msgid "Share Delete"
+msgstr ""
+
+#: ../../share.php:110
+msgid "Share Deleted"
+msgstr ""
+
+#: ../../share.php:110
+msgid "The Share has been deleted"
+msgstr ""
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr ""
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr ""
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr ""
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr ""
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr ""
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr ""
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr ""
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr ""
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2366,93 +2666,67 @@ msgstr ""
msgid "Ampache error page"
msgstr ""
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+msgid "Ampache"
+msgstr ""
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr ""
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr ""
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr ""
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+msgid "Favorites"
+msgstr ""
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr ""
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr ""
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr ""
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr ""
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"This Page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following pre-requisites"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"A MySQL Server with a username and password that can create/modify databases"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Your webserver has read access to the /sql/ampache.sql file and the /config/"
-"ampache.cfg.php.dist file"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Once you have ensured that you have the above requirements please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your ampache install at a later "
-"date simply edit /config/ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr ""
@@ -2462,7 +2736,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
msgid "Limit"
msgstr ""
@@ -2471,27 +2745,28 @@ msgid "Add to Playlist"
msgstr ""
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr ""
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr ""
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr ""
@@ -2499,29 +2774,23 @@ msgstr ""
msgid "Add Dynamic Items"
msgstr ""
+#: ../../templates/rightbar.inc.php:60
+msgid "Random Song"
+msgstr ""
+
+#: ../../templates/rightbar.inc.php:63
+msgid "Random Artist"
+msgstr ""
+
+#: ../../templates/rightbar.inc.php:66
+msgid "Random Album"
+msgstr ""
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
+msgid "Random Playlist"
msgstr ""
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr ""
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2554,15 +2823,15 @@ msgstr ""
msgid "Access Control Entries"
msgstr ""
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr ""
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr ""
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2571,88 +2840,82 @@ msgstr ""
msgid "Level"
msgstr ""
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr ""
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr ""
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr ""
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr ""
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr ""
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr ""
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr ""
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr ""
@@ -2773,13 +3036,76 @@ msgid "Gather Album Art"
msgstr ""
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr ""
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr ""
+#: ../../templates/show_add_channel.inc.php:23
+msgid "Create Channel"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+msgid "Stream Source"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+msgid "Stream Type"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr ""
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2792,16 +3118,16 @@ msgstr ""
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr ""
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr ""
@@ -2810,11 +3136,6 @@ msgstr ""
msgid "Create a new playlist"
msgstr ""
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr ""
-
#: ../../templates/show_adds_catalog.inc.php:23
msgid "Starting New Song Search"
msgstr ""
@@ -2838,6 +3159,34 @@ msgstr ""
msgid "Reading"
msgstr ""
+#: ../../templates/show_add_share.inc.php:23
+msgid "Create Share"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:29
+msgid "Shared Object"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+msgid "Allow Stream"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+msgid "Allow Download"
+msgstr ""
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr ""
@@ -2863,17 +3212,22 @@ msgstr ""
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr ""
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr ""
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr ""
@@ -2892,248 +3246,331 @@ msgid "Invalid"
msgstr ""
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr ""
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr ""
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
-msgid "Play album"
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
+msgid "Play last"
msgstr ""
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
+msgid "Add to temporary playlist"
msgstr ""
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
-msgid "Play Add Album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
msgstr ""
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-msgid "Save Tracks Order"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Do you really want to reset album art?"
msgstr ""
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr ""
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr ""
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Do you really want to update from tags?"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr ""
-#: ../../templates/show_album_row.inc.php:28
-msgid "Play add album"
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
+msgid "Save Tracks Order"
msgstr ""
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
msgid "Album edit"
msgstr ""
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Do you really want to update from tags?"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr ""
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+msgid "Add to existing playlist"
+msgstr ""
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr ""
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr ""
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
msgid "No album found"
msgstr ""
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr ""
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, php-format
-msgid "Show Albums By %s"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
-msgid "Play artist"
+#: ../../templates/show_artist.inc.php:75
+msgid "Show all"
msgstr ""
#: ../../templates/show_artist.inc.php:79
-#, php-format
-msgid "Play All Songs By %s"
+#: ../../templates/show_artist.inc.php:81
+msgid "Show albums"
msgstr ""
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
-msgid "Play add artist"
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+msgid "Play all"
msgstr ""
-#: ../../templates/show_artist.inc.php:85
-#, php-format
-msgid "Play Add All Songs By %s"
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+msgid "Play all last"
msgstr ""
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+msgid "Add all to temporary playlist"
msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
msgstr ""
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+msgid "Artist edit"
+msgstr ""
+
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr ""
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr ""
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+msgid "Missing Albums"
+msgstr ""
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr ""
-#: ../../templates/show_artist_row.inc.php:53
-msgid "Artist edit"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr ""
@@ -3146,6 +3583,42 @@ msgstr ""
msgid "Click to close window"
msgstr ""
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr ""
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr ""
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:31
+msgid "Started"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+msgid "No broadcast found"
+msgstr ""
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr ""
@@ -3163,66 +3636,77 @@ msgstr ""
msgid "Update"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
msgid "No catalog found"
msgstr ""
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr ""
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr ""
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr ""
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr ""
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+msgid "Start Date"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:40
+msgid "Stream Url"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:41
+msgid "State"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:57
+msgid "No channel found"
+msgstr ""
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3233,7 +3717,41 @@ msgstr ""
msgid "Checking"
msgstr ""
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+msgid "Location"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:42
+msgid "No coming events found"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:48
+msgid "Past Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:67
+msgid "No past events found"
+msgstr ""
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr ""
@@ -3273,85 +3791,84 @@ msgstr ""
msgid "PHP Settings"
msgstr ""
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr ""
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr ""
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr ""
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr ""
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr ""
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr ""
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr ""
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr ""
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr ""
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
msgid "Installed Ampache version"
msgstr ""
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
msgid "Latest Ampache version"
msgstr ""
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3373,30 +3890,30 @@ msgstr ""
msgid "Playing from base Playlist"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr ""
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr ""
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
msgid "This event has been logged."
msgstr ""
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3405,13 +3922,13 @@ msgstr ""
"You've been redirected to this page because you do not have access to this "
"function."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"If you believe this is an error please contact an Ampache administrator."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3420,8 +3937,8 @@ msgstr ""
"You've been redirected to this page because you've attempted to access a "
"function that is disabled in the demo."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr ""
@@ -3450,15 +3967,16 @@ msgstr ""
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr ""
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr ""
@@ -3555,12 +4073,9 @@ msgid "Created by: %s for %s"
msgstr ""
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr ""
@@ -3572,27 +4087,27 @@ msgstr ""
msgid "User Properties"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr ""
@@ -3637,23 +4152,35 @@ msgstr ""
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr ""
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr ""
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr ""
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr ""
@@ -3665,22 +4192,28 @@ msgstr ""
#: ../../templates/show_install_account.inc.php:26
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
+msgid "Install progress"
+msgstr ""
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
msgid "Step 1 - Create the Ampache database"
msgstr ""
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
msgid "Step 2 - Create ampache.cfg.php"
msgstr ""
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
msgid "Step 3 - Set up the initial account"
msgstr ""
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3689,56 +4222,98 @@ msgstr ""
"This step creates your initial Ampache admin account. Once your admin "
"account has been created you will be directed to the login page"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr ""
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr ""
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr ""
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"This Page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following pre-requisites"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"A MySQL Server with a username and password that can create/modify databases"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Your webserver has read access to the /sql/ampache.sql file and the /config/"
+"ampache.cfg.php.dist file"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Once you have ensured that you have the above requirements please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your ampache install at a later "
+"date simply edit /config/ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr ""
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr ""
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr ""
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, php-format
msgid "%s is readable"
msgstr ""
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
msgid "ampache.cfg.php is writable"
msgstr ""
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3751,57 +4326,57 @@ msgstr ""
"will prompt you to download the config file. Please put the downloaded "
"config file in /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr ""
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr ""
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
msgid "Database Name"
msgstr ""
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr ""
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr ""
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr ""
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
msgid "Write"
msgstr ""
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
msgid "ampache.cfg.php exists?"
msgstr ""
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
msgid "ampache.cfg.php configured?"
msgstr ""
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
msgid "Recheck Config"
msgstr ""
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr ""
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3812,55 +4387,55 @@ msgstr ""
"mysql account with database creation rights. This step may take a while "
"depending upon the speed of your computer"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr ""
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr ""
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr ""
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr ""
-#: ../../templates/show_install.inc.php:59
-msgid "Create Database User for New Database?"
+#: ../../templates/show_install.inc.php:80
+msgid "Create Database User (for New Database)?"
msgstr ""
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr ""
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr ""
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr ""
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr ""
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr ""
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
msgid "Choose Installation Language"
msgstr ""
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr ""
@@ -3878,11 +4453,6 @@ msgstr ""
msgid "Show All"
msgstr ""
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr ""
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -3892,11 +4462,11 @@ msgstr ""
msgid "Manage Radio Stations"
msgstr ""
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
msgid "Play live stream"
msgstr ""
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -3941,47 +4511,47 @@ msgstr ""
msgid "Edit Instance"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr ""
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr ""
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
msgid "Lost password"
msgstr ""
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr ""
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr ""
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr ""
@@ -4017,10 +4587,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-msgid "Ampache"
-msgstr ""
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr ""
@@ -4084,6 +4650,7 @@ msgstr ""
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr ""
@@ -4097,31 +4664,16 @@ msgstr ""
msgid "Date Added"
msgstr ""
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-msgid "Play Album Preview"
-msgstr ""
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-msgid "Play Add Album Preview"
-msgstr ""
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-msgid "Add Album Preview"
-msgstr ""
-
#: ../../templates/show_missing_album.inc.php:72
msgid "Wanted actions"
msgstr ""
-#: ../../templates/show_missing_albums.inc.php:23
-msgid "Missing Albums"
+#: ../../templates/show_missing_albums.inc.php:44
+msgid "No missing album found"
msgstr ""
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
msgid "Similar Songs"
msgstr ""
@@ -4138,115 +4690,55 @@ msgstr ""
msgid "%s of 5"
msgstr ""
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr ""
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-msgid "Play All"
-msgstr ""
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-msgid "Play Add Playlist"
-msgstr ""
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr ""
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
+msgid "Create channel"
msgstr ""
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
msgid "Do you really want to delete the playlist?"
msgstr ""
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-msgid "Play playlist"
-msgstr ""
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-msgid "Play add playlist"
-msgstr ""
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
msgid "Playlist edit"
msgstr ""
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr ""
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr ""
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr ""
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
msgid "No playlist found"
msgstr ""
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-msgid "Play song"
-msgstr ""
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-msgid "Play add song"
-msgstr ""
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr ""
-
#: ../../templates/show_playlist_title.inc.php:23
#, php-format
msgid "%s %s (Playlist)"
msgstr ""
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
msgid "Installed Version"
msgstr ""
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr ""
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4254,13 +4746,13 @@ msgstr ""
msgid "Preference Administration"
msgstr ""
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr ""
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr ""
@@ -4295,6 +4787,20 @@ msgstr ""
msgid "Unlimited"
msgstr ""
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minute"
+msgstr[1] "%d minutes"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d hour"
+msgstr[1] "%d hours"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr ""
@@ -4303,21 +4809,70 @@ msgstr ""
msgid "Enqueue"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "%d minute"
+msgstr[1] "%d minutes"
+
+#: ../../templates/show_recently_played.inc.php:69
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:72
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:75
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:78
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:81
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:84
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:133
msgid "No recently item found"
msgstr ""
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
msgid "No similar artist found"
msgstr ""
@@ -4387,7 +4942,7 @@ msgstr ""
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr ""
@@ -4412,15 +4967,48 @@ msgstr ""
msgid "Add Search Results"
msgstr ""
+#: ../../templates/show_shared_objects.inc.php:27
+msgid "Object Type"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:29
+msgid "Creation Date"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:30
+msgid "Last Visit"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+msgid "Public Url"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:26
+msgid "Shared on"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr ""
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr ""
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
msgid "Smart Playlist edit"
msgstr ""
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
msgid "No smart playlist found"
msgstr ""
@@ -4437,51 +5025,39 @@ msgstr ""
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
msgid "Link"
msgstr ""
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
msgid "Label"
msgstr ""
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
msgid "Song Language"
msgstr ""
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
msgid "Catalog Number"
msgstr ""
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
msgid "Last Updated"
msgstr ""
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
msgid "Lyrics"
msgstr ""
-#: ../../templates/show_song_preview_row.inc.php:27
-msgid "Play song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr ""
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
msgid "Song edit"
msgstr ""
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
msgid "No song found"
msgstr ""
@@ -4501,13 +5077,29 @@ msgstr ""
msgid "Catalog Time"
msgstr ""
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr ""
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr ""
+
+#: ../../templates/show_tagcloud.inc.php:35
+msgid "Tag edit"
+msgstr ""
+
+#: ../../templates/show_tagcloud.inc.php:40
+msgid "Do you really want to delete the tag?"
+msgstr ""
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr ""
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4621,12 +5213,25 @@ msgstr ""
"These are required for Ampache to work."
#: ../../templates/show_test_table.inc.php:96
-msgid "PHP safe mode disabled"
+msgid "PHP curl extension"
msgstr ""
#: ../../templates/show_test_table.inc.php:101
#, fuzzy
msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"This test checks to see if you have the mysql extensions loaded for PHP. "
+"These are required for Ampache to work."
+
+#: ../../templates/show_test_table.inc.php:105
+msgid "PHP safe mode disabled"
+msgstr ""
+
+#: ../../templates/show_test_table.inc.php:110
+#, fuzzy
+msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
"Ampache will not work correctly in safe mode."
msgstr ""
@@ -4634,31 +5239,31 @@ msgstr ""
"to modify the memory limits. While not required, without these abilities "
"some features of ampache may not work correctly"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
msgid "PHP memory limit override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
msgid "PHP execution time override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4668,11 +5273,11 @@ msgstr ""
"ampache.cfg.php is not in the correct locations or\n"
"\tit is not currently readable by your webserver."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
msgid "Configuration file validity"
msgstr ""
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4681,11 +5286,11 @@ msgstr ""
"This test makes sure that you have set all of the required configuration "
"variables and that we are able to completely parse your config file"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
msgid "Database connection"
msgstr ""
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4694,11 +5299,11 @@ msgstr ""
"This attempts to connect to your database using the values from your ampache."
"cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
msgid "Database tables"
msgstr ""
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4707,11 +5312,11 @@ msgstr ""
"This checks a few key tables to make sure that you have successfully "
"inserted the ampache database and that the user has access to the database"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
msgid "Web path"
msgstr ""
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4748,99 +5353,75 @@ msgid "The validation key used isn't correct"
msgstr ""
#: ../../templates/show_userflag.inc.php:23
-msgid "User Flags"
+msgid "User Favorites"
msgstr ""
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr ""
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr ""
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr ""
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr ""
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr ""
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr ""
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr ""
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr ""
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr ""
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr ""
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
msgid "* Required fields"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr ""
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr ""
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr ""
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr ""
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr ""
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr ""
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr ""
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr ""
-
#: ../../templates/show_verify_catalog.inc.php:23
msgid "Verify Catalog"
msgstr ""
@@ -4851,19 +5432,18 @@ msgstr ""
msgid "Updating the %s catalog"
msgstr ""
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d item found checking tag information"
+msgstr[1] "%d items found checking tag information"
+
#: ../../templates/show_verify_catalog.inc.php:29
msgid "Verified"
msgstr ""
-#: ../../templates/show_video_row.inc.php:25
-msgid "Play video"
-msgstr ""
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr ""
@@ -4873,7 +5453,7 @@ msgid "No video found"
msgstr ""
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
msgid "Wanted List"
msgstr ""
@@ -4914,48 +5494,44 @@ msgstr ""
msgid "Browse"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
msgid "Top Rated"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:80
-msgid "My Flags"
-msgstr ""
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr ""
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr ""
@@ -5007,7 +5583,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5018,18 +5594,14 @@ msgstr ""
"3.3.3.5. According to your database your current version "
"is: %s."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+msgid "The following updates need to be performed"
msgstr ""
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr ""
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr ""
-
#: Database words
msgid "Allow Downloads"
msgstr ""
@@ -5130,10 +5702,6 @@ msgstr ""
msgid "Streaming"
msgstr ""
-#: Database words
-msgid "Interface"
-msgstr ""
-
#: Database words
msgid "System"
msgstr ""
@@ -5152,16 +5720,6 @@ msgstr ""
#~ "This test makes sure you have PCRE support compiled into your version of "
#~ "PHP, this is required for Ampache."
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "day"
-#~ msgstr[1] "days"
-
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Catalog Clean Done. %d file removed."
-#~ msgstr[1] "Catalog Clean Done. %d files removed."
-
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
#~ msgstr[0] "Playlist Import and Recreate Successful. Total: %d Song"
@@ -5187,21 +5745,6 @@ msgstr ""
#~ "Functions are disabled in the demo because previous users of the demo "
#~ "have used the functionality to post inappropriate materials"
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d item found checking tag information"
-#~ msgstr[1] "%d items found checking tag information"
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minute"
-#~ msgstr[1] "%d minutes"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d hour"
-#~ msgstr[1] "%d hours"
-
#~ msgid ""
#~ "There was a problem with the file upload: The %s was larger than the "
#~ "maximum allowed size (%d bytes)."
@@ -5216,16 +5759,6 @@ msgstr ""
#~ "There was a problem with the file upload: The %s was only partially "
#~ "uploaded."
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Song Removed"
-#~ msgstr[1] "Songs Removed"
-
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Disabled Song Processed"
-#~ msgstr[1] "Disabled Songs Processed"
-
#~ msgid ""
#~ "Once you have ensured that you have the above requirements please fill "
#~ "out the information below. You will only be asked for the required config "
diff --git a/locale/es_ES/LC_MESSAGES/messages.mo b/locale/es_ES/LC_MESSAGES/messages.mo
index 328f58a1..748a3bfd 100644
Binary files a/locale/es_ES/LC_MESSAGES/messages.mo and b/locale/es_ES/LC_MESSAGES/messages.mo differ
diff --git a/locale/es_ES/LC_MESSAGES/messages.po b/locale/es_ES/LC_MESSAGES/messages.po
index 71adbbb8..34d22f0a 100644
--- a/locale/es_ES/LC_MESSAGES/messages.po
+++ b/locale/es_ES/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2007 Ampache.org
# This file is distributed under the same license as the Ampache package.
# LL , 2007.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-03-26 13:19+0100\n"
"Last-Translator: Juan Jose Pablos \n"
"Language-Team: Español \n"
@@ -25,7 +25,7 @@ msgstr "Borrado"
msgid "Your Access List Entry has been removed"
msgstr "Su lista de acceso ha sido borrada"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Solicitud de borrado"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Esta seguro que quiere permamentemente borrar"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Agregado"
@@ -43,7 +43,7 @@ msgstr "Agregado"
msgid "Your new Access Control List(s) have been created"
msgstr "Su nueva lista de acceso ha sido creada"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Actualizado"
@@ -73,15 +73,30 @@ msgstr "El catalogo y todas las pistas han sido borradas"
msgid "Catalog Delete"
msgstr "Tamaño del catálogo"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
#, fuzzy
msgid "Confirm Deletion Request"
msgstr "Usuario borrado"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Canciones borradas"
+msgstr[1] "Canciones borradas"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Ninguna cancion borrada"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Desabilitar canciones procesadas"
+msgstr[1] "Desabilitar canciones procesadas"
+
#: ../../admin/catalog.php:152
#, fuzzy
msgid "Catalog Cleaned"
@@ -230,116 +245,149 @@ msgstr ""
"Su base de datos y las tablas asociadas han sido actualizadas para igualar "
"su codigo de caracter actual"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Error se requiere usuario"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Error contraseñas no coinciden"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "usuario actualizado"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "actualizado"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Error: Este usuario ya existe"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Errror:Fallo en la inserción"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Invitado"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Usuario"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Administrador"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Añadido nuevo usuario"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Usuario habilitado"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Usuario deshabilitado"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Error"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "No se puede desabilitar ultimo administrador"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Usuario borrado"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " ha sido creada"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Error de borrar"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "No puede borrar el último usuario administrador"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Esta seguro que quiere permamentemente borrar"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Usuario borrado"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Usuario borrado"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " ha sido creada"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Generar nueva configuracion"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "New user API Key has been generated."
+msgstr ""
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr ""
@@ -401,91 +449,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Mostrar los artistas que empiezan con"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "guardar configuracion del catalogo"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Nombre del catálogo"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Tiempo del catálogo"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Actualización rápida"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Tamaño del catálogo"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Lista creada"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Configuracion para %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "leyendo"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Añadido estacion de Radio"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr ""
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Actualización rápida"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Borrar las estadísticas del catálogo"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Catálogo"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Añadir un catálogo"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Borrar lista"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Conseguir portada"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Puerto"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Configuracion para %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Desconocido (Huerfano)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -602,12 +711,12 @@ msgstr "Error: No puede conseguir el tamaño de"
msgid "File Moved..."
msgstr ""
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Creado por: %s para %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Activado usuario"
@@ -732,6 +841,18 @@ msgstr "Error: Este usuario ya existe"
msgid "Error: Unable to copy file to %s"
msgstr "Error: No puede conseguir el tamaño de"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -758,11 +879,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Tamaño del catálogo"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Tamaño del catálogo"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr " ha sido creada"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Nube de etiquetas"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Tamaño del catálogo"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Tamaño del catálogo"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Tamaño del catálogo"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " ha sido creada"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr ""
@@ -853,41 +1013,46 @@ msgstr "interface de Web"
msgid "Stream Access"
msgstr "Aceso"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Desconocido (Huerfano)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Disco"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artistas"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Varios"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Se Escucha"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -940,172 +1105,310 @@ msgstr "año"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
msgid "Invalid Username/Password"
msgstr ""
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Error Handshake invalido -"
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Añadir a lista de reproduccion"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Peticion invalida"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr ""
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Error: No puede abrir"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Actualizar perfil"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Servidor"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Salvar cambios"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Puerto"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Bajar"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Artista y Título"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Editar"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Borrar"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Canciónes"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Álbumes"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Gestionar Usuarios"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Radios"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Listas de reproducción"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Caciones de la lista de Reproduccion"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
#, fuzzy
msgid "Current Playlist"
msgstr "Crear nueva lista"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Borrar lista"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
#, fuzzy
msgid "Catalogs"
msgstr "Catálogo"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr ""
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
#, fuzzy
msgid "Videos"
msgstr "Varios"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
#, fuzzy
msgid "Democratic Playlist"
msgstr "Borrar lista"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Album relacionado"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Subjeto"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Salvar cambios"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Mas"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Nunca"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+#, fuzzy
+msgid "day"
+msgid_plural "days"
+msgstr[0] "día"
+msgstr[1] "día"
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hora"
+msgstr[1] "hora"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr ""
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../lib/class/catalog.class.php:1054
#, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr ""
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "No es posible crear una nueva cuenta"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Salvar cambios"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr ""
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1116,35 +1419,24 @@ msgid "Primary"
msgstr ""
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Gestor de contenido"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Gestor de catalogo"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr ""
-
#: ../../lib/class/localplay.class.php:633
#, fuzzy
msgid "Paused"
msgstr "Ya tocado"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Desconocido"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1178,22 +1470,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Añadir catálogo"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Album relacionado"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Genero relacionado"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Artista relacionado"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Aleatorio puro"
-
#: ../../lib/class/registration.class.php:52
#, fuzzy, php-format
msgid "New User Registration at %s"
@@ -1209,7 +1485,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1220,7 +1495,7 @@ msgid ""
"Thank you for registering\n"
msgstr ""
-#: ../../lib/class/registration.class.php:75
+#: ../../lib/class/registration.class.php:74
#, php-format
msgid ""
"A new user has registered\n"
@@ -1229,6 +1504,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
@@ -1304,107 +1580,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Título"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Álbum"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artista"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Comentario"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Etiqueta"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Nombre del archivo"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Año"
@@ -1412,40 +1688,43 @@ msgstr "Año"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Valoracion"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Ya tocado"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr ""
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Ya tocado"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1453,156 +1732,143 @@ msgstr "Catálogo"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Lista"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Nombre de la lista"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Borrar lista"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Nombre"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Toca"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Anadir"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr ""
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
#, fuzzy
msgid "Show Lyrics"
msgstr "Muestra Lista"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
msgid "No updates needed."
msgstr ""
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "No hay suficiente información"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Activado usuario"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Desconocido"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Acepto"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
#, fuzzy
msgid "Remove"
msgstr "Cambiar el nombre"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Añadir a lista de reproduccion"
@@ -1684,21 +1950,38 @@ msgstr "Codigos de caracteres de base de datos actualizada"
msgid "Administrative user creation failed: %s"
msgstr "Activado usuario"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Usuario Desabilitado contacta administrador por favor"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Usuario ya ingreso"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "No es posible crear una nueva cuenta"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Permitir"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Desabilitado"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
@@ -1706,115 +1989,103 @@ msgstr "Desabilitado"
msgid "None"
msgstr "No"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Flujo"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Democratico"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
#, fuzzy
msgid "Localplay"
msgstr "Local"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Reproductor XSPF"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "M3U Simple"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr ""
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr ""
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr ""
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr ""
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Limpiar al enviar"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Defecto"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Siempre"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
msgid "Year ascending"
msgstr ""
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1846,7 +2117,8 @@ msgstr "¡Totalmente loco!"
msgid "Off the Charts!"
msgstr "¡Super chévere!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Inicio"
@@ -1863,14 +2135,14 @@ msgstr ""
msgid "Random Play"
msgstr "Al azar"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Buscar"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Preferencias"
@@ -1909,7 +2181,7 @@ msgid "Browse Music"
msgstr ""
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Estadisticas"
@@ -1917,31 +2189,14 @@ msgstr "Estadisticas"
msgid "Add New"
msgstr "Añadir nuevo"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Encender"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Apagar"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Usuario Desabilitado contacta administrador por favor"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Usuario ya ingreso"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "No es posible crear una nueva cuenta"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1968,11 +2223,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2040,11 +2297,11 @@ msgstr "Correo"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Contraseña"
@@ -2109,48 +2366,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Error: No puede conseguir el tamaño de"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, fuzzy, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Error: No puede conseguir el tamaño de"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, fuzzy, php-format
msgid "%s is not readable by ampache"
msgstr "no puede estar leido por Ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2165,13 +2422,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Usuario"
@@ -2287,20 +2544,20 @@ msgstr ""
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Puerto"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Al azar"
@@ -2318,16 +2575,49 @@ msgstr " ha sido creada"
msgid "Playlist Imported"
msgstr "Lista creada"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
#, fuzzy
msgid "Playlist Not Imported"
msgstr "Lista creada"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
#, fuzzy
msgid "Empty Playlists Deleted"
msgstr "Lista borrada"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registro completo"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Servidor"
@@ -2344,36 +2634,36 @@ msgstr "Su cuenta ha sido actualizada"
msgid "Radio Station Added"
msgstr "Añadido estacion de Radio"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Error se requiere codigo Captcha"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Error Fallo en Captcha"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Debes acepter la licencia de usuario"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "No añadistes un nombre de usuario"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Por favor rellena tu nombre completo (Nombre Apellido)"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Peticion invalida"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Debes introducir una contraseña"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Tus contraseñas no coinciden"
@@ -2392,6 +2682,11 @@ msgstr "Buscado"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2400,45 +2695,80 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Subjeto"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Usuario borrado"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Usuario borrado"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " ha sido creada"
+
#: ../../shout.php:49
#, fuzzy
msgid "Invalid Object Selected"
msgstr "Editar selección"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filtros"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Comienza por"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr ""
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Valorado"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr ""
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Todas las listas de reproduccion"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
#, fuzzy
msgid "Song Title"
msgstr "Título de la canción"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2447,90 +2777,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Actualización rápida"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Depurar Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr ""
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Cancelar"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Salir"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Canciónes en total"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Error Fichero de confituracion caducado "
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Generar nueva configuracion"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Instalación de Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Requerimientos"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Este página se trata de la instalación de la base de datos Ampache y la "
-"creación del archivo ampache.cfg.php. Antes de seguir, por favor asegurase "
-"que tiene los requisitos siguientes."
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Un servidor Mysql con usuario y contraseña que pueda crear/modificar bases "
-"de datos"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Su servidor web tiene acceso de lectura al fichero /sql/ampache.sql y al "
-"fichero /config/ampache.cfg.php.dist"
-
-#: ../../templates/install_header.inc.php:51
-#, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Ant"
@@ -2540,7 +2849,7 @@ msgstr "Ant"
msgid "Next"
msgstr "Siguiente"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Límite"
@@ -2550,20 +2859,21 @@ msgid "Add to Playlist"
msgstr "Añadir a lista de reproduccion"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Anadir a nueva lista"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
#, fuzzy
msgid "Batch Download"
msgstr "Descarga en grupo"
@@ -2571,7 +2881,7 @@ msgstr "Descarga en grupo"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Borrar lista"
@@ -2579,30 +2889,27 @@ msgstr "Borrar lista"
msgid "Add Dynamic Items"
msgstr "Añadir elementos dinamicos"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Al azar"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Artista relacionado"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Añadir aleatorio de Album"
+
#: ../../templates/rightbar.inc.php:69
#, fuzzy
-msgid "Related Tag"
-msgstr "Album relacionado"
+msgid "Random Playlist"
+msgstr "Al azar"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Borrar"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2638,15 +2945,15 @@ msgstr "Avanzado"
msgid "Access Control Entries"
msgstr "Entradas del control de acceso"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Dirección de empezar"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Dirección de acabar"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2655,89 +2962,83 @@ msgstr "Dirección de acabar"
msgid "Level"
msgstr "Nivel"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Tipo"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Acción"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Editar"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "Correo"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
#, fuzzy
msgid "New Password"
msgstr "Contraseña"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Confirmar contraseña"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Borrar las estadísticas"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
#, fuzzy
msgid "Update Account"
msgstr "Crear una cuenta"
@@ -2862,13 +3163,82 @@ msgid "Gather Album Art"
msgstr "Recolectar arte del álbum"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Crear lista de reproduccion a partir de ficheros m3u"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Añadir catálogo"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Dia de creacion"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Aceso"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+#, fuzzy
+msgid "Description"
+msgstr "descripción"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Interfac"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Tipo de búsqueda"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+#, fuzzy
+msgid "Create"
+msgstr "Crear una cuenta"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2881,16 +3251,16 @@ msgstr "Pagina Inicio"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "Flujo URL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
#, fuzzy
msgid "Codec"
@@ -2900,12 +3270,6 @@ msgstr "Codigo"
msgid "Create a new playlist"
msgstr "Crear una lista nueva"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-#, fuzzy
-msgid "Create"
-msgstr "Crear una cuenta"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2930,6 +3294,38 @@ msgstr "Encontrado"
msgid "Reading"
msgstr "leyendo"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Dia de creacion"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Subjeto"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Permitir emision"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Bajar"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr ""
@@ -2956,17 +3352,22 @@ msgstr "Añadiendo un usuario nuevo"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Nombre entero"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Permisos de aceso del usuario"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Añadir un usuario"
@@ -2986,260 +3387,349 @@ msgid "Invalid"
msgstr "Invalido"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Seleccionar"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Acciónes"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Tocar el álbum"
+msgid "Play last"
+msgstr "Lista"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Tocar el álbum"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Tocar el álbum"
+msgid "Add to temporary playlist"
+msgstr "Anadir a nueva lista"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Añadir Album"
-
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Añadir aleatorio de Album"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-msgid "Save Tracks Order"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
msgstr ""
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "¿Confirmas que quiere borrar este catálogo?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr ""
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Encontrar arte del álbum"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "¿Confirmas que quiere borrar este catálogo?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Actualizar por etiquetas"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Bajar"
-#: ../../templates/show_album_row.inc.php:28
-#, fuzzy
-msgid "Play add album"
-msgstr "Tocar el álbum"
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
+msgid "Save Tracks Order"
+msgstr ""
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Arte del álbum"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "¿Confirmas que quiere borrar este catálogo?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Actualizar por etiquetas"
+
+#: ../../templates/show_album.inc.php:132
+#, fuzzy
+msgid "Edit Album"
+msgstr "Álbum"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Anadir a nueva lista"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Portada"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
#, fuzzy
msgid "Tags"
msgstr "Canciónes en total"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Bandera"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "No se han encontrado canciones desabilitadas"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Los artistas más populares"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Los álbumes más populares"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Los géneros más populares"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Las canciónes más populares"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Flujos en directo mas escuchados"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Etiquetas mas populares"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Cargando.."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Mostrar todas las canciones por %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Albumnes por %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Lista"
+msgid "Show all"
+msgstr "Mostrar todo"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Añadir todas las canciones por %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Albumnes por %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Tocar el álbum"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Lista"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Añadir todas las canciones por %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Anadir a nueva lista"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Añadir todas las canciones por %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Añadir canciones aleatorias por %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Artista y Título"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+#, fuzzy
+msgid "Edit Artist"
+msgstr "Artista"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Mostrar portada"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Álbumes"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
#, fuzzy
msgid "Similar Artists"
msgstr "Artistas"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Artista y Título"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Tiempo"
@@ -3253,6 +3743,44 @@ msgstr "Artistas"
msgid "Click to close window"
msgstr "Haga click para cerrar la ventana"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Sí"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "No"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Género"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Estadísticas"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Artistas"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Verificar"
@@ -3272,71 +3800,85 @@ msgstr "Borrar la información"
msgid "Update"
msgstr "Actualizar ID3"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Ultimo verificado"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Ultimo Añadido"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
#, fuzzy
msgid "Last Clean"
msgstr "Último visto"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "No encontrado"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-#, fuzzy
-msgid "Description"
-msgstr "descripción"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
#, fuzzy
msgid "Version"
msgstr "Versión de PHP"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Activado"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
#, fuzzy
msgid "No Records Found"
msgstr "No se encontraron resultados"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Comienza por"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Flujo URL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Estado"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "No encontrado"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3347,7 +3889,45 @@ msgstr "Limpiando el Catalogo %s"
msgid "Checking"
msgstr "Revisando"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Fecha"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Acción"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "No se han encontrado canciones desabilitadas"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Último visto"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Artistas"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Seguir"
@@ -3390,89 +3970,88 @@ msgstr ""
msgid "PHP Settings"
msgstr "opciones PHP"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "opciones"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Valor"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Limite de memoria"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Maximo tiempo de ejecucion"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
#, fuzzy
msgid "Failed"
msgstr "archivo"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr ""
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Zona Segura"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Soporte Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Soporte GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Soporte Iconv"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Soporte Gettext"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Configuracion actual"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Preferencia"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
#, fuzzy
msgid "Ampache Update"
msgstr "Actualización rápida"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Versión de PHP"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Instalación de Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3495,32 +4074,32 @@ msgstr "Borrar lista"
msgid "Playing from base Playlist"
msgstr "Escuchando de esta lista base"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
#, fuzzy
msgid "Votes"
msgstr "otro"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Quitar Voto"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Añadir Voto"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Acceso denegado"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Este evento ha sido registrado"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3529,13 +4108,13 @@ msgstr ""
"Has sido rediriguido a esta pagina debido a que no tienes acceso a esta "
"funcion."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"Si crees que es un error porfavor contacta con un administrador de Ampache."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3544,8 +4123,8 @@ msgstr ""
"Has sido rediriguido a esta pagina debido a que no tienes acceso a una "
"funcion desabilitada en la demo."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Tiempo adicional"
@@ -3574,15 +4153,16 @@ msgstr "Canciónes duplicadas"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Tema"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Longitud"
@@ -3683,12 +4263,9 @@ msgid "Created by: %s for %s"
msgstr "Creado por: %s para %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Pista"
@@ -3700,29 +4277,29 @@ msgstr "Editando usuario existente"
msgid "User Properties"
msgstr "Propiedades de Usuario"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
#, fuzzy
msgid "Other Options"
msgstr "Acciónes"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Configuracion por defecto"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
#, fuzzy
msgid "Flash"
msgstr "Bandera"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Evitar la escritura de configuracino por defecto"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Esto afecta a todas las cuentas no administrativas"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Actualizar el usuario"
@@ -3769,23 +4346,35 @@ msgstr "Cojer portada"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Informacion"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importar Lista de reproduccion de un fichero"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Tipo de lista"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
#, fuzzy
msgid "Import Playlist"
msgstr "Borrar lista"
@@ -3799,24 +4388,31 @@ msgstr "Albumes del momento"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Versión de PHP"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Paso 1 - Creacion e Insercion de la base de datos Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Paso 2 - Creacion del fichero ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Paso 3 - Creacion cuenta inicial"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3825,57 +4421,96 @@ msgstr ""
"Este paso crea tu cuenta de administracion inicial. Una vez creada seras "
"rediriguido directamente a la pagina de iniciar sesion"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Crear cuenta de administrador"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Crear una cuenta"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Requerimientos"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Este página se trata de la instalación de la base de datos Ampache y la "
+"creación del archivo ampache.cfg.php. Antes de seguir, por favor asegurase "
+"que tiene los requisitos siguientes."
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Un servidor Mysql con usuario y contraseña que pueda crear/modificar bases "
+"de datos"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Su servidor web tiene acceso de lectura al fichero /sql/ampache.sql y al "
+"fichero /config/ampache.cfg.php.dist"
+
+#: ../../templates/show_install_check.inc.php:37
+#, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "REVISAR"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "ESTADO"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "DESCRIPCIÓN"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "no puede estar leido por Ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Existe Ampache.cfg.php"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3885,62 +4520,62 @@ msgid ""
"then manually place the config file in %s"
msgstr ""
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Generar el archivo configuracion"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Ruta web"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Nombre deseado para la base de datos"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "Nombre del servidor MySQL"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Nombre del usuario de MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Contraseña de MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Leer/Escribir"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Existe Ampache.cfg.php"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "¿Esta configurado Ampache.cfg.php?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Revisar configuracion"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Continue al paso 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3951,58 +4586,58 @@ msgstr ""
"una cuenta de MySQL con permisos de crear una base de datos. Es posibleque "
"tenga que esperar un ratito. Este dependa en cuán viejo es su computadora."
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Introduzca Base de datos ampache"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Nombre deseado para la base de datos"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Nombre administrativo de MySQL"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Contraseña administrativa de MySQL"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Crear un usuario para nueva base de datos"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Nombre del usuario de la base de datos Ampache"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Contraseña del usario de la base de datos Ampache"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Sobreescribe Existente"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
#, fuzzy
msgid "Use Existing Database"
msgstr "Insertar una base de datos"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Insertar una base de datos"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Eliga el idioma de instalacion"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Comenzar la configuracion"
@@ -4021,11 +4656,6 @@ msgstr ""
msgid "Show All"
msgstr "Mostrar todo"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Fecha"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
#, fuzzy
@@ -4037,12 +4667,12 @@ msgstr "Primera dirección de IP"
msgid "Manage Radio Stations"
msgstr "Radios"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Nombre de la lista"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4089,48 +4719,48 @@ msgstr "Mostrar instancias Localplay"
msgid "Edit Instance"
msgstr "Editar instancia"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Control LocalPlay"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Silenciar"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Disminuir volumen"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Aumentar volumen"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Volumen"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Repetir"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Recordarme"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Contraseña"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "ingresar"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registrar"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Mensaje del dia"
@@ -4170,11 +4800,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Depurar Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Subjeto"
@@ -4243,6 +4868,7 @@ msgstr "Crear nueva lista"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
#, fuzzy
msgid "Object"
msgstr "Subjeto"
@@ -4257,36 +4883,18 @@ msgstr "Pegajoso"
msgid "Date Added"
msgstr "Dia añadido"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Tocar el álbum"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Tocar el álbum"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Añadir Album"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Agregado"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Álbumes"
+msgid "No missing album found"
+msgstr "No se han encontrado canciones desabilitadas"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Artistas"
@@ -4305,125 +4913,60 @@ msgstr "no se ha valorado aun"
msgid "%s of 5"
msgstr "%s de 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normalizar pistas"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Tocar el álbum"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Lista"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Añadir todas"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Añadir aleatorias"
+#, fuzzy
+msgid "Create channel"
+msgstr "Dia de creacion"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "¿Confirmas que quiere borrar este catálogo?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Lista"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Lista"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Lista creada"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Nombre de la lista"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "Numero de canciónes"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Dueño"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Artistas"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Caciones de la lista de Reproduccion"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Caciones de la lista de Reproduccion"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Género"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "Nueva lista"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Versión de PHP"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Desactivado"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4432,13 +4975,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Preferencias"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Aplicar a todos"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Nivel de acceso"
@@ -4474,6 +5017,20 @@ msgstr "Crear una cuenta"
msgid "Unlimited"
msgstr "Sin límites"
+#: ../../templates/show_random.inc.php:68
+#, fuzzy, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minutos"
+msgstr[1] "Minutos"
+
+#: ../../templates/show_random.inc.php:70
+#, fuzzy, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "hora"
+msgstr[1] "hora"
+
#: ../../templates/show_random.inc.php:79
#, fuzzy
msgid "Size Limit"
@@ -4483,22 +5040,78 @@ msgstr "Límite"
msgid "Enqueue"
msgstr "Ponerlos en el queue"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Ultima vez escuchada"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "segundos"
+msgstr[1] "segundos"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "Minutos"
+msgstr[1] "Minutos"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "horas"
+msgstr[1] "horas"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "días"
+msgstr[1] "días"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "semanas pasadas"
+msgstr[1] "semanas pasadas"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "meses pasados"
+msgstr[1] "meses pasados"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "año"
+msgstr[1] "año"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "segundos"
+msgstr[1] "segundos"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "No se han encontrado canciones desabilitadas"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Artistas"
@@ -4572,7 +5185,7 @@ msgstr "Añadir un usuario"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Busqueda avanzada"
@@ -4600,16 +5213,53 @@ msgstr "Acciónes"
msgid "Add Search Results"
msgstr "Añadir resultados de busquedas"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Subjeto"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Dia de creacion"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Ultimo verificado"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Público"
+
+#: ../../templates/show_share.inc.php:26
+msgid "Shared on"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Añadir todas"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Salvar cambios"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Borrar lista"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Artistas"
@@ -4627,60 +5277,47 @@ msgstr "Detalles"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Como"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Nivel"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Idioma"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Tiempo del catálogo"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Marcas Actualizadas"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "Muestra Lista"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Caciones de la lista de Reproduccion"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
#, fuzzy
msgid "Song Information"
msgstr "Informacion"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Título de la canción"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "No se han encontrado canciones desabilitadas"
@@ -4701,13 +5338,31 @@ msgstr "Tamaño del catálogo"
msgid "Catalog Time"
msgstr "Tiempo del catálogo"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Los álbumes más populares"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Los artistas más populares"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Título de la canción"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "¿Confirmas que quiere borrar este catálogo?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Depurar Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
msgid ""
"You may have reached this page because a configuration error has occured. "
"Debug information is below."
@@ -4802,86 +5457,97 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Soporte Session PHP"
+
+#: ../../templates/show_test_table.inc.php:101
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Zona Segura"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
"Ampache will not work correctly in safe mode."
msgstr ""
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Limite de memoria"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Maximo tiempo de ejecucion"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
"either is not in the correct location or is not currently readable."
msgstr ""
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Borrar lista"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
msgid ""
"This test makes sure that you have set all of the required configuration "
"variables and that we are able to completely parse your config file."
msgstr ""
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Codigos de caracteres de base de datos actualizada"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
msgid ""
"This attempts to connect to your database using the values read from your "
"configuration file."
msgstr ""
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Nombre deseado para la base de datos"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
msgid ""
"This checks a few key tables to make sure that you have successfully "
"inserted the Ampache database and that the user has access to the database"
msgstr ""
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Ruta web"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4916,104 +5582,77 @@ msgstr "La clave de validacion usada no es correcta"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Herramientas de usuario"
+msgid "User Favorites"
+msgstr "Propiedades de Usuario"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Dia de creacion"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Último visto"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Actividad"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Estado"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "usuario esta conectado ahora"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Usuario esta desconectado ahora"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Lista Reproduccion activa"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Artistas Recomendados"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Albumnes recomendados"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Canciones Recomendadas"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Acuerdo usuario"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Acepto"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Informacion de usuario"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Requerido"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registrar usuario"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Nombre completo"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Fecha de registro"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
#, fuzzy
msgid "Last Ip"
msgstr "Último visto"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "En linea"
-#: ../../templates/show_user_stats.inc.php:31
-#, fuzzy
-msgid "Favorite Artists"
-msgstr "Artistas"
-
-#: ../../templates/show_user_stats.inc.php:43
-#, fuzzy
-msgid "Favorite Albums"
-msgstr "Álbumes enteros"
-
-#: ../../templates/show_user_stats.inc.php:55
-#, fuzzy
-msgid "Favorite Songs"
-msgstr "Canciónes en total"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5025,21 +5664,19 @@ msgstr "Catálogo"
msgid "Updating the %s catalog"
msgstr "Actualizando el catalogo %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] ""
+msgstr[1] ""
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Verificado"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Caciones de la lista de Reproduccion"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Resolucion"
@@ -5050,7 +5687,7 @@ msgid "No video found"
msgstr "No se encontraron resultados"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Artista relacionado"
@@ -5092,52 +5729,47 @@ msgstr "Configuracion Servidor"
msgid "Browse"
msgstr "Navegar"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Título de la canción"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Escuchando actualmente"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Importar"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Avanzado"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
#, fuzzy
msgid "Newest"
msgstr "Nuevo"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Populares"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Valorado"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Bandera"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Modulos"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Salir"
@@ -5191,7 +5823,7 @@ msgstr "Gestionar lista"
msgid "Account"
msgstr "Cuenta"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5202,21 +5834,16 @@ msgstr ""
"3.3.3.5.Segun tu base de datos tu version actual es: "
"%s"
-#: ../../update.php:60
+#: ../../update.php:68
#, fuzzy
-msgid "the following updates need to be performed"
+msgid "The following updates need to be performed"
msgstr "Se puede usar los siguientes tipos de archivos"
-#: ../../update.php:67
+#: ../../update.php:76
#, fuzzy
msgid "Update Now!"
msgstr "Actualizar los catálogos"
-#: ../../update.php:71
-#, fuzzy
-msgid "Ampache Installation."
-msgstr "Instalación de Ampache"
-
#: Database words
#, fuzzy
msgid "Allow Downloads"
@@ -5329,14 +5956,159 @@ msgstr ""
msgid "Streaming"
msgstr ""
-#: Database words
-msgid "Interface"
-msgstr "Interfac"
-
#: Database words
msgid "System"
msgstr "Sistema"
+#~ msgid "Related Album"
+#~ msgstr "Album relacionado"
+
+#~ msgid "Related Genre"
+#~ msgstr "Genero relacionado"
+
+#~ msgid "Pure Random"
+#~ msgstr "Aleatorio puro"
+
+#, fuzzy
+#~ msgid "Related Tag"
+#~ msgstr "Album relacionado"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Tocar el álbum"
+
+#~ msgid "Play Album"
+#~ msgstr "Tocar el álbum"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Tocar el álbum"
+
+#~ msgid "Add Album"
+#~ msgstr "Añadir Album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Tocar el álbum"
+
+#~ msgid "Flag"
+#~ msgstr "Bandera"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Los géneros más populares"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Las canciónes más populares"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Flujos en directo mas escuchados"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Etiquetas mas populares"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Mostrar todas las canciones por %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Lista"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Añadir todas las canciones por %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Lista"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Añadir todas las canciones por %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Añadir todas las canciones por %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Añadir canciones aleatorias por %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Tipo de lista"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Tocar el álbum"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Tocar el álbum"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Añadir Album"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normalizar pistas"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Lista"
+
+#~ msgid "Add Random"
+#~ msgstr "Añadir aleatorias"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Lista"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Caciones de la lista de Reproduccion"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Caciones de la lista de Reproduccion"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Caciones de la lista de Reproduccion"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Herramientas de usuario"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Artistas Recomendados"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Albumnes recomendados"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Canciones Recomendadas"
+
+#, fuzzy
+#~ msgid "Favorite Artists"
+#~ msgstr "Artistas"
+
+#, fuzzy
+#~ msgid "Favorite Albums"
+#~ msgstr "Álbumes enteros"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Caciones de la lista de Reproduccion"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Bandera"
+
+#, fuzzy
+#~ msgid "the following updates need to be performed"
+#~ msgstr "Se puede usar los siguientes tipos de archivos"
+
+#, fuzzy
+#~ msgid "Ampache Installation."
+#~ msgstr "Instalación de Ampache"
+
#~ msgid "Make Sticky"
#~ msgstr "Haz Pegajoso"
@@ -5496,10 +6268,6 @@ msgstr "Sistema"
#~ msgid "Search Disabled Songs"
#~ msgstr "Buscar canciones desabilitadas"
-#, fuzzy
-#~ msgid "Edit Album"
-#~ msgstr "Álbum"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Marcado para reetiquetar"
@@ -5507,10 +6275,6 @@ msgstr "Sistema"
#~ msgid "Update Album"
#~ msgstr "Recolectar arte del álbum"
-#, fuzzy
-#~ msgid "Edit Artist"
-#~ msgstr "Artista"
-
#~ msgid "Update Artist"
#~ msgstr "Actualizar Artista"
@@ -5638,18 +6402,6 @@ msgstr "Sistema"
#~ msgid "Ampache.cfg.php Configured?"
#~ msgstr "¿Esta configurado Ampache.cfg.php?"
-#, fuzzy
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "día"
-#~ msgstr[1] "día"
-
-#, fuzzy
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "hora"
-#~ msgstr[1] "hora"
-
#~ msgid "Code"
#~ msgstr "Codigo"
@@ -5683,18 +6435,6 @@ msgstr "Sistema"
#~ "Funciones ha sido desabilitadas en el demo debido a que usuario previos "
#~ "han publicado material inapropiado."
-#, fuzzy
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "Minutos"
-#~ msgstr[1] "Minutos"
-
-#, fuzzy
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "hora"
-#~ msgstr[1] "hora"
-
#~ msgid "file"
#~ msgstr "archivo"
@@ -5720,18 +6460,6 @@ msgstr "Sistema"
#~ msgstr ""
#~ "Había una problema con subir el archivo: El %s fue subido parcialmente."
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Canciones borradas"
-#~ msgstr[1] "Canciones borradas"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Desabilitar canciones procesadas"
-#~ msgstr[1] "Desabilitar canciones procesadas"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "No se encontraron resultados"
@@ -5758,12 +6486,6 @@ msgstr "Sistema"
#~ msgid "Keywords"
#~ msgstr "Palabras claves"
-#~ msgid "Yes"
-#~ msgstr "Sí"
-
-#~ msgid "No"
-#~ msgstr "No"
-
#~ msgid "Min Bitrate"
#~ msgstr "Bitrate mínimo"
diff --git a/locale/fa_IR/LC_MESSAGES/messages.mo b/locale/fa_IR/LC_MESSAGES/messages.mo
index 7d238c5d..b1bf23ec 100644
Binary files a/locale/fa_IR/LC_MESSAGES/messages.mo and b/locale/fa_IR/LC_MESSAGES/messages.mo differ
diff --git a/locale/fa_IR/LC_MESSAGES/messages.po b/locale/fa_IR/LC_MESSAGES/messages.po
index 07f89c49..b3ee1ab5 100644
--- a/locale/fa_IR/LC_MESSAGES/messages.po
+++ b/locale/fa_IR/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2010-03-16 21:20+0330\n"
"Last-Translator: Soroush \n"
"Language-Team: Farsi \n"
@@ -29,7 +29,7 @@ msgstr "حذف شد"
msgid "Your Access List Entry has been removed"
msgstr "ورودی شما در لیست دسترسی حذف شد"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "درخواست حذف"
@@ -38,7 +38,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "مطمئن هستید که می خواهید به طور دائم پاک شود؟"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "اضافه شد"
@@ -47,7 +47,7 @@ msgstr "اضافه شد"
msgid "Your new Access Control List(s) have been created"
msgstr "لیست کنترل دسترسی جدید شما ایجاد شد"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "به روز شد"
@@ -75,15 +75,28 @@ msgstr "مجموعه و تمام رکورد های مرتبط با آن حذف
msgid "Catalog Delete"
msgstr "حذف مجموعه"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
#, fuzzy
msgid "Confirm Deletion Request"
msgstr "تایید درخواست حذف"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "آهنگ ها حذف شدند"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "هیچ آهنگی حذف نشد"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "آهنگ های غیر فعال پردازش شدند"
+
#: ../../admin/catalog.php:152
#, fuzzy
msgid "Catalog Cleaned"
@@ -238,121 +251,155 @@ msgstr ""
"پایگاه داده و جداول مرتبط با آن به روز شدند تا با کاراکترست جاری شما هم "
"خوانی پیدا کنند"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "خطا: شناسه کاربری نیاز است"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
#, fuzzy
msgid "Error Passwords don't match"
msgstr "خطا رمز های عبور یکسان نیستند"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
#, fuzzy
msgid "User Updated"
msgstr "کاربر بهروزرسانی شد."
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "به روز شد"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "خطا: این شناسه کاربری قبلا استفاده شده است"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "خطا: اضافه کردن با مشکل مواجه شد"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "میهمان"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "کاربر"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "مدیر"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "کاربر جدید اضافه شد"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "کاربر فعال شد"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "کاربر غیر فعال شد"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
#, fuzzy
msgid "Error"
msgstr "خطا"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
#, fuzzy
msgid "Unable to Disabled last Administrator"
msgstr "آخرین مدیر را نمی شود غیر فعال کرد"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "کاربر حذف شد"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr "ایجاد شد"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "خطا در حذف"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
#, fuzzy
msgid "Unable to delete last Admin User"
msgstr "آخرین کاربر مدیر را نمی شود حذف کرد"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "مطمئن هستید که می خواهید به طور دائم پاک شود؟"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "کاربر حذف شد"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "کاربر حذف شد"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr "ایجاد شد"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "تولید پیکربندی جدید "
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "لیست پخش مورد نظر حذف شده است"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "آلبوم تصویر پاک شد"
@@ -417,93 +464,154 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "نمایش هنرمندانی که نامشان آغاز می شود با"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "ذخیره تنظیمات مجموعه"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "مجموعه پاکسازی شد"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "آخرین بازبینی"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "مجموعه به روز شد"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "مجموعه ایجاد شد"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "لیست پخش درون ریزی شد"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "ذخیره تنظیمات مجموعه"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "خواندن"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "ایستگاه رادیویی اضافه شد"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
#, fuzzy
msgid "Starting Album Art Search"
msgstr "شروع جستجوی تصویر آلبوم"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "مجموعه به روز شد"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "پاک کردن اطلاعات آماری مجموعه"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "مجموعه ها"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "افزودن یک مجموعه"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "درونریزی لیست پخش"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
#, fuzzy
msgid "Gather Art"
msgstr "گردآوری تصاویر"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "درگاه"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "%s تنظیمات برای"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "ناشناخته (مجزا)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -621,12 +729,12 @@ msgstr "میسر نیست %s خطا: خواندن اندازه فایل"
msgid "File Moved..."
msgstr "فایلها حذف شدند"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "ایجاد به وسیله: %s %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "کاربر فعال شد"
@@ -751,6 +859,18 @@ msgstr "خطا: این شناسه کاربری قبلا استفاده شده ا
msgid "Error: Unable to copy file to %s"
msgstr "میسر نیست %s خطا: خواندن اندازه فایل"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -777,12 +897,51 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "حذف مجموعه"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "مجموعه حذف شد"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "لیست پخش مورد نظر حذف شده است"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
#, fuzzy
msgid "Tag Cloud"
msgstr "ابر برچسب"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "مجموعه ایجاد شد"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "حذف مجموعه"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "مجموعه حذف شد"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr "ایجاد شد"
+
#: ../../democratic.php:57
#, fuzzy
msgid "The Requested Playlist has been deleted."
@@ -878,43 +1037,48 @@ msgstr "نشانی وب"
msgid "Stream Access"
msgstr "دسترسی به جریان"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
#, fuzzy
msgid "Unknown (Orphaned)"
msgstr "ناشناخته (مجزا)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "دیسک"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "هنرمندان"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
#, fuzzy
msgid "Various"
msgstr "متنوع"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "در حال پخش"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -972,171 +1136,305 @@ msgstr "سال پیش"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "شناسه/رمز مشخص نشده است"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "خطا در برقراری ارتباط"
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "افزودن به لیست پخش"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "درخواست نادرست"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "این نوع رسانه معتبر نیست یا مشخص نشده است"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
#, fuzzy
msgid "Error: Unable to open"
msgstr "خطا: امکان باز کردن نیست"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "به روز رسانی همه"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "سرور"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "ذخیره تغییرات"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "درگاه"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "دانلود"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "هنرمند و عنوان"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+#, fuzzy
+msgid "Edit"
+msgstr "ویرایش"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "حذف"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "آهنگ ها"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "آلبوم ها"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "مدیریت کاربران"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "ایستگاه های رادیویی"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "لیست های پخش"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "آهنگ های لیست پخش"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "لیست پخش جاری"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "درونریزی لیست پخش"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "مجموعه ها"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "رکوردهای پیام کوتاه"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "ویدیو ها"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
#, fuzzy
msgid "Democratic Playlist"
msgstr "لیست پخش دمکراتیک"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "آلبوم های مرتبط"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "شیئ"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "ذخیره تغییرات"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "ادامه"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "هیچگاه"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "روز"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "ساعت"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "به روز رسانی نیاز نیست"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "پاکسازی مجموعه انجام شد"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "پاکسازی مجموعه انجام شد"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "ایجاد حساب جدید امکان ندارد"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "ذخیره تغییرات"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "ناشناخته"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "متوقف شد"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
#, fuzzy
@@ -1149,35 +1447,24 @@ msgid "Primary"
msgstr "اصلی"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "مدیر محتوا"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "مدیر مجموعه"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "متوقف شد"
-
#: ../../lib/class/localplay.class.php:633
#, fuzzy
msgid "Paused"
msgstr "متوقف شده"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "ناشناخته"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1210,24 +1497,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "افزودن مجموعه"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "آلبوم های مرتبط"
-
-#: ../../lib/class/random.class.php:374
-#, fuzzy
-msgid "Related Genre"
-msgstr "دسته های مرتبط"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "هنرمندان مرتبط"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-#, fuzzy
-msgid "Pure Random"
-msgstr "کاملا تصادفی"
-
#: ../../lib/class/registration.class.php:52
#, fuzzy, php-format
msgid "New User Registration at %s"
@@ -1243,7 +1512,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1270,8 +1538,8 @@ msgstr ""
"\n"
"متشکریم\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1279,6 +1547,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"یک کاربر جدید ثبت نام کرده است\n"
@@ -1361,109 +1630,109 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "عنوان"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "آلبوم"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "هنرمند"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
#, fuzzy
msgid "Comment"
msgstr "دیدگاه"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
#, fuzzy
msgid "Tag"
msgstr "برچسب"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "نام فایل"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "سال"
@@ -1471,41 +1740,44 @@ msgstr "سال"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "رتبه"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "پخش شده"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
#, fuzzy
msgid "Bitrate"
msgstr "نرخ بيت"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "پخش شده"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1513,158 +1785,145 @@ msgstr "مجموعه"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "لیست پخش"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "نام لیست پخش"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "درونریزی لیست پخش"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
#, fuzzy
msgid "Name"
msgstr "نام"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "پخش"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
#, fuzzy
msgid "Add"
msgstr "افزودن"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
#, fuzzy
msgid "Post Shout"
msgstr "پست شات"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr " نمایش متن موزیک"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "به روز رسانی نیاز نیست"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "اطلاعات کافی نیست"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "کاربر فعال شد"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "ناشناخته"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "می پذیرم"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "حذف"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "افزودن به لیست پخش"
@@ -1747,21 +2006,38 @@ msgstr "کاراکتر ست پایگاه داده به روز شد"
msgid "Administrative user creation failed: %s"
msgstr "کاربر فعال شد"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "خطا: شناسه کاربری یا رمز عبور اشتباه است. لطفا دوباره امتحان کنید"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "کاربر غیر فعال شده است، لطفا با مدیر تماس بگیرید"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "کاربر قبلا وارد شده است"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "ایجاد حساب جدید امکان ندارد"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "فعالسازی"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "غیرفعال"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
@@ -1769,121 +2045,109 @@ msgstr "غیرفعال"
msgid "None"
msgstr "هیچ کدام"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
#, fuzzy
msgid "Stream"
msgstr "استریم"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
#, fuzzy
msgid "Democratic"
msgstr "دمکراتیک"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
#, fuzzy
msgid "Localplay"
msgstr "پخش محلی"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "XSPF پخش کننده"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "ساده M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
#, fuzzy
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "غیر فعال شد"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "مدیر"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "بعد از اضافه کردن بفرست"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
#, fuzzy
msgid "Send and Clear on Add"
msgstr "فرستادن و پاک شدن هنگام اضافه کردن"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
#, fuzzy
msgid "Clear on Send"
msgstr "بعد از فرستادن پاک کن"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr " پیش فرض"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "همیشه"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "کد گذاری"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1915,7 +2179,8 @@ msgstr "جفنگه"
msgid "Off the Charts!"
msgstr "!نمایش نمودار ها را متوقف کن"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "خانه"
@@ -1931,14 +2196,14 @@ msgstr "پخش محلی"
msgid "Random Play"
msgstr "پخش تصادفی"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "جستجو"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "تنظیمات"
@@ -1973,7 +2238,7 @@ msgid "Browse Music"
msgstr "جسنجوی موسیقی"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "اطلاعات آماری"
@@ -1981,31 +2246,14 @@ msgstr "اطلاعات آماری"
msgid "Add New"
msgstr "افزودن جدید"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "روشن"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "خاموش"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "خطا: شناسه کاربری یا رمز عبور اشتباه است. لطفا دوباره امتحان کنید"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "کاربر غیر فعال شده است، لطفا با مدیر تماس بگیرید"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "کاربر قبلا وارد شده است"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "ایجاد حساب جدید امکان ندارد"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -2032,11 +2280,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2106,11 +2356,11 @@ msgstr "پست الکترونیک "
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
#, fuzzy
msgid "Password"
msgstr "رمز"
@@ -2179,49 +2429,49 @@ msgid "Error: Unable to change to directory %s"
msgstr "خطا: تغیر مسیر به دایرکتوری امکان پذیر نیست"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "میسر نیست %s خطا: خواندن اندازه فایل"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "قابل خواندن به وسیله آمپاچی نیست %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "با کاراکترست سایت همخوانی ندارد %s"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
#, fuzzy
msgid "Catalog Root unreadable, stopping clean"
msgstr "ریشه مجموعه قابل دستیابی نیست. پاکسازی متوقف می شود."
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2236,13 +2486,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
#, fuzzy
msgid "Username"
msgstr "شناسه"
@@ -2363,20 +2613,20 @@ msgstr "نام میزبان"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "درگاه"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
#, fuzzy
msgid "Random"
msgstr "تصادفی"
@@ -2394,14 +2644,46 @@ msgstr "ایجاد شد"
msgid "Playlist Imported"
msgstr "لیست پخش درون ریزی شد"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "لیست پخش وارد نشد"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "لیستهای پخش خالی حذف شدند"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "نام نویسی انجام شد"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
#, fuzzy
msgid "Server"
@@ -2420,38 +2702,38 @@ msgstr "حساب شما به روز شد"
msgid "Radio Station Added"
msgstr "ایستگاه رادیویی اضافه شد"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "خطا کپچا لازم است"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "خطا کپچا اشتباه است"
-#: ../../register.php:80
+#: ../../register.php:81
#, fuzzy
msgid "You must accept the user agreement"
msgstr "توافقنامه کاربر را بپذيريد بايد برای ادامه کار شما"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "شما شناسه کاربری را وارد نکرده اید"
-#: ../../register.php:89
+#: ../../register.php:90
#, fuzzy
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "لطفا نام کامل خود را وارد نمایید. نام و نام خانوادگی"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "درخواست نادرست"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "شما باید یک رمز عبور وارد کنید"
-#: ../../register.php:102
+#: ../../register.php:103
#, fuzzy
msgid "Your passwords do not match"
msgstr "رمز های عبور شما باهم یکسان نیستند"
@@ -2471,6 +2753,11 @@ msgstr "جستجو شده"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2479,45 +2766,80 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "شیئ"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "کاربر حذف شد"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "کاربر حذف شد"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr "ایجاد شد"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr " شیء انتخاب شده نادرست است"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "فیلترها"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "شروع شده با"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
#, fuzzy
msgid "Minimum Count"
msgstr "کمترین تعداد"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "ارزیابی شده"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "پخش نشده"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
#, fuzzy
msgid "All Playlists"
msgstr "تمام لیست پخش ها"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "عنوان آهنگ"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2526,96 +2848,72 @@ msgstr ""
msgid "Ampache error page"
msgstr "به روز رسانی آمپاچی"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "اشکال زدایی آمپاچی"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
#, fuzzy
msgid "Queries:"
msgstr "جستارها"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
#, fuzzy
msgid "Cache Hits:"
msgstr "Cache Hits:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "لغو"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "خروج"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "آهنگهای مورد علاقه"
+
+#: ../../templates/header.inc.php:316
#, fuzzy
msgid "Error Config File Out of Date"
msgstr "منقضی شده است config خطا تاریخ فایل "
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "تولید پیکربندی جدید "
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "نصب آمپاچی"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "نیازمندیها"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"لطفا قبل از ادامه نصب از وجود موارد مورد نیاز زیر مطمئن شوید .را بر عهده "
-"دارد ampache.cfg.php این صفحه نصب پایگاه داده آمپاچی و ایجاد فایل"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"به همراه شناسه کاربری و رمز عبور که حق ایجاد و تغییر پایگاه داده را دارا "
-"باشد MySQL سرور "
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"را دارد /config/ampache.cfg.php.dist و /sql/ampache.sql سرور شما حق خواندن "
-"از فایل وب"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"را ویرایش کنید. /config/ampache.cfg.php لطفا هرگاه از وجود ملزومات فوق "
-"اطمینان یافتید، فرم اطلاعات زیر را پر کنید. از شما تنها مقادیر مورد نیاز "
-"پیکربندی خواسته می شود. اگر شما مایل هستید که آمپاچی نصب شده خود را در زمان "
-"دیگری تغییر دهید، به سهولت می توانید فایل"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "قبلی"
@@ -2625,7 +2923,7 @@ msgstr "قبلی"
msgid "Next"
msgstr "بعدی"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "محدودیت سایز"
@@ -2635,27 +2933,28 @@ msgid "Add to Playlist"
msgstr "افزودن به لیست پخش"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "افزودن به لیست پخش جدید"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "دانلود دسته ای"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "پاک کردن لیست پخش"
@@ -2663,29 +2962,27 @@ msgstr "پاک کردن لیست پخش"
msgid "Add Dynamic Items"
msgstr "افزودن اقلام پویا"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "تصادفی"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "هنرمندان مرتبط"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "افزودن تصادفی از آلبوم"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "برچسب مرتبط"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "پخش تصادفی"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "حذف"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2720,15 +3017,15 @@ msgstr "افزودن پیشرفته"
msgid "Access Control Entries"
msgstr "ورودیهای کنترل دسترسی"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "آدرس خاتمه"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "آدرس شروع"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2738,91 +3035,84 @@ msgstr "آدرس شروع"
msgid "Level"
msgstr "سطح"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "نوع"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
#, fuzzy
msgid "Action"
msgstr "کنش"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-#, fuzzy
-msgid "Edit"
-msgstr "ویرایش"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "پست الکترونیک "
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "رمز جدید"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "تایید رمز"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
#, fuzzy
msgid "Clear Stats"
msgstr "پاک کردن آمار"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "به روز رسانی حساب"
@@ -2951,13 +3241,82 @@ msgid "Gather Album Art"
msgstr "گردآوری تصاویر آلبوم"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "m3u ساختن لیست پخش از فایلهای"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "افزودن مجموعه"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "تاریخ ایجاد"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "دسترسی به جریان"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+#, fuzzy
+msgid "Description"
+msgstr "توضیح"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+#, fuzzy
+msgid "Interface"
+msgstr "رابط"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "نوع جستجو"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "ایجاد"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2970,16 +3329,16 @@ msgstr "صفحه خانه"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "جریان URL نشانی"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
#, fuzzy
msgid "Codec"
@@ -2989,11 +3348,6 @@ msgstr "فشرده کننده"
msgid "Create a new playlist"
msgstr "ایجاد لیست پخش جدید"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "ایجاد"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -3019,6 +3373,38 @@ msgstr "یافت شد"
msgid "Reading"
msgstr "خواندن"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "تاریخ ایجاد"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "شیئ"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "اجازه پخش جریانی"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "اجازه دانلود"
+
#: ../../templates/show_add_shout.inc.php:28
#, fuzzy
msgid "Post to Shoutbox"
@@ -3048,17 +3434,22 @@ msgstr "افزودن کاربر تازه"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "نام کامل"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "سطح دسترسی کاربر"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "افزودن کاربر"
@@ -3078,263 +3469,349 @@ msgid "Invalid"
msgstr "نادرست"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "انتخاب"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
#, fuzzy
msgid "Actions"
msgstr "کارها"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "پخش آلبوم"
+msgid "Play last"
+msgstr "لیست پخش"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "پخش آلبوم"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "پخش آلبوم"
+msgid "Add to temporary playlist"
+msgstr "افزودن به لیست پخش جدید"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "افزودن آلبوم"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "افزودن تصادفی از آلبوم"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "تعیین شماره تراک"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "آیا شما واقعا می خواهید این مجموعه را حذف کنید؟"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "بازگردانی تصویر آلبوم"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "پیدا کردن تصویر آلبوم"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "آیا شما واقعا می خواهید این مجموعه را حذف کنید؟"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "به روز رسانی از برچسب ها"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "دانلود"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "پخش آلبوم"
+msgid "Save Tracks Order"
+msgstr "تعیین شماره تراک"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "تصویر آلبوم"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "آیا شما واقعا می خواهید این مجموعه را حذف کنید؟"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "به روز رسانی از برچسب ها"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "ویرایش آلبوم"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "افزودن به لیست پخش جدید"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
#, fuzzy
msgid "Cover"
msgstr "جلد"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "برچسب ها"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-#, fuzzy
-msgid "Flag"
-msgstr "نشان"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "هیچ آهنگ غیر فعال شده ای یافت نشد"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "هنرمندان محبوب"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "آلبوم های محبوب"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "دسته های محبوب"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "آهنگهای محبوب"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "محبوبترین استریم های زنده"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "برچسب های محبوب"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "در حال بارگذاری..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "%s نمایش تمام آهنگهای"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "%s آلبومهای"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "لیست پخش"
+msgid "Show all"
+msgstr "نمایش همه"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "%s اضافه کردن تمام آهنگهای"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "%s آلبومهای"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "پخش آلبوم"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "لیست پخش"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "%s اضافه کردن تمام آهنگهای"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "افزودن به لیست پخش جدید"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "%s اضافه کردن تمام آهنگهای"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "%s اضافه کردن آهنگهای تصادفی از"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "هنرمند و عنوان"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "ویرایش هنرمند"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr " نمایش تصویر"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "آلبوم ها"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
#, fuzzy
msgid "Similar Artists"
msgstr "هنرمندان مشابه"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "هنرمند و عنوان"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "زمان"
@@ -3348,6 +3825,46 @@ msgstr "هنرمند مشابه پیدا نشد"
msgid "Click to close window"
msgstr "برای بستن پنجره کلیک کنید"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+#, fuzzy
+msgid "Yes"
+msgstr "آری"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+#, fuzzy
+msgid "No"
+msgstr "خیر"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "ژانر"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "آغاز"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "هنرمند مشابه پیدا نشد"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "بازبینی"
@@ -3365,68 +3882,82 @@ msgstr "پاک"
msgid "Update"
msgstr "به روز رسانی"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "آخرین بازبینی"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "آخرین اضافه کردن"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "آخرین پاکسازی"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "هیچ مجموعه ای یافت نشد"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-#, fuzzy
-msgid "Description"
-msgstr "توضیح"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "نگارش"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "فعال"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "هیچ رکوردی پیدا نشد"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "شروع شده با"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "جریان URL نشانی"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "وضعیت"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "هیچ مجموعه ای یافت نشد"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3437,7 +3968,45 @@ msgstr "%s پاک کردن مجموعه"
msgid "Checking"
msgstr "در حال بررسی"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "تاریخ"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "کنش"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "هیچ آهنگ غیر فعال شده ای یافت نشد"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "آخرین دیدار"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "هنرمند مشابه پیدا نشد"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "ادامه"
@@ -3482,94 +4051,93 @@ msgstr "تنظیم کاراکترست پایگاه داده"
msgid "PHP Settings"
msgstr "PHP تنظیمات"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
#, fuzzy
msgid "Setting"
msgstr "تنظیم"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
#, fuzzy
msgid "Value"
msgstr "مقدار"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
#, fuzzy
msgid "Memory Limit"
msgstr "محدودیت حافظه"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
#, fuzzy
msgid "Maximum Execution Time"
msgstr "بیشترین زمان اجرا"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
#, fuzzy
msgid "Override Execution Time"
msgstr "لغو زمان اجرا"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "ناموفق"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
#, fuzzy
msgid "Succeeded"
msgstr "موفقیت آمیز بود"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
#, fuzzy
msgid "Safe Mode"
msgstr "وضعیت امن"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Zlib پشتیبانی از"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "GD پشتیبانی از"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Iconv پشتیبانی از"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Gettext پشتیبانی از"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "پیکر بندی جاری"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "تنظیمات"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "به روز رسانی آمپاچی"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "نصب آمپاچی"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "نصب آمپاچی"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3593,46 +4161,46 @@ msgstr "پخش دمکراتیک لیست پخش"
msgid "Playing from base Playlist"
msgstr "پخش کردن از لیست پخش اصلی"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
#, fuzzy
msgid "Votes"
msgstr "آراء"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "حذف نظر سنجی"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "افزودن نظرسنجی"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "دسترسی محدود است"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "این رویداد ثبت شد"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
"function."
msgstr "شما به این صفحه ارجاع داده شدید زیرا حق دسترسی به این عملکرد را ندارید"
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
#, fuzzy
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"اگر فکر می کنید که این یک خطا در سیستم است لطفا با مدیر آمپاچی تماس بگیرید"
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3641,8 +4209,8 @@ msgstr ""
"شما به این صفحه ارجاع داده شدید زیرا قصد داشتید از عملکردی استفاده کنید که "
"در حالت نمایشی غیر فعال است"
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
#, fuzzy
msgid "Addition Time"
msgstr "زمان اضافه شدن"
@@ -3673,15 +4241,16 @@ msgstr "آهنگ های تکراری"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "آهنگ"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
#, fuzzy
msgid "Length"
msgstr "درازا"
@@ -3784,12 +4353,9 @@ msgid "Created by: %s for %s"
msgstr "ایجاد به وسیله: %s %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "تراک"
@@ -3801,31 +4367,31 @@ msgstr "ویرایش کاربر موجود"
msgid "User Properties"
msgstr "مشخصات کاربر"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
#, fuzzy
msgid "Other Options"
msgstr "گزینههای دیگر"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
#, fuzzy
msgid "Config Preset"
msgstr "اصلی Config"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "فلش"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
#, fuzzy
msgid "Prevent Preset Override"
msgstr "جلوگیری از دوباره نویسی پیش فرض"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
#, fuzzy
msgid "This Affects all non-Admin accounts"
msgstr "تاثیر این کار روی تمام کاربران غیر مدیر اعمال می شود"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
#, fuzzy
msgid "Update User"
msgstr "بهروزرسانی کاربر "
@@ -3875,24 +4441,35 @@ msgstr "گرفتن تصویر"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "اطلاعات"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "افزودن لیست پخش از یک فایل"
-#: ../../templates/show_import_playlist.inc.php:34
-#, fuzzy
-msgid "Playlist Type"
-msgstr "نوع لیست پخش"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
#, fuzzy
msgid "Import Playlist"
msgstr "درونریزی لیست پخش"
@@ -3906,25 +4483,31 @@ msgstr "آلبوم روز"
#: ../../templates/show_install_account.inc.php:26
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
+msgid "Install progress"
+msgstr ""
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "قدم 1 - ایجاد و درج پایگاه داده آمپاچی"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "ampache.cfg.php قدم 2 - ایجاد فایل"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "قدم 3 - برپایی نخستین حساب"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3933,58 +4516,100 @@ msgstr ""
"این گام نخستین حساب مدیریتی آمپاچی را ایجاد می کند. هرگاه حساب مدیریتی "
"برایتان ایجاد شد، شما به صفحه ورود ارجاع داده می شوید"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Admin ایجاد حساب"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "ایجاد حساب"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "نیازمندیها"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"لطفا قبل از ادامه نصب از وجود موارد مورد نیاز زیر مطمئن شوید .را بر عهده "
+"دارد ampache.cfg.php این صفحه نصب پایگاه داده آمپاچی و ایجاد فایل"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"به همراه شناسه کاربری و رمز عبور که حق ایجاد و تغییر پایگاه داده را دارا "
+"باشد MySQL سرور "
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"را دارد /config/ampache.cfg.php.dist و /sql/ampache.sql سرور شما حق خواندن "
+"از فایل وب"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"را ویرایش کنید. /config/ampache.cfg.php لطفا هرگاه از وجود ملزومات فوق "
+"اطمینان یافتید، فرم اطلاعات زیر را پر کنید. از شما تنها مقادیر مورد نیاز "
+"پیکربندی خواسته می شود. اگر شما مایل هستید که آمپاچی نصب شده خود را در زمان "
+"دیگری تغییر دهید، به سهولت می توانید فایل"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
#, fuzzy
msgid "CHECK"
msgstr "بررسی"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "وضعیت"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "توضیح"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "قابل خواندن به وسیله آمپاچی نیست %s"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "وجود دارد؟ Ampache.cfg.php آیا"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3997,63 +4622,63 @@ msgstr ""
"شود. اين گام از شما مي خواهد که فايل را دانلود کنيد. لطفا اين فايل را در "
"پوشه پيکربندي قرار دهيد"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "ایجاد فایل پیکربندی"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
#, fuzzy
msgid "Web Path"
msgstr "نشانی وب"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "نام پایگاه داده مورد نظر"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL نام میزبان"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQL شناسه"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQL رمز"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "خواندن/نوشتن"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "وجود دارد؟ Ampache.cfg.php آیا"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "پیکربندی شده است؟ Ampache.cfg.php آیا"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "بررسی پیکربندی"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "رفتن به مرحله 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -4063,57 +4688,57 @@ msgstr ""
"با حق ایجاد پایگاه داده فراهم کنید. mysql در این بخش پایگاه داده آمپاچی "
"ایجاد شده و به سیستم افزوده می شود. به این منظور لطفا یک حساب "
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "درج پایگاه داده آمپاچی"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "نام پایگاه داده مورد نظر"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "MySQL شناسه مدیر"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "MySQL رمز مدیر"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "ایجاد کاربر پایگاه داده برای پایگاه داده جدید"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "نام کاربری (شناسه) پایگاه داده آمپاچی"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "رمز ورود برای کاربر پایگاه داده آمپاچی"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "دوباره نویسی در صورت وجود"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "استفاده از پایگاه داده موجود"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "درج پایگاه داده"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "انتخاب زبان نصب"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "شروع پیکر بندی"
@@ -4132,11 +4757,6 @@ msgstr "نمایش یکتا"
msgid "Show All"
msgstr "نمایش همه"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "تاریخ"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
#, fuzzy
@@ -4147,12 +4767,12 @@ msgstr "IP نشانی های"
msgid "Manage Radio Stations"
msgstr "مدیریت ایستگاه های رادیویی"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "نام لیست پخش"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4203,53 +4823,53 @@ msgstr "نمایش موارد پخش محلی"
msgid "Edit Instance"
msgstr "ویرایش مورد"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
#, fuzzy
msgid "Localplay Control"
msgstr "کنترل پخش محلی"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
#, fuzzy
msgid "Mute"
msgstr "ساکت"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "کاهش ولوم"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "افزایش ولوم"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "ولوم"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "تکرار"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
#, fuzzy
msgid "Remember Me"
msgstr "مرا به خاطر بسپار"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "رمز"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
#, fuzzy
msgid "Login"
msgstr "ورود"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
#, fuzzy
msgid "Register"
msgstr "نامنویسی"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "پیام روز"
@@ -4288,11 +4908,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "اشکال زدایی آمپاچی"
-
#: ../../templates/show_mail_users.inc.php:48
#, fuzzy
msgid "Subject"
@@ -4361,6 +4976,7 @@ msgstr "ایجاد لیست پخش جدید"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "شیئ"
@@ -4375,36 +4991,18 @@ msgstr "سنجاقشده"
msgid "Date Added"
msgstr "تاریخ اضافه شدن"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "پخش آلبوم"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "پخش آلبوم"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "افزودن آلبوم"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "گزینههای پیشرفته"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "آلبوم ها"
+msgid "No missing album found"
+msgstr "هیچ آهنگ غیر فعال شده ای یافت نشد"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "هنرمندان مشابه"
@@ -4422,128 +5020,61 @@ msgstr "هنوز ارزیابی نشده"
msgid "%s of 5"
msgstr "5 از %s"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-#, fuzzy
-msgid "Normalize Tracks"
-msgstr "نرمالیزه کردن تراک ها"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "پخش آلبوم"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "لیست پخش"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "افزودن همه"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
#, fuzzy
-msgid "Add Random"
-msgstr "افزودن تصادفی"
+msgid "Create channel"
+msgstr "تاریخ ایجاد"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "آیا شما واقعا می خواهید این مجموعه را حذف کنید؟"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "لیست پخش"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "لیست پخش"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "روشهای لیست پخش"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "نام لیست پخش"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
#, fuzzy
msgid "# Songs"
msgstr "آهنگ ها#"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "مالک"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "هنرمند مشابه پیدا نشد"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "آهنگ های لیست پخش"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "آهنگ های لیست پخش"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "ژانر"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s لیست پخش"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
msgid "Installed Version"
msgstr ""
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
#, fuzzy
msgid "Deactivate"
msgstr "غیرفعال کردن"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4552,14 +5083,14 @@ msgstr ""
msgid "Preference Administration"
msgstr "مدیریت تنظیمات"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
#, fuzzy
msgid "Apply to All"
msgstr "اعمال تغییرات برای همه"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "سطح دسترسی"
@@ -4597,6 +5128,18 @@ msgstr "تعداد موارد"
msgid "Unlimited"
msgstr "نامحدود"
+#: ../../templates/show_random.inc.php:68
+#, fuzzy, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "دقیقه %d"
+
+#: ../../templates/show_random.inc.php:70
+#, fuzzy, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "ساعت %d"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "محدودیت سایز"
@@ -4605,22 +5148,70 @@ msgstr "محدودیت سایز"
msgid "Enqueue"
msgstr "به صف کردن"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "آخرین آهنگ های پخش شده"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "ثانیه پیش"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "دقیقه پیش"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "ساعت پیش"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "روز پیش"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "هفته پیش"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "ماه پیش"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "سال پیش"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "ثانیه پیش"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "هیچ آهنگ غیر فعال شده ای یافت نشد"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "هنرمند مشابه پیدا نشد"
@@ -4696,7 +5287,7 @@ msgstr "اضافه کردن قاعده"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "جستجوی پیشرفته"
@@ -4722,16 +5313,54 @@ msgstr "گزینهها"
msgid "Add Search Results"
msgstr "اضافه کردن نتایج جستجو"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "شیئ"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "تاریخ ایجاد"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "آخرین بازبینی"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "عمومی"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "بعد از اضافه کردن بفرست"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "افزودن همه"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "ذخیره تغییرات"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "درونریزی لیست پخش"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "هنرمند مشابه پیدا نشد"
@@ -4750,57 +5379,44 @@ msgstr "جزییات"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
msgid "Link"
msgstr ""
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
msgid "Label"
msgstr ""
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "زبان"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "نام مجموعه"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "نشانها به روز شدند"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "%s متن"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "آهنگ های لیست پخش"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "اطلاعات آهنگ"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "عنوان آهنگ"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "هیچ آهنگ غیر فعال شده ای یافت نشد"
@@ -4822,14 +5438,32 @@ msgstr "سایز مجموعه"
msgid "Catalog Time"
msgstr "زمان مجموعه"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "آلبوم های محبوب"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "هنرمندان محبوب"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "عنوان آهنگ"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "آیا شما واقعا می خواهید این مجموعه را حذف کنید؟"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
#, fuzzy
msgid "Ampache Debug"
msgstr "اشکال زدایی آمپاچی"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4951,10 +5585,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "PHP Session پشتیبانی"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"بارگذاري شده است؟ PHP براي mysql extensions اين تست بررسي مي کند تا ببيند "
+"آيا"
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "وضعیت امن"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4964,33 +5612,33 @@ msgstr ""
"اما بدون آن بعضي قابليت هاي آمپاچي کار نخواهد کرد SafeMode در وضعيت PHP اين "
"تست مطمئن مي سازد که"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "محدودیت حافظه"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "بیشترین زمان اجرا"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -5000,12 +5648,12 @@ msgstr ""
"وسيله ampache.cfg.php را بخواند. اگر اين عمل با شکست مواجه شود، احتمالا "
"فايل /config/ampache.cfg.php اين بخش سعي مي کند فايل"
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "پیکر بندی لیست پخش دمکراتیک"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -5014,12 +5662,12 @@ msgstr ""
"این تست مطمئن می سازد که شما تمام متغیرهای پیکربندی مورد نیاز را مقداردهی "
"کرده اید و ما می توانیم به طور کامل پیکربندی شما را بخوانیم"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "کاراکتر ست پایگاه داده به روز شد"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -5028,12 +5676,12 @@ msgstr ""
"سعی می کند به پایگاه داده متصل شود ampache.cfg.php این بخش با استفاده از "
"داده های موجود در فایل"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "نام پایگاه داده مورد نظر"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -5042,12 +5690,12 @@ msgstr ""
"این قسمت چند جدول کلیدی را بررسی می کند تا از صحت ایجاد پایگاه داده آمپاچی و "
"توانایی دسترسی کاربر اطمینان حاصل کند. "
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "نشانی وب"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -5089,104 +5737,80 @@ msgstr "کلید تعیین اعتبار استفاده شده صحیح نیست
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "ابزارهای مربوط به کاربر"
+msgid "User Favorites"
+msgstr "مشخصات کاربر"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "تاریخ ایجاد"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
#, fuzzy
msgid "Last Seen"
msgstr "آخرین دیدار"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
#, fuzzy
msgid "Activity"
msgstr "فعالیت"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
#, fuzzy
msgid "Status"
msgstr "وضعیت"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "کاربر در حال حاضر آنلاین است"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "کاربر در حال حاضر آفلاین است"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
#, fuzzy
msgid "Active Playlist"
msgstr "لیست فعال"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "هنرمندان پیشنهادی"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "آلبومهای پیشنهادی"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "آهنگ های پیشنهادی"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "توافق نامه کاربر"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "می پذیرم"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "اطلاعات کاربر"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "لازم"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "ثبت نام کاربر"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "نام کامل"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "تاریخ ثبت"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "IP آخرین "
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "آنلاین"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "هنرمندان مورد علاقه"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "آلبوم های مورد علاقه"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "آهنگهای مورد علاقه"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5198,21 +5822,18 @@ msgstr "مجموعه ها"
msgid "Updating the %s catalog"
msgstr "%s به روز رسانی مجموعه"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, fuzzy, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "مورد یافت شد. در حال بررسی اطلاعات برچسب ها %d"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "تایید شده"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "آهنگ های لیست پخش"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
#, fuzzy
msgid "Resolution"
@@ -5224,7 +5845,7 @@ msgid "No video found"
msgstr "هیچ رکوردی پیدا نشد"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "هنرمندان مرتبط"
@@ -5271,54 +5892,49 @@ msgstr "پیکربندی سرور"
msgid "Browse"
msgstr "کاوش"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "عنوان آهنگ"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "درحال پخش"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "درونریزی"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
#, fuzzy
msgid "Advanced"
msgstr "پیشرفته"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
#, fuzzy
msgid "Newest"
msgstr "تازهترین"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
#, fuzzy
msgid "Popular"
msgstr "محبوب"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "ارزیابی شده"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "نشان"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "ماژول ها"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "خروج"
@@ -5376,7 +5992,7 @@ msgstr "مدیریت لیست پخش"
msgid "Account"
msgstr "حساب"
-#: ../../update.php:59
+#: ../../update.php:67
#, fuzzy, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5387,18 +6003,15 @@ msgstr ""
"آمپاچي شما 3.3.3.5 اين صفحه تمام به روز رساني هاي ديتابيس "
"آمپاچي از نگارش"
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "اعمال به روز رسانی های زیر لازم است "
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "همین الان به روز رسانی کن"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "نصب آمپاچی"
-
#: Database words
msgid "Allow Downloads"
msgstr "اجازه دانلود"
@@ -5504,15 +6117,160 @@ msgstr "کاربر به تراک"
msgid "Streaming"
msgstr "پخش جریانی"
-#: Database words
-#, fuzzy
-msgid "Interface"
-msgstr "رابط"
-
#: Database words
msgid "System"
msgstr "سیستم"
+#~ msgid "Related Album"
+#~ msgstr "آلبوم های مرتبط"
+
+#, fuzzy
+#~ msgid "Related Genre"
+#~ msgstr "دسته های مرتبط"
+
+#, fuzzy
+#~ msgid "Pure Random"
+#~ msgstr "کاملا تصادفی"
+
+#~ msgid "Related Tag"
+#~ msgstr "برچسب مرتبط"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "پخش آلبوم"
+
+#~ msgid "Play Album"
+#~ msgstr "پخش آلبوم"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "پخش آلبوم"
+
+#~ msgid "Add Album"
+#~ msgstr "افزودن آلبوم"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "پخش آلبوم"
+
+#, fuzzy
+#~ msgid "Flag"
+#~ msgstr "نشان"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "دسته های محبوب"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "آهنگهای محبوب"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "محبوبترین استریم های زنده"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "برچسب های محبوب"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "%s نمایش تمام آهنگهای"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "لیست پخش"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "%s اضافه کردن تمام آهنگهای"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "لیست پخش"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "%s اضافه کردن تمام آهنگهای"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "%s اضافه کردن تمام آهنگهای"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "%s اضافه کردن آهنگهای تصادفی از"
+
+#, fuzzy
+#~ msgid "Playlist Type"
+#~ msgstr "نوع لیست پخش"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "پخش آلبوم"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "پخش آلبوم"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "افزودن آلبوم"
+
+#, fuzzy
+#~ msgid "Normalize Tracks"
+#~ msgstr "نرمالیزه کردن تراک ها"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "لیست پخش"
+
+#, fuzzy
+#~ msgid "Add Random"
+#~ msgstr "افزودن تصادفی"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "لیست پخش"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "آهنگ های لیست پخش"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "آهنگ های لیست پخش"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "آهنگ های لیست پخش"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "ابزارهای مربوط به کاربر"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "هنرمندان پیشنهادی"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "آلبومهای پیشنهادی"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "آهنگ های پیشنهادی"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "هنرمندان مورد علاقه"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "آلبوم های مورد علاقه"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "آهنگ های لیست پخش"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "نشان"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "اعمال به روز رسانی های زیر لازم است "
+
+#~ msgid "Ampache Installation."
+#~ msgstr "نصب آمپاچی"
+
#, fuzzy
#~ msgid "Make Sticky"
#~ msgstr "سنجاق کردن"
@@ -5697,18 +6455,12 @@ msgstr "سیستم"
#~ msgid "Search Disabled Songs"
#~ msgstr "جستجوی آهنگ های غیر فعال"
-#~ msgid "Edit Album"
-#~ msgstr "ویرایش آلبوم"
-
#~ msgid "Flag for Retagging"
#~ msgstr "نشان گذاری برای تغییر برچسب"
#~ msgid "Update Album"
#~ msgstr "به روز رسانی آلبوم"
-#~ msgid "Edit Artist"
-#~ msgstr "ویرایش هنرمند"
-
#~ msgid "Update Artist"
#~ msgstr "به روز رسانی هنرمند"
@@ -5854,14 +6606,6 @@ msgstr "سیستم"
#~ msgid "DB Inserted"
#~ msgstr "اضافه شد DB"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "روز"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "ساعت"
-
#, fuzzy
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
@@ -5884,11 +6628,6 @@ msgstr "سیستم"
#~ msgid "images synchronized: "
#~ msgstr "تصویرهای همگام شده:"
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "پاکسازی مجموعه انجام شد"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5937,21 +6676,6 @@ msgstr "سیستم"
#~ "عملکرد در حالت نمایشی غیر فعال است. زیرا کاربران قبلی از عملکرد سیستم در "
#~ "حالت نمایشی برای فرستادن موارد نامناسب استفاده کرده اند"
-#, fuzzy
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "مورد یافت شد. در حال بررسی اطلاعات برچسب ها %d"
-
-#, fuzzy
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "دقیقه %d"
-
-#, fuzzy
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "ساعت %d"
-
#~ msgid "file"
#~ msgstr "پرونده"
@@ -5980,16 +6704,6 @@ msgstr "سیستم"
#~ "به طور نصفه آپلود شده است %s مشکلی در ارتباط با فایل آپلود شده به وجود "
#~ "آمده: فایل "
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "آهنگ ها حذف شدند"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "آهنگ های غیر فعال پردازش شدند"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "هیچ رکوردی پیدا نشد"
@@ -6023,14 +6737,6 @@ msgstr "سیستم"
#~ msgid "Keywords"
#~ msgstr "واژگان کلیدی"
-#, fuzzy
-#~ msgid "Yes"
-#~ msgstr "آری"
-
-#, fuzzy
-#~ msgid "No"
-#~ msgstr "خیر"
-
#, fuzzy
#~ msgid "Min Bitrate"
#~ msgstr "حداقل بیت ریت"
diff --git a/locale/fr_FR/LC_MESSAGES/messages.mo b/locale/fr_FR/LC_MESSAGES/messages.mo
index 79d269d2..22e818f5 100644
Binary files a/locale/fr_FR/LC_MESSAGES/messages.mo and b/locale/fr_FR/LC_MESSAGES/messages.mo differ
diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po
index ca28d8a5..3d074572 100644
--- a/locale/fr_FR/LC_MESSAGES/messages.po
+++ b/locale/fr_FR/LC_MESSAGES/messages.po
@@ -1,8 +1,8 @@
# fr_FR Translation of Ampache.
# Copyright (C) 2007 Ampache.org
# This file is distributed under the same license as the Ampache package.
-#
-#
+#
+#
# Thomas Legay , 2007.
# FHAUTZ Gilles , 2007.
# S. Roy , 2006.
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5.0\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:35+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2014-04-12 20:07+0100\n"
"Last-Translator: Jean-François Bilger \n"
"Language-Team: French \n"
@@ -33,7 +33,7 @@ msgstr "Supprimé"
msgid "Your Access List Entry has been removed"
msgstr "Votre liste d'accès a été supprimée"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Demande de suppression"
@@ -43,7 +43,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Êtes-vous sûr de vouloir supprimer définitivement"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Ajouté"
@@ -52,7 +52,7 @@ msgstr "Ajouté"
msgid "Your new Access Control List(s) have been created"
msgstr "Votre nouvelle liste d'accès a été créée"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Mis à jour"
@@ -79,15 +79,30 @@ msgstr "Le catalogue et les éléments associés ont été supprimés"
msgid "Catalog Delete"
msgstr "Catalogue supprimé"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
#, fuzzy
msgid "Confirm Deletion Request"
msgstr "Demande de suppression"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Titre enlevé"
+msgstr[1] "Titres enlevés"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Aucune piste n'a été supprimée"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Suppression de la titre pris en compte"
+msgstr[1] "Suppression des titres pris en compte"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Catalogue nettoyé"
@@ -232,116 +247,150 @@ msgstr ""
"Votre base de données et les tables associées ont été mises à jour pour "
"correspondre à votre encodage"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Erreur: Le nom d'utilisateur est obligatoire"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Erreur: Les mots de passe ne correspondent pas"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Utilisateur mis à jour"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "mis à jour"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Erreur: Nom d'utilisateur déjà existant"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Erreur : Enregistrement non effectué"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Invité"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Utilisateur"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Admin"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Nouvel utilisateur ajouté"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr "%1$s a été créé avec un niveau d'accès de %2$s"
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Utilisateur activé"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Utilisateur désactivé"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Erreur"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Impossible de désactiver le dernier administrateur"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Utilisateur supprimé"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr "%s a été créé"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Erreur de suppression"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Il est impossible de supprimer le dernier administrateur"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Êtes-vous sûr de vouloir supprimer définitivement %s ?"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Utilisateur supprimé"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Utilisateur supprimé"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr "%s a été créé"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Générer une nouvelle configuration"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "La liste de lecture a été supprimée."
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Jaquette supprimée"
@@ -406,91 +455,154 @@ msgstr "%1$s est maintenant connu comme %2$s"
msgid "Show Artists starting with"
msgstr "Voir les artistes commençant par"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "- Toutes les opérations du catalogue"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "- Nettoyage de catalogue"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "- Vérification du catalogue"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "- Ajout de catalogue"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "- Collecter les jaquettes du catalogue"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Liste de lecture importée"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Démarrage des opérations du catalogue..."
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Lecture : %s"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr "- Vérification en cours -"
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "- Ajout en cours -"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Démarrage de la recherche de jaquette d'album"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "- Catalogue mis à jour -"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+#, fuzzy
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr "Utilisation: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+#, fuzzy
+msgid "Default behavior is to do all except playlist import"
msgstr "Le comportement par défaut est d'effectuer tout"
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Vider les statistiques des catalogues"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Vérifier les catalogues"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Ajouter aux catalogues"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importer une liste de lecture"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Collecter les jaquettes"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Port "
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Démarrage des opérations du catalogue..."
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Inconnu (orphelin)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -606,12 +718,12 @@ msgstr "Erreur: Impossible d'obtenir la taille de fichier de %s"
msgid "File Moved..."
msgstr ""
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Créé par %s : %s avec mot de passe %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Echec de la création de l'utilisateur"
@@ -736,6 +848,18 @@ msgstr ""
msgid "Error: Unable to copy file to %s"
msgstr ""
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -761,11 +885,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Catalogue supprimé"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Catalogue supprimé"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "La liste de lecture a été supprimée."
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Étiquettes"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Catalogue créé"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Catalogue supprimé"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Catalogue supprimé"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr "%s a été créé"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "La liste de lecture a été supprimée."
@@ -855,41 +1018,46 @@ msgstr "Interface Web"
msgid "Stream Access"
msgstr "Accés Flux"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Inconnu (orphelin)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Disque"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artistes"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Divers"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "En cours de lecture"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -940,172 +1108,310 @@ msgstr "il y a quelques années"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr "Authentification échouée : version trop ancienne"
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr "Authentification échouée : timestamp hors limite"
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Utilisateur/mot de passe invalides"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Erreur Negociation invalide - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Ajouter à la liste de lecture"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
#, fuzzy
msgid "Invalid Request"
msgstr "Requête invalide"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "L'objet Media est invalide ou non spécifié"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Erreur: Impossible d'ouvrir"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Mise à jour disponible"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Voir"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "changements"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "ou "
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "télécharger"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Edition d'artiste"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Editer"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Supprimer"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Pistes"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Albums"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Gérer les utilisateurs"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Stations de Radio"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Listes de lecture"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Pistes de la liste de lecture"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Liste de lecture actuelle"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Liste de lecture intelligente"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Catalogues"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Zone de commentaires"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
#, fuzzy
msgid "Videos"
msgstr "Vidéos"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
#, fuzzy
msgid "Democratic Playlist"
msgstr "Créer une liste de lecture démocratique"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Album Demandés"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Objet"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Enregistrer les changements"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Plus"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Jamais"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+#, fuzzy
+msgid "day"
+msgid_plural "days"
+msgstr[0] "jour"
+msgstr[1] "jours"
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "heure"
+msgstr[1] "heures"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Aucune mise à jour nécessaire"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Nettoyage de catalogue terminé. %d fichier supprimé"
+msgstr[1] "Nettoyage de catalogue terminé. %d fichiers supprimés"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Nettoyage de catalogue terminé. %d sur %s fichiers mis à jour."
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Impossible de créer ce compte local"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Enregistrer les changements"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Inconnu"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Stoppé"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1116,34 +1422,23 @@ msgid "Primary"
msgstr "Primaire"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Gestionnaire de contenu"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Gestionnaire de catalogues"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Stoppé"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "En pause"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Inconnu"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1176,22 +1471,6 @@ msgstr "URL invalide. Doit commencer par http:// or https://"
msgid "Invalid Catalog"
msgstr "Catalogue invalide"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Album associé"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Genre associé"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Artiste associé"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Aléatoire"
-
#: ../../lib/class/registration.class.php:52
#, fuzzy, php-format
msgid "New User Registration at %s"
@@ -1207,7 +1486,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1233,8 +1511,8 @@ msgstr ""
"\n"
"Merci de vous être inscrit\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1242,6 +1520,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"Un nouvel utilisateur vient de s'enregistrer\n"
@@ -1324,108 +1603,108 @@ msgstr "après"
msgid "Any searchable text"
msgstr "N'importe quel texte recherchable"
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Titre"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artiste"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Commentaire"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
#, fuzzy
msgid "Tag"
msgstr "Étiquette"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Nom de fichier"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Année"
@@ -1433,40 +1712,43 @@ msgstr "Année"
msgid "Length (in minutes)"
msgstr "Durée (en minutes)"
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Vote"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "# Joué"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Débit"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Joué"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1474,156 +1756,143 @@ msgstr "Catalogue"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Liste de lecture"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Nom de la liste de lecture"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Liste de lecture intelligente"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Nom"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Jouer"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Ajouter"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Écrire un commentaire"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
#, fuzzy
msgid "Show Lyrics"
msgstr "Afficher paroles"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Aucune mise à jour nécessaire."
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Pas assez de données"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Utilisateur activé"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Inconnu"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Accepter"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Supprimer"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Ajouter à la liste des demandes"
@@ -1717,136 +1986,142 @@ msgstr "Erreur de selection de la base de données : %s"
msgid "Administrative user creation failed: %s"
msgstr "Echec de la création de l'utilisateur : %s"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+"Erreur: Nom d'utilisateur ou mot de passe incorrect, veuillez réessayer"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Utilisateur suspendu, contactez l'administrateur"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Utilisateur déjà connecté"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Impossible de créer ce compte local"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Activer"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Désactiver"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Aucun"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Stream"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Democratic"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Localplay"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Lecteur Web"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "M3U simple"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Désactivé"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Gestionnaire"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Ajouter et jouer"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Ajouter, jouer et vider la liste"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Jouer et vider la liste"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Défaut"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr "Bas"
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr "Moyen"
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr "haut"
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Toujours"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Année montante"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr "Année descendante"
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr "Nom montant"
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr "Nom descendant"
@@ -1878,7 +2153,8 @@ msgstr "C'est dément"
msgid "Off the Charts!"
msgstr "C'est le Top !"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Accueil"
@@ -1894,14 +2170,14 @@ msgstr "Lecture locale"
msgid "Random Play"
msgstr "Lecture aléatoire"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Rechercher"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Préférences"
@@ -1935,7 +2211,7 @@ msgid "Browse Music"
msgstr "Parcourir la musique"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statistiques"
@@ -1943,32 +2219,14 @@ msgstr "Statistiques"
msgid "Add New"
msgstr "Ajouter"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Actif"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Inactif"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-"Erreur: Nom d'utilisateur ou mot de passe incorrect, veuillez réessayer"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Utilisateur suspendu, contactez l'administrateur"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Utilisateur déjà connecté"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Impossible de créer ce compte local"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1996,11 +2254,13 @@ msgid "The password has been set to: %s"
msgstr "Le mot de passe a été actualisé : %s"
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr "Secret"
@@ -2069,11 +2329,11 @@ msgstr ""
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Mot de passe"
@@ -2144,28 +2404,28 @@ msgid "Error: Unable to change to directory %s"
msgstr "Erreur : Impossible de changer de répertoire %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, fuzzy, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Erreur: Impossible d'obtenir la taille de fichier de %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, fuzzy, php-format
msgid "%s is not readable by ampache"
msgstr "%s n'est pas lisible par ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, fuzzy, php-format
msgid "%s does not match site charset"
msgstr "%s ne correspond pas à l'encodage de caratères du site"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
@@ -2174,21 +2434,21 @@ msgstr ""
"Mise à jour terminée. Tempos total : [%s] Total pistes : [%s] Pistes par "
"secondes : [%s]"
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr "%s n'existe pas ou n'est pas lisible"
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Le chemin du catalogue est inaccessible, nettoyage stoppé"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
#, fuzzy
msgid "All files would be removed. Doing nothing"
msgstr "Toutes les fichiers seraient effacés. Avorté."
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, fuzzy, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr "Fichier d'erreur non trouvé ou 0 octets : %s"
@@ -2203,13 +2463,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Nom d'utilisateur"
@@ -2338,20 +2598,20 @@ msgstr "Nom d'hôte"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Port "
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Aléatoire"
@@ -2368,15 +2628,48 @@ msgstr "%1$s (%2$s) a été créée"
msgid "Playlist Imported"
msgstr "Liste de lecture importée"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
#, fuzzy
msgid "Playlist Not Imported"
msgstr "Liste de lecture non importée"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Listes de lecture vide supprimées"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Inscription terminée"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Serveur"
@@ -2393,36 +2686,36 @@ msgstr "Votre compte a été mis à jour"
msgid "Radio Station Added"
msgstr "Station de radio ajoutée"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Erreur saisissez le captcha"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Erreur Captcha a échoué"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Vous devez accepter les conditions d'utilisation"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Vous n'avez pas entré un nom d'utilisateur"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Veuillez saisir votre nom et prénom"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Adresse email invalide"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Vous devez entrer un mot de passe"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Vos mots de passe ne correspondent pas"
@@ -2441,6 +2734,11 @@ msgstr "Recherche enregistrée"
msgid "Your Search has been saved as a track in %s"
msgstr "Votre recherche a été enregistrée comme piste dans %s"
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr "Session expirée"
@@ -2449,44 +2747,79 @@ msgstr "Session expirée"
msgid "Unauthorized access attempt to API - ACL Error"
msgstr "Erreur accès : Accès non autorisé à l'API"
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Objet"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Utilisateur supprimé"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Utilisateur supprimé"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr "%s a été créé"
+
#: ../../shout.php:49
#, fuzzy
msgid "Invalid Object Selected"
msgstr "Objet sélectionné invalide"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filtres"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Commençant par"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Nombre minimum"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Évalué"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Non joué"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Toutes les listes de lecture"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Titre de la piste"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr "Afficher jaquette"
@@ -2495,7 +2828,14 @@ msgstr "Afficher jaquette"
msgid "Ampache error page"
msgstr "Erreur page Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+msgid "Ampache"
+msgstr ""
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
@@ -2503,86 +2843,55 @@ msgstr ""
"L'erreur suivante a été détectée, vous allez être automatiquement redirigé "
"après 10 secondes."
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr "Messages d'erreur"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Requêtes :"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Requêtes en cache :"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr "Enregistrer"
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Annuler"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Se déconnecter"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Pistes favorites"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Erreur : le fichier de configuration est expiré"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Générer une nouvelle configuration"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Installation d'Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Prérequis"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Cette page gère l'installation de la base de données d'Ampache et la "
-"création du fichier ampache.cfg.php. Avant de continuer, assurez-vous de "
-"respecter tous les prérequis :"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Un serveur MySQL avec un utilisateur et mot de passe pouvant créer et "
-"modifier les bases de données"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr "Votre serveur a les droits en lecture sur les fichiers %s et %s"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Une fois avoir vérifié les prérequis précédents, merci de saisir les "
-"informations ci-dessous. On ne vous demandera que les informations de "
-"configuration indispensables. Si vous désirez modifier par la suite votre "
-"configuration, éditez le fichier %s"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Précédent"
@@ -2592,7 +2901,7 @@ msgstr "Précédent"
msgid "Next"
msgstr "Suivant"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Limite"
@@ -2602,27 +2911,28 @@ msgid "Add to Playlist"
msgstr "Ajouter à la liste de lecture"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Ajouter à une nouvelle liste de lecture"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Téléchargement entier"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Effacer la liste de lecture"
@@ -2630,30 +2940,27 @@ msgstr "Effacer la liste de lecture"
msgid "Add Dynamic Items"
msgstr "Ajouter les éléments dynamiques"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Aléatoire"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Artiste associé"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Ajouter en aléatoire"
+
#: ../../templates/rightbar.inc.php:69
#, fuzzy
-msgid "Related Tag"
-msgstr "Marqueur associé"
+msgid "Random Playlist"
+msgstr "Lecture aléatoire"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Supprimer"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr "Aucun élèments"
@@ -2691,15 +2998,15 @@ msgstr "Ajout mode avancé"
msgid "Access Control Entries"
msgstr "Entrées du contrôle d'accès"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Adresse de début"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Adresse de fin"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2708,88 +3015,82 @@ msgstr "Adresse de fin"
msgid "Level"
msgstr "Niveau"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Type"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Action"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Editer"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "Email"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nouveau mot de passe"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Confirmation du mot de passe"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Vider les statistiques"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Modifier un compte"
@@ -2914,13 +3215,80 @@ msgid "Gather Album Art"
msgstr "Recupérer la jaquette d'album"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Construire les listes de lecture à partir des fichiers m3u"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Ajouter un catalogue"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Créer une date"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Accés Flux"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Type de recherche"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Créer"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2933,16 +3301,16 @@ msgstr "Page d'accueil"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr ""
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
#, fuzzy
msgid "Codec"
@@ -2952,11 +3320,6 @@ msgstr "Codec"
msgid "Create a new playlist"
msgstr "Créer une nouvelle liste de lecture"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Créer"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2981,6 +3344,38 @@ msgstr "Trouvé"
msgid "Reading"
msgstr "Lecture"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Créer une date"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Objet"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Autoriser Streaming"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Téléchargements autorisés"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Écrire un commentaire"
@@ -3008,17 +3403,22 @@ msgstr "Ajouter un nouvel utilisateur"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Nom complet"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Droits utilisateur"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Ajouter un utilisateur"
@@ -3039,260 +3439,347 @@ msgid "Invalid"
msgstr "Invalide"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Sélectionner"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
-msgstr "temps"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
+msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr ""
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Jouer l'album"
+msgid "Play last"
+msgstr "Liste de lecture"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Jouer l'album"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Ajouter l'album à la suite"
+msgid "Add to temporary playlist"
+msgstr "Ajouter à une nouvelle liste de lecture"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Ajouter un album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Ajouter en aléatoire"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Enregistrer l'ordre des pistes"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Voulez-vous vraiment réinitialiser la jaquette d'album ?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Réinitialiser la jaquette d'album"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Trouver une jaquette d'album"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Voulez-vous vraiment mettre à jour à partir des marqueurs ?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Mettre à jour à partir des marqueurs du fichier"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Télécharger"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Ajout l'album à la suite"
+msgid "Save Tracks Order"
+msgstr "Enregistrer l'ordre des pistes"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Edition d'album"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr "temps"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Voulez-vous vraiment mettre à jour à partir des marqueurs ?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Mettre à jour à partir des marqueurs du fichier"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Editer l'Album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Ajouter à une nouvelle liste de lecture"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Jaquette"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
#, fuzzy
msgid "Tags"
msgstr "Marqueurs"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Marqueur"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Aucun album trouvé"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Artistes les plus populaires"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Albums les plus populaires"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Genres les plus populaires"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Pistes les plus populaires"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Live-Streams les plus populaires"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Marqueurs les plus populaires"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Chargement..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Afficher toutes les chansons de %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Afficher les albums de %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Jouer l'artiste"
+msgid "Show all"
+msgstr "Afficher tout"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Jouer toutes les chansons de %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
-msgstr "Ajouter l'artiste à la suite"
+msgid "Show albums"
+msgstr "Afficher les albums de %s"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Ajouter toutes les chansons de %s à la suite"
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Tout jouer"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Ajouter toutes les chansons de %s"
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
+msgstr "Ajouter la liste de lecture à la suite"
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Ajouter des pistes aléatoires de %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Ajouter à une nouvelle liste de lecture"
-#: ../../templates/show_artist.inc.php:111
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
+
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Edition d'artiste"
+
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Editer l'artiste"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Montrer les jacquettes"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Albums manquants"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Artistes similaires"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Edition d'artiste"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Durée"
@@ -3306,6 +3793,44 @@ msgstr "Aucun artiste trouvé"
msgid "Click to close window"
msgstr "Cliquer pour fermer la fenêtre"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Oui"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Non"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Début"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Aucun artiste trouvé"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Vérifier"
@@ -3323,68 +3848,83 @@ msgstr "Nettoyer"
msgid "Update"
msgstr "Mis à jour"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Dernière vérification"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Dernier ajout"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
#, fuzzy
msgid "Last Clean"
msgstr "Dernier nettoyage"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Aucun catalogue trouvé"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr ""
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr ""
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Activer"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Aucun élèment trouvé"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Commençant par"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Stream"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Statut"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Aucun catalogue trouvé"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3395,7 +3935,45 @@ msgstr "Nettoyage du catalogue %s"
msgid "Checking"
msgstr "Verification"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Date"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Action"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Aucun titre trouvé"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Derniers vus"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Aucune liste de lecture trouvée"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Continuer"
@@ -3437,89 +4015,88 @@ msgstr "Définir le jeu de caractère d'encodage"
msgid "PHP Settings"
msgstr "Paramètres PHP"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Paramètres"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Valeur"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Limite mémoire"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Temps maximum d'exécution"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
#, fuzzy
msgid "Override Execution Time"
msgstr "Temps de surcharge d'exécution"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
#, fuzzy
msgid "Failed"
msgstr "Manqué"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Réussi"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Mode sans échec"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Support Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Support GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Support Iconv"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Support Gettext"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Configuration actuelle"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Préférence"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Mise à jour d'Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Version d'Ampache installée"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Version d'Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr "Forcer la vérification"
@@ -3542,31 +4119,31 @@ msgstr "Créer une liste de lecture démocratique"
msgid "Playing from base Playlist"
msgstr "Jouer à partir d'une liste de lecture"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Annuler le vote"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Ajouter un vote"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Accès refusé"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "L'élément a été journalisé"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3575,14 +4152,14 @@ msgstr ""
"Vous avez été redirigé sur cette page car vous n'avez pas les droits "
"nécessaires"
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"Si vous pensez que ceci est une erreur, merci de contacter l'administrateur "
"d'Ampache."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3591,8 +4168,8 @@ msgstr ""
"Vous avez été redirigé sur cette page car vous avez essayé d'accéder à une "
"fonctionnalité désactivée dans la démo"
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Temps d'ajout"
@@ -3621,15 +4198,16 @@ msgstr "Titres dupliqués"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Titre"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Durée"
@@ -3732,12 +4310,9 @@ msgid "Created by: %s for %s"
msgstr "Créé par : %s pour %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Piste"
@@ -3749,29 +4324,29 @@ msgstr "Editer un utilisateur"
msgid "User Properties"
msgstr "Propriétés de l'utilisateur"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
#, fuzzy
msgid "Other Options"
msgstr "Autres options"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
#, fuzzy
msgid "Config Preset"
msgstr "Configuration prédéfinie"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Empêcher d'écraser les paramètres prédéfinis"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Ceci affecte tous les comptes non administrateur"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Mettre à jour compte utilisateur"
@@ -3817,23 +4392,35 @@ msgstr "Obtenir la jaquette"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr ""
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr "Un média est en cours de lecture. Voulez-vous vraiment fermer ?"
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importer une liste de lecture depuis un fichier"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Type de liste de lecture"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importer une liste de lecture"
@@ -3846,24 +4433,31 @@ msgstr "Albums du moment"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Version installée"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Etape 1 - Création de la base de données d'Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Etape 2 - Création du fichier ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Etape 3 - Création du compte initial"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3872,41 +4466,82 @@ msgstr ""
"Cette étape crée votre compte administrateur. Une fois ce compte créé, vous "
"serez redirigé vers la page d'identification"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Créer un compte administrateur"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Créer un compte"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Prérequis"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Cette page gère l'installation de la base de données d'Ampache et la "
+"création du fichier ampache.cfg.php. Avant de continuer, assurez-vous de "
+"respecter tous les prérequis :"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Un serveur MySQL avec un utilisateur et mot de passe pouvant créer et "
+"modifier les bases de données"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr "Votre serveur a les droits en lecture sur les fichiers %s et %s"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Une fois avoir vérifié les prérequis précédents, merci de saisir les "
+"informations ci-dessous. On ne vous demandera que les informations de "
+"configuration indispensables. Si vous désirez modifier par la suite votre "
+"configuration, éditez le fichier %s"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "VERIFICATION"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATUT"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "DESCRIPTION"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%s n'est pas lisible"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
"Ce test permet de vérifier que le fichier de configuration est bien lisible."
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
@@ -3914,12 +4549,12 @@ msgstr ""
"Ce test permet de vérifier que le fichier d'initialisation de la base de "
"données est présent."
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php peut être modifié"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
@@ -3927,7 +4562,7 @@ msgstr ""
"Ce test permet d'écrire dans le répertoire config/. Ce n'est pas réellement "
"nécessaire, mais cela permet d'améliorer le processus d'installation."
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3942,62 +4577,62 @@ msgstr ""
"'télécharger', vous devrez télécharger le fichier de configuration et le "
"placer manuellement dans le répertoire de configuration %s"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Générer le fichier de configuration"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Chemin d'accès web"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Nom de la base de données"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "Hôte MySQL"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr "Port MySQL (optionnel)"
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Utilisateur MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Mot de passe MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Ecrire"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php existe ?"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php configuré ?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Vérification de la configuration"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Continuer vers l'étape 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -4009,58 +4644,58 @@ msgstr ""
"Cette étape peut prendre un certain temps. Cela dépends des performances de "
"votre ordinateur."
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Ajouter la base de données Ampache"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Nom de la base de données"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Nom d'utilisateur administrateur MySQL"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Mot de passe administrateur MySQL"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Créer un utilisateur de base de données pour la nouvelle base ?"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Nom d'utilisateur de base de données Ampache"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Mot de passe de l'utilisateur de base de données Ampache"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Ecraser la configuration existante"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
#, fuzzy
msgid "Use Existing Database"
msgstr "Utiliser la base de données existante"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr "Passer"
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Ajouter la base de données"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Sélectionnez la langue d'installation"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Démarrer la configuration"
@@ -4079,11 +4714,6 @@ msgstr "Afficher les IP uniques"
msgid "Show All"
msgstr "Afficher tout"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Date"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
#, fuzzy
@@ -4095,12 +4725,12 @@ msgstr "Adresse IP"
msgid "Manage Radio Stations"
msgstr "Gérer Stations de Radio"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Jouer la station"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr "Edition de stations"
@@ -4146,48 +4776,48 @@ msgstr "Afficher les instances Localplay"
msgid "Edit Instance"
msgstr "Editer l'instance"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Paramétrage des Localplay"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Muet"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Réduire le volume"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Augmenter le volume"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Volume"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Répéter"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Se souvenir de moi"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Mot de passe perdu"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Utilisateur"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "S'inscrire"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Message du Jour"
@@ -4226,10 +4856,6 @@ msgstr "De"
msgid "Yourself"
msgstr "Moi même"
-#: ../../templates/show_mail_users.inc.php:43
-msgid "Ampache"
-msgstr ""
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Sujet"
@@ -4294,6 +4920,7 @@ msgstr "Créer un nouvelle liste de lecture"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Objet"
@@ -4307,36 +4934,18 @@ msgstr "Permanent"
msgid "Date Added"
msgstr "Date d'ajout"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Jouer l'aperçu de l'album"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Ajouter l'aperçu de l'album à la suite"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Ajouter l'aperçu de l'album"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Actions des éléments demandés"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Albums manquants"
+msgid "No missing album found"
+msgstr "Aucun album trouvé"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Titres similaires"
@@ -4355,126 +4964,61 @@ msgstr "non évalué"
msgid "%s of 5"
msgstr "%s de 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normaliser les pistes"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Tout jouer"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Ajouter la liste de lecture à la suite"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Ajouter tout"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Ajouter aléatoirement"
+#, fuzzy
+msgid "Create channel"
+msgstr "Créer une date"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Voulez-vous vraiment supprimer cette liste de lecture ?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Jouer la liste de lecture"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Ajouter la liste de lecture à la suite"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Éditer la liste de lecture"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Nom de la liste de lecture"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# Titres"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Propriétaire"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Aucune liste de lecture trouvée"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Jouer titre"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Ajouter le titre à la suite"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr "Réorganiser"
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr ""
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s (Liste de lecture)"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Version installée"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
#, fuzzy
msgid "Deactivate"
msgstr "Désactiver"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr "Mettre à jour"
@@ -4482,13 +5026,13 @@ msgstr "Mettre à jour"
msgid "Preference Administration"
msgstr "Préférences d'administration"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Appliquer à tous"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Niveau d'accès"
@@ -4523,6 +5067,20 @@ msgstr "Nombre d'éléments"
msgid "Unlimited"
msgstr "Illimité"
+#: ../../templates/show_random.inc.php:68
+#, fuzzy, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minute"
+msgstr[1] "%d minutes"
+
+#: ../../templates/show_random.inc.php:70
+#, fuzzy, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d heure"
+msgstr[1] "%d heures"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Limite de Taille"
@@ -4531,22 +5089,78 @@ msgstr "Limite de Taille"
msgid "Enqueue"
msgstr "Queue de lecture"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Derniers joués"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "il y a quelques secondes"
+msgstr[1] "il y a quelques secondes"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "il y a quelques minutes"
+msgstr[1] "il y a quelques minutes"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "il y a quelques heures"
+msgstr[1] "il y a quelques heures"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "il y a quelques jours"
+msgstr[1] "il y a quelques jours"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "il y a quelques semaines"
+msgstr[1] "il y a quelques semaines"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "il y a quelques mois"
+msgstr[1] "il y a quelques mois"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "il y a quelques années"
+msgstr[1] "il y a quelques années"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "il y a quelques secondes"
+msgstr[1] "il y a quelques secondes"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Aucun élément récent trouvé"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Aucun artiste similaire trouvé"
@@ -4620,7 +5234,7 @@ msgstr "Ajouter une autre règle"
msgid "Anywhere"
msgstr "N'importe où"
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Recherche avancée"
@@ -4646,16 +5260,54 @@ msgstr ""
msgid "Add Search Results"
msgstr "Ajouter les résultats de recherche"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Objet"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Créer une date"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Dernière vérification"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Publique"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Ajouter et jouer"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Ajouter tout"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Enregistrer les changements"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Édition d'une liste de lecture intelligente"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Aucune liste de lecture intelligente trouvée"
@@ -4673,60 +5325,47 @@ msgstr "Détails"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Liens"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Etiquette"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Langue du titre"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Nombre du catalogue"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Derniers mis à jour"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "Paroles"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Jouer l'aperçu du titre"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr "Ajouter l'aperçu du titre à la suite"
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr "Ajouter l'aperçu du titre"
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
#, fuzzy
msgid "Song Information"
msgstr "Information du titre"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Édition du titre"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Aucun titre trouvé"
@@ -4747,13 +5386,31 @@ msgstr "Taille du catalogue"
msgid "Catalog Time"
msgstr "Durée du catalogue"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Albums les plus populaires"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Artistes les plus populaires"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Édition du titre"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Voulez-vous vraiment supprimer ce catalogue ?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Mode debogage d'Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4874,10 +5531,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Extension PHP iconv"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Test pour vérifier si vous avez l'extension iconv chargée pour PHP. Ceci est "
+"un prérequis pour qu'Ampache puisse fonctionner."
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Mode sans échec"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4886,33 +5557,33 @@ msgstr ""
"Ce test vérifie que le mode sans échec de PHP n'est pas actif. Bien que pas "
"obligatoire cela pourrait gêner certaines fonctionnalités de Ampache"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Limite mémoire"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Temps maximum d'exécution"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4921,12 +5592,12 @@ msgstr ""
"Test la lecture du fichier /config/ampache.cfg.php. Si cela échoue, le "
"fichier n'est pas au bon endroit ou n'est pas lisible par votre serveur web"
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Validité du fichier de configuration"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4935,12 +5606,12 @@ msgstr ""
"Ce test vérifie que toutes les variables prérequises sont correctement "
"configurées et que le fichier de configuration est lisible"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Connexion à la base de données"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4949,12 +5620,12 @@ msgstr ""
"Ceci test la connexion à votre base de données en utilisant les valeurs de "
"votre fichier de configuration"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Nom de la base de données"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4963,12 +5634,12 @@ msgstr ""
"Ceci vérifie l'ajout de quelques tables pour valider que l'utilisateur peut "
"accéder à votre base Ampache"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Chemin d'accès web"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -5007,100 +5678,76 @@ msgstr "La clé de validation utilisée est incorrecte"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Marquage Utilisateur"
+msgid "User Favorites"
+msgstr "Propriétés de l'utilisateur"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Créer une date"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Derniers vus"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Activité"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Statut"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Utilisateur est en ligne"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Utilisateur est hors ligne "
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Liste de lecture active"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Artistes recommandés"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Albums recommandés"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Titres recommandés"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Accord de l'utilisateur"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "J'accepte"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Informations de l'utilisateur"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "* Champs obligatoires"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Inscrire utilisateur"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Nom complet"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Date d'inscription"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Dernière IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "En ligne"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Artistes favoris"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Albums favoris"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Pistes favorites"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5112,21 +5759,19 @@ msgstr "Vérifier le catalogue"
msgid "Updating the %s catalog"
msgstr "Mise à jour du catalogue %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, fuzzy, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d article trouvé en vérifiant les balises"
+msgstr[1] "%d articles trouvés en vérifiant les balises"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Vérifié"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Jouer la vidéo"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr "Ajouter la vidéo à la suite"
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
#, fuzzy
msgid "Resolution"
@@ -5138,7 +5783,7 @@ msgid "No video found"
msgstr "Aucune vidéo trouvée"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Liste Demandes"
@@ -5180,53 +5825,48 @@ msgstr "Configuration du serveur"
msgid "Browse"
msgstr "Parcourir"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Pistes"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "En cours de lecture"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
#, fuzzy
msgid "Import"
msgstr "Importer"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Avancé"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr "Récent"
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
#, fuzzy
msgid "Newest"
msgstr "Nouveaux"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Populaire"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Mieux notés"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Mes notés"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Modules"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Déconnexion"
@@ -5279,7 +5919,7 @@ msgstr "Gérer les listes de lectures"
msgid "Account"
msgstr "Compte"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5290,20 +5930,15 @@ msgstr ""
"3.3.3.5. D'après votre base de données, votre version "
"actuelle est : %s."
-#: ../../update.php:60
+#: ../../update.php:68
msgid "The following updates need to be performed"
msgstr "Les mises à jour suivantes doivent être installées"
-#: ../../update.php:67
+#: ../../update.php:76
#, fuzzy
msgid "Update Now!"
msgstr "Mettre à jour maintenant !"
-#: ../../update.php:71
-#, fuzzy
-msgid "Ampache Installation."
-msgstr "Installation d'Ampache."
-
#: Database words
#, fuzzy
msgid "Allow Downloads"
@@ -5419,15 +6054,172 @@ msgstr "Utilisateur à suivre"
msgid "Streaming"
msgstr ""
-#: Database words
-msgid "Interface"
-msgstr ""
-
#: Database words
#, fuzzy
msgid "System"
msgstr "Système"
+#~ msgid "Related Album"
+#~ msgstr "Album associé"
+
+#~ msgid "Related Genre"
+#~ msgstr "Genre associé"
+
+#~ msgid "Pure Random"
+#~ msgstr "Aléatoire"
+
+#~ msgid "Low"
+#~ msgstr "Bas"
+
+#~ msgid "Medium"
+#~ msgstr "Moyen"
+
+#~ msgid "High"
+#~ msgstr "haut"
+
+#, fuzzy
+#~ msgid "Related Tag"
+#~ msgstr "Marqueur associé"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Jouer l'album"
+
+#~ msgid "Play Album"
+#~ msgstr "Jouer l'album"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Ajouter l'album à la suite"
+
+#~ msgid "Add Album"
+#~ msgstr "Ajouter un album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Ajout l'album à la suite"
+
+#~ msgid "Flag"
+#~ msgstr "Marqueur"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Genres les plus populaires"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Pistes les plus populaires"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Live-Streams les plus populaires"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Marqueurs les plus populaires"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Afficher toutes les chansons de %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Jouer l'artiste"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Jouer toutes les chansons de %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Ajouter l'artiste à la suite"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Ajouter toutes les chansons de %s à la suite"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Ajouter toutes les chansons de %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Ajouter des pistes aléatoires de %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Type de liste de lecture"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Jouer l'aperçu de l'album"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Ajouter l'aperçu de l'album à la suite"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Ajouter l'aperçu de l'album"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normaliser les pistes"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Ajouter la liste de lecture à la suite"
+
+#~ msgid "Add Random"
+#~ msgstr "Ajouter aléatoirement"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Jouer la liste de lecture"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Jouer titre"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Ajouter le titre à la suite"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Jouer l'aperçu du titre"
+
+#~ msgid "Play Add Song Preview"
+#~ msgstr "Ajouter l'aperçu du titre à la suite"
+
+#~ msgid "Add Song Preview"
+#~ msgstr "Ajouter l'aperçu du titre"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Marquage Utilisateur"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Artistes recommandés"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Albums recommandés"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Titres recommandés"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Artistes favoris"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Albums favoris"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Jouer la vidéo"
+
+#~ msgid "Play add video"
+#~ msgstr "Ajouter la vidéo à la suite"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Mes notés"
+
+#, fuzzy
+#~ msgid "Ampache Installation."
+#~ msgstr "Installation d'Ampache."
+
#~ msgid "Make Sticky"
#~ msgstr "Epingler"
@@ -5613,18 +6405,12 @@ msgstr "Système"
#~ msgid "Search Disabled Songs"
#~ msgstr "Rechercher les titres désactivés"
-#~ msgid "Edit Album"
-#~ msgstr "Editer l'Album"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Marqueur pour ré-étiquettage"
#~ msgid "Update Album"
#~ msgstr "Mettre à jour l'album"
-#~ msgid "Edit Artist"
-#~ msgstr "Editer l'artiste"
-
#~ msgid "Update Artist"
#~ msgstr "Mettre à jour l'artiste"
@@ -5770,18 +6556,6 @@ msgstr "Système"
#~ msgid "DB Inserted"
#~ msgstr "Base de données insérée"
-#, fuzzy
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "jour"
-#~ msgstr[1] "jours"
-
-#, fuzzy
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "heure"
-#~ msgstr[1] "heures"
-
#, fuzzy
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
@@ -5803,12 +6577,6 @@ msgstr "Système"
#~ msgid "images synchronized: "
#~ msgstr "images synchronisées :"
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Nettoyage de catalogue terminé. %d fichier supprimé"
-#~ msgstr[1] "Nettoyage de catalogue terminé. %d fichiers supprimés"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5853,24 +6621,6 @@ msgstr "Système"
#~ "précédents ont utilisé cette fonctionnalité pour envoyer des contenus "
#~ "inapropriés"
-#, fuzzy
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d article trouvé en vérifiant les balises"
-#~ msgstr[1] "%d articles trouvés en vérifiant les balises"
-
-#, fuzzy
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minute"
-#~ msgstr[1] "%d minutes"
-
-#, fuzzy
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d heure"
-#~ msgstr[1] "%d heures"
-
#~ msgid "file"
#~ msgstr "fichier"
@@ -5898,18 +6648,6 @@ msgstr "Système"
#~ "Il y a eu un problème avec l'envoi de fichier: Le %s n'a été que "
#~ "partiellement chargé"
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Titre enlevé"
-#~ msgstr[1] "Titres enlevés"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Suppression de la titre pris en compte"
-#~ msgstr[1] "Suppression des titres pris en compte"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Aucun problème trouvé"
@@ -5942,12 +6680,6 @@ msgstr "Système"
#~ msgid "Keywords"
#~ msgstr "Mots clés"
-#~ msgid "Yes"
-#~ msgstr "Oui"
-
-#~ msgid "No"
-#~ msgstr "Non"
-
#~ msgid "Min Bitrate"
#~ msgstr "Débit minimum"
diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo
index 34f833dd..a52769ac 100644
Binary files a/locale/it_IT/LC_MESSAGES/messages.mo and b/locale/it_IT/LC_MESSAGES/messages.mo differ
diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po
index 87c7ed33..a8b8b982 100644
--- a/locale/it_IT/LC_MESSAGES/messages.po
+++ b/locale/it_IT/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5.0\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2006-01-08 00:34+0100\n"
"Last-Translator: Mr-miky \n"
"Language-Team: Italian\n"
@@ -25,7 +25,7 @@ msgstr "Cancellato"
msgid "Your Access List Entry has been removed"
msgstr ""
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr ""
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Sei sicuro di volere cancellare permanentemente"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Aggiunti"
@@ -43,7 +43,7 @@ msgstr "Aggiunti"
msgid "Your new Access Control List(s) have been created"
msgstr ""
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Aggiornato"
@@ -73,15 +73,30 @@ msgstr ""
msgid "Catalog Delete"
msgstr "Dimensione catalogo"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
#, fuzzy
msgid "Confirm Deletion Request"
msgstr "Voce cancellata"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Brani abilitati"
+msgstr[1] "Brani abilitati"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr ""
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Mostra brani disabilitati"
+msgstr[1] "Mostra brani disabilitati"
+
#: ../../admin/catalog.php:152
#, fuzzy
msgid "Catalog Cleaned"
@@ -229,116 +244,149 @@ msgid ""
"currently configured charset"
msgstr ""
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Errore, E' necessario un nome utente"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Errore password non corrispondente"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr ""
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr ""
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Errore, Nome utente già in uso"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Errore: inserimento fallito"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr ""
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Utente"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Amministrazione"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr ""
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr ""
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr ""
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Errore"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr ""
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Utente cancellato"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " è stata creata"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Errore di cancellazione"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Impossibile cancellare l' ultimo utente amministratore"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Sei sicuro di volere cancellare permanentemente"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Utente cancellato"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Utente cancellato"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " è stata creata"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Scrivi configurazione"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "New user API Key has been generated."
+msgstr ""
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Copertina creata"
@@ -404,91 +452,151 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Mostra artisti che iniziano per"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Salva impostazioni catalogo"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Pulizia catalogo terminata"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Nome catalogo"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Aggiornamento catalogo terminato"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Nome catalogo"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Playlist creata."
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Impostazioni per catalogo in"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Rinomina"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Indirizzo iniziale"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Inizio ricerca copertine."
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Aggiornamento catalogo terminato"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Azzera stato del catalogo"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Catalogo"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Aggiungi un catalogo"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importa playlist"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr ""
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+msgid "- Port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Impostazioni per catalogo in"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Sconosciuto"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -605,12 +713,12 @@ msgstr "Errore, impossibile leggere la dimensione del file"
msgid "File Moved..."
msgstr "files rimossi"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, php-format
msgid "Created %s user %s with password %s"
msgstr ""
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Informazioni utente"
@@ -733,6 +841,18 @@ msgstr "Errore, Nome utente già in uso"
msgid "Error: Unable to copy file to %s"
msgstr "Errore, impossibile leggere la dimensione del file"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -758,11 +878,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Dimensione catalogo"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Dimensione catalogo"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr " è stata creata"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr ""
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Nome catalogo"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Dimensione catalogo"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Dimensione catalogo"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " è stata creata"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr ""
@@ -853,41 +1012,46 @@ msgstr ""
msgid "Stream Access"
msgstr "Stream"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr ""
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr ""
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artisti"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Vari"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "In esecuzione"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
#, fuzzy
@@ -943,171 +1107,307 @@ msgstr "anno"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
msgid "Invalid Username/Password"
msgstr ""
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr ""
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+msgid "Access denied to this playlist."
+msgstr ""
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr ""
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr ""
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Errore: Impossibile aprire"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Aggiornato"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Seleziona"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
msgid "changes"
msgstr ""
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "ora"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Scarica"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Artista e titolo"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Modifica"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Cancella"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Brani"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Albums"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Gestione utenti"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr ""
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Playlists"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr ""
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
#, fuzzy
msgid "Current Playlist"
msgstr "Crea nuova playlist"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Importa playlist"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
#, fuzzy
msgid "Catalogs"
msgstr "Catalogo"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr ""
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
#, fuzzy
msgid "Videos"
msgstr "Vari"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
#, fuzzy
msgid "Democratic Playlist"
msgstr "Importa playlist"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Riproduci album"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Oggetto"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+msgid "Channels"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr ""
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr ""
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+#, fuzzy
+msgid "day"
+msgid_plural "days"
+msgstr[0] "giorno"
+msgstr[1] "giorno"
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "ora"
+msgstr[1] "ora"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Non è necessario aggiornare"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Pulizia catalogo terminata"
+msgstr[1] "Pulizia catalogo terminata"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Pulizia catalogo terminata"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Importa playlist"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+msgid "Start Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Sconosciuto"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+#, fuzzy
+msgid "Stopped"
+msgstr "Arresta"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1118,36 +1418,24 @@ msgid "Primary"
msgstr ""
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr ""
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr ""
-#: ../../lib/class/localplay.class.php:630
-#, fuzzy
-msgid "Stopped"
-msgstr "Arresta"
-
#: ../../lib/class/localplay.class.php:633
#, fuzzy
msgid "Paused"
msgstr "Pausa"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Sconosciuto"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1180,22 +1468,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Aggiungi catalogo"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr ""
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr ""
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr ""
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr ""
-
#: ../../lib/class/registration.class.php:52
#, fuzzy, php-format
msgid "New User Registration at %s"
@@ -1211,7 +1483,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1222,7 +1493,7 @@ msgid ""
"Thank you for registering\n"
msgstr ""
-#: ../../lib/class/registration.class.php:75
+#: ../../lib/class/registration.class.php:74
#, php-format
msgid ""
"A new user has registered\n"
@@ -1231,6 +1502,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
@@ -1304,107 +1576,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Titolo"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artista"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Commento"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr ""
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Nome file"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Anno"
@@ -1412,40 +1684,43 @@ msgstr "Anno"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Voto"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Ascoltato"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Bitrate"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Ascoltato"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1453,156 +1728,142 @@ msgstr "Catalogo"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Playlist"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Nome playlist"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Importa playlist"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Nome"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Riproduci"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Aggiungi"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr ""
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr ""
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Non è necessario aggiornare"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Dati insufficienti"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+msgid "User avatar"
+msgstr ""
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Sconosciuto"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Accetto"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
#, fuzzy
msgid "Remove"
msgstr "Remoto"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Aggiungi un catalogo"
@@ -1684,21 +1945,37 @@ msgstr "Nome del database desiderato"
msgid "Administrative user creation failed: %s"
msgstr "Informazioni utente"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr ""
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr ""
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr ""
+
+#: ../../lib/login.php:131
+msgid "Unable to create local account"
+msgstr ""
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Abilitato"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Disabilitato"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
@@ -1706,116 +1983,104 @@ msgstr "Disabilitato"
msgid "None"
msgstr "No"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Stream"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr ""
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
#, fuzzy
msgid "Localplay"
msgstr "Riproduzione locale"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Meno ascoltati"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "M3U semplice"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr ""
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
#, fuzzy
msgid "Disabled"
msgstr "Disabilitato"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr ""
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr ""
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr ""
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr ""
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr ""
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr ""
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
msgid "Year ascending"
msgstr ""
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1847,7 +2112,8 @@ msgstr ""
msgid "Off the Charts!"
msgstr ""
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Inizio"
@@ -1864,14 +2130,14 @@ msgstr "Riproduzione locale"
msgid "Random Play"
msgstr "Casuale"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Cerca"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Impostazioni"
@@ -1911,7 +2177,7 @@ msgid "Browse Music"
msgstr "Sfoglia"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
#, fuzzy
msgid "Statistics"
msgstr "Statistiche catalogo"
@@ -1920,30 +2186,14 @@ msgstr "Statistiche catalogo"
msgid "Add New"
msgstr ""
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr ""
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr ""
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr ""
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr ""
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr ""
-
-#: ../../login.php:118
-msgid "Unable to create local account"
-msgstr ""
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1970,11 +2220,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2042,11 +2294,11 @@ msgstr "E-mail"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Password"
@@ -2112,48 +2364,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Errore: Impossibile cambiare alla cartella"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, fuzzy, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Errore, impossibile leggere la dimensione del file"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, fuzzy, php-format
msgid "%s is not readable by ampache"
msgstr "non è leggibile da ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2168,13 +2420,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Nome utente"
@@ -2291,20 +2543,20 @@ msgstr ""
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr ""
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Casuale"
@@ -2322,16 +2574,49 @@ msgstr " è stata creata"
msgid "Playlist Imported"
msgstr "Playlist creata."
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
#, fuzzy
msgid "Playlist Not Imported"
msgstr "Playlist creata."
-#: ../../playlist.php:151
+#: ../../playlist.php:153
#, fuzzy
msgid "Empty Playlists Deleted"
msgstr "Playlist cancellata"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registrazione completata"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr ""
@@ -2348,35 +2633,35 @@ msgstr ""
msgid "Radio Station Added"
msgstr ""
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Errore Captcha richiesto"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Errore Captcha fallito"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr ""
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Non hai inserito un nome utente"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr ""
-#: ../../register.php:94
+#: ../../register.php:95
msgid "Invalid email address"
msgstr ""
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Devi inserire una password"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Le passord non corrispondono"
@@ -2395,6 +2680,11 @@ msgstr "Cercato"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2403,45 +2693,80 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Oggetto"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Utente cancellato"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Utente cancellato"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " è stata creata"
+
#: ../../shout.php:49
#, fuzzy
msgid "Invalid Object Selected"
msgstr "Modifica selezionati"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr ""
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr ""
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr ""
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr ""
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr ""
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr ""
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
#, fuzzy
msgid "Song Title"
msgstr "Titolo brano"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2450,91 +2775,70 @@ msgstr ""
msgid "Ampache error page"
msgstr "Ampache Debug"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Ampache Debug"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr ""
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Annulla"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr ""
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Totale brani"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr ""
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
#, fuzzy
msgid "Generate New Config"
msgstr "Scrivi configurazione"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Installazione Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr ""
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Questa pagina gestisce l'installazione del database di Ampache e la "
-"creazione del file ampache.cfg.php. Prima di continuare assicurati di avere "
-"i seguenti pre-requisiti"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Un server MySQL con nome utente e password che consentono di creare/"
-"modificare database"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Il tuo webserver ha accesso in lettura al file /sql/ampache.sql ed al file /"
-"config/ampache.cfg.dist.php"
-
-#: ../../templates/install_header.inc.php:51
-#, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Precedente"
@@ -2544,7 +2848,7 @@ msgstr "Precedente"
msgid "Next"
msgstr "Successivo"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
msgid "Limit"
msgstr ""
@@ -2553,27 +2857,28 @@ msgid "Add to Playlist"
msgstr ""
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr ""
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr ""
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
#, fuzzy
msgid "Clear Playlist"
msgstr "Nuova playlist"
@@ -2582,29 +2887,27 @@ msgstr "Nuova playlist"
msgid "Add Dynamic Items"
msgstr ""
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Casuale"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Artista"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Riproduci album"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr ""
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Casuale"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Cancella"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2640,15 +2943,15 @@ msgstr "Avanzato"
msgid "Access Control Entries"
msgstr ""
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Indirizzo iniziale"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Indirizzo finale"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2657,89 +2960,83 @@ msgstr "Indirizzo finale"
msgid "Level"
msgstr "Livello"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr ""
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Azione"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Modifica"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
#, fuzzy
msgid "New Password"
msgstr "Password"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Conferma password"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Azzera stati"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
#, fuzzy
msgid "Update Account"
msgstr "Crea account"
@@ -2867,13 +3164,82 @@ msgid "Gather Album Art"
msgstr ""
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Genera playliste dai file m3u"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Aggiungi catalogo"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Crea account"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Stream"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+#, fuzzy
+msgid "Description"
+msgstr "descrizione"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Interfaccia"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Tipo di ricerca"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+#, fuzzy
+msgid "Create"
+msgstr "Bitrate"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2886,16 +3252,16 @@ msgstr ""
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr ""
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
#, fuzzy
msgid "Codec"
@@ -2905,12 +3271,6 @@ msgstr "Codice"
msgid "Create a new playlist"
msgstr "Crea nuova playlist"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-#, fuzzy
-msgid "Create"
-msgstr "Bitrate"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2935,6 +3295,38 @@ msgstr "Trovato"
msgid "Reading"
msgstr ""
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Bitrate"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Oggetto"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Stream"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Scarica"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr ""
@@ -2962,17 +3354,22 @@ msgstr "Aggiunta di un nuovo utente"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Nome completo"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Livello accesso utente"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Aggiungi utente"
@@ -2992,261 +3389,349 @@ msgid "Invalid"
msgstr ""
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Seleziona"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Azioni"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Riproduci album"
+msgid "Play last"
+msgstr "Playlist"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Riproduci album"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Riproduci album"
+msgid "Add to temporary playlist"
+msgstr "Aggiungi un catalogo"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr ""
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Imposta numero brano"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Vuoi veramente cancellare questo catalogo?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr ""
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Trova copertina album"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Vuoi veramente cancellare questo catalogo?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Aggiorna dai Tags"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Scarica"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Riproduci album"
+msgid "Save Tracks Order"
+msgstr "Imposta numero brano"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Copertine"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Vuoi veramente cancellare questo catalogo?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Aggiorna dai Tags"
+
+#: ../../templates/show_album.inc.php:132
+#, fuzzy
+msgid "Edit Album"
+msgstr "Album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Playlist"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Copertina"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
#, fuzzy
msgid "Tags"
msgstr "Traccia"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Marcatura"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Mostra brani disabilitati"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Artista più popolare"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Album più popolare"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Genere più popolare"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Brani più popolari"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr ""
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr ""
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr ""
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, fuzzy, php-format
-msgid "Show All Songs By %s"
-msgstr "Mostra tutti i brani di"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Album per"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Playlist"
+msgid "Show all"
+msgstr "Mostra tutto"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Mostra tutti i brani di"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Album per"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Riproduci album"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Playlist"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Mostra tutti i brani di"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+msgid "Add all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:91
-#, fuzzy, php-format
-msgid "Add All Songs By %s"
-msgstr "Mostra tutti i brani di"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, fuzzy, php-format
-msgid "Add Random Songs By %s"
-msgstr "Riproduci a caso i brani di"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Artista e titolo"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+#, fuzzy
+msgid "Edit Artist"
+msgstr "Artista"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr ""
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Albums"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
#, fuzzy
msgid "Similar Artists"
msgstr "Tutti gli artisti"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Artista e titolo"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Durata"
@@ -3260,6 +3745,44 @@ msgstr "Tutti gli artisti"
msgid "Click to close window"
msgstr ""
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Si"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "No"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Genere"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Stato"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Tutti gli artisti"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr ""
@@ -3279,72 +3802,86 @@ msgstr "Cancella informazioni"
msgid "Update"
msgstr "Aggiornato"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
#, fuzzy
msgid "Last Clean"
msgstr "Ultimo accesso"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Non è stato trovato alcun catalogo"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-#, fuzzy
-msgid "Description"
-msgstr "descrizione"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
#, fuzzy
msgid "Version"
msgstr "Versione PHP"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
#, fuzzy
msgid "Activate"
msgstr "Utente attivato"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
#, fuzzy
msgid "No Records Found"
msgstr "Non è stato trovato alcun catalogo"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Stato"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Stream"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Stato"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Non è stato trovato alcun catalogo"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, fuzzy, php-format
@@ -3355,7 +3892,45 @@ msgstr "Aggiornamento di"
msgid "Checking"
msgstr "Controllo in corso"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Data"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Azione"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Mostra brani disabilitati"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Ultimo accesso"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Tutti gli artisti"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Continua"
@@ -3398,89 +3973,88 @@ msgstr ""
msgid "PHP Settings"
msgstr ""
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr ""
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Valore"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr ""
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr ""
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
#, fuzzy
msgid "Failed"
msgstr "file"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr ""
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr ""
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr ""
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr ""
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Parametro"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
#, fuzzy
msgid "Ampache Update"
msgstr "Ampache Debug"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Versione PHP"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Installazione Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3503,50 +4077,50 @@ msgstr "Importa playlist"
msgid "Playing from base Playlist"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
#, fuzzy
msgid "Votes"
msgstr "altro"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr ""
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr ""
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr ""
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "La playlist richiesta è stata cancellata"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
msgid ""
"You have been redirected to this page because you do not have access to this "
"function."
msgstr ""
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
msgid ""
"You have been redirected to this page because you attempted to access a "
"function that is disabled in the demo."
msgstr ""
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr ""
@@ -3575,15 +4149,16 @@ msgstr "Brani duplicati"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Brano"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Durata"
@@ -3684,12 +4259,9 @@ msgid "Created by: %s for %s"
msgstr ""
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Traccia"
@@ -3701,29 +4273,29 @@ msgstr "Modifica utente esistente"
msgid "User Properties"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
#, fuzzy
msgid "Other Options"
msgstr "Azioni"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
#, fuzzy
msgid "Flash"
msgstr "Marcatura"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr ""
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Aggiorna utente"
@@ -3770,23 +4342,35 @@ msgstr "Preleva copertina"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr ""
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importazione playlist da file"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Tipo playlist"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importa playlist"
@@ -3799,24 +4383,31 @@ msgstr ""
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Versione PHP"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Passo 1 - Creazione ed inserimento del database Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Passo 2 - Creazione del file ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Passo 3 -Impostazione account iniziale"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3825,57 +4416,96 @@ msgstr ""
"Questo passo crea il tuo accouunt iniziale di amministrazione. Una volta che "
"l' account sarà stato creato verrai ridiretto nella pagina di accesso."
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Crea account Amministratore"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Crea account"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr ""
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Questa pagina gestisce l'installazione del database di Ampache e la "
+"creazione del file ampache.cfg.php. Prima di continuare assicurati di avere "
+"i seguenti pre-requisiti"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Un server MySQL con nome utente e password che consentono di creare/"
+"modificare database"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Il tuo webserver ha accesso in lettura al file /sql/ampache.sql ed al file /"
+"config/ampache.cfg.dist.php"
+
+#: ../../templates/show_install_check.inc.php:37
+#, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "CONTROLLO"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATO"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "DESCRIZIONE"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "non è leggibile da ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php esiste"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3885,118 +4515,118 @@ msgid ""
"then manually place the config file in %s"
msgstr ""
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr ""
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Percorso Web"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Nome del database desiderato"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "Server MySQL"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Nome utente MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Password MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
msgid "Write"
msgstr ""
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php esiste"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php Configurato?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Controllo configurazione"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr ""
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
"MySQL account with database creation rights. This step may take some time on "
"slower computers."
msgstr ""
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr ""
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Nome del database desiderato"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Utente amministratore MySQL"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Password amministratore MySQL"
-#: ../../templates/show_install.inc.php:59
-msgid "Create Database User for New Database?"
+#: ../../templates/show_install.inc.php:80
+msgid "Create Database User (for New Database)?"
msgstr ""
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Nome utente del database Ampache"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Password utente del database Ampache"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr ""
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
#, fuzzy
msgid "Use Existing Database"
msgstr "Inserisci database"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Inserisci database"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Installazione Ampache"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr ""
@@ -4015,11 +4645,6 @@ msgstr ""
msgid "Show All"
msgstr "Mostra tutto"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Data"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
#, fuzzy
@@ -4030,12 +4655,12 @@ msgstr "Indirizzo IP finale"
msgid "Manage Radio Stations"
msgstr ""
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Nome playlist"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4081,49 +4706,49 @@ msgstr ""
msgid "Edit Instance"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr ""
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Diminuisci volume"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Aumenta volume"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Volume"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
#, fuzzy
msgid "Repeat"
msgstr "Rifiuta"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Ricordami"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Password"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr ""
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registra"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr ""
@@ -4162,11 +4787,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Ampache Debug"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Oggetto"
@@ -4234,6 +4854,7 @@ msgstr "Crea nuova playlist"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
#, fuzzy
msgid "Object"
msgstr "Oggetto"
@@ -4248,35 +4869,18 @@ msgstr ""
msgid "Date Added"
msgstr ""
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Riproduci album"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Riproduci album"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-msgid "Add Album Preview"
-msgstr ""
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Avanzato"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Albums"
+msgid "No missing album found"
+msgstr "Mostra brani disabilitati"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Tutti gli artisti"
@@ -4295,127 +4899,61 @@ msgstr ""
msgid "%s of 5"
msgstr ""
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-#, fuzzy
-msgid "Normalize Tracks"
-msgstr "Tracce totali"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Riproduci album"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Playlist"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr ""
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr ""
+#, fuzzy
+msgid "Create channel"
+msgstr "Crea account"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Vuoi veramente cancellare questo catalogo?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Playlist"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Playlist"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Playlist creata."
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Nome playlist"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "N° Brani"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Proprietario"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Tutti gli artisti"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Riproduci"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Riproduci"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Genere"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "Nuova playlist"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Versione PHP"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
#, fuzzy
msgid "Deactivate"
msgstr "Utente attivato"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4424,13 +4962,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Impostazioni"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Applica a tutti"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr ""
@@ -4465,6 +5003,20 @@ msgstr "Totale voci"
msgid "Unlimited"
msgstr "Illimitato"
+#: ../../templates/show_random.inc.php:68
+#, fuzzy, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minuti"
+msgstr[1] "Minuti"
+
+#: ../../templates/show_random.inc.php:70
+#, fuzzy, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "ora"
+msgstr[1] "ora"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr ""
@@ -4473,22 +5025,76 @@ msgstr ""
msgid "Enqueue"
msgstr "Accoda"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "Minuti"
+msgstr[1] "Minuti"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "ore"
+msgstr[1] "ore"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "giorni"
+msgstr[1] "giorni"
+
+#: ../../templates/show_recently_played.inc.php:75
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "Minuti"
+msgstr[1] "Minuti"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "anno"
+msgstr[1] "anno"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "giorni"
+msgstr[1] "giorni"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Mostra brani disabilitati"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Tutti gli artisti"
@@ -4560,7 +5166,7 @@ msgstr "Aggiungi utente"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr ""
@@ -4588,16 +5194,51 @@ msgstr "Azioni"
msgid "Add Search Results"
msgstr ""
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Oggetto"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Data registrazione"
+
+#: ../../templates/show_shared_objects.inc.php:30
+msgid "Last Visit"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+msgid "Public Url"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:26
+msgid "Shared on"
+msgstr ""
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr ""
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr ""
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Importa playlist"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Tutti gli artisti"
@@ -4615,59 +5256,46 @@ msgstr ""
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
msgid "Link"
msgstr ""
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Livello"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Brani abilitati"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Nome catalogo"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Playlist aggiornata"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "Nuova playlist"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Riproduci"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
#, fuzzy
msgid "Song Information"
msgstr "Informazioni utente"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Titolo brano"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Mostra brani disabilitati"
@@ -4688,13 +5316,31 @@ msgstr "Dimensione catalogo"
msgid "Catalog Time"
msgstr "Durata catalogo"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Album più popolare"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Artista più popolare"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Titolo brano"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Vuoi veramente cancellare questo catalogo?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Ampache Debug"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4817,84 +5463,98 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Supporto sessioni PHP"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Questo test verifica se le estensioni mysql per PHP sono caricate. Queste "
+"estensioni sono indispensabili per fare funzionare Ampache."
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Brani abilitati"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
"Ampache will not work correctly in safe mode."
msgstr ""
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
msgid "PHP memory limit override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
msgid "PHP execution time override"
msgstr ""
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
"either is not in the correct location or is not currently readable."
msgstr ""
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Importa playlist"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
msgid ""
"This test makes sure that you have set all of the required configuration "
"variables and that we are able to completely parse your config file."
msgstr ""
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Connessione DB"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
msgid ""
"This attempts to connect to your database using the values read from your "
"configuration file."
msgstr ""
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Nome del database desiderato"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
msgid ""
"This checks a few key tables to make sure that you have successfully "
"inserted the Ampache database and that the user has access to the database"
msgstr ""
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Percorso Web"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4930,103 +5590,76 @@ msgstr ""
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
+msgid "User Favorites"
msgstr "Marcatura"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr ""
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Ultimo accesso"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr ""
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Stato"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr ""
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr ""
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr ""
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr ""
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr ""
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr ""
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Consenso utente"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Accetto"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Informazioni utente"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
msgid "* Required fields"
msgstr ""
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registra utente"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Nome completo"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Data registrazione"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
#, fuzzy
msgid "Last Ip"
msgstr "Ultimo accesso"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "In linea"
-#: ../../templates/show_user_stats.inc.php:31
-#, fuzzy
-msgid "Favorite Artists"
-msgstr "Tutti gli artisti"
-
-#: ../../templates/show_user_stats.inc.php:43
-#, fuzzy
-msgid "Favorite Albums"
-msgstr "Tutti gli album"
-
-#: ../../templates/show_user_stats.inc.php:55
-#, fuzzy
-msgid "Favorite Songs"
-msgstr "Totale brani"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5038,20 +5671,18 @@ msgstr "Catalogo"
msgid "Updating the %s catalog"
msgstr "Aggiornamento di"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, fuzzy, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "controllo informazioni tag dei brani trovati."
+msgstr[1] "controllo informazioni tag dei brani trovati."
+
#: ../../templates/show_verify_catalog.inc.php:29
msgid "Verified"
msgstr ""
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Riproduci"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
#, fuzzy
msgid "Resolution"
@@ -5063,7 +5694,7 @@ msgid "No video found"
msgstr "Non è stato trovato alcun catalogo"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
msgid "Wanted List"
msgstr ""
@@ -5104,53 +5735,48 @@ msgstr ""
msgid "Browse"
msgstr "Sfoglia"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Titolo brano"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
#, fuzzy
msgid "Newest"
msgstr "Successivo"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Aggiornato"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Marcatura"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
#, fuzzy
msgid "Modules"
msgstr "Modo"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Uscita"
@@ -5204,7 +5830,7 @@ msgstr ""
msgid "Account"
msgstr ""
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5212,20 +5838,15 @@ msgid ""
"is: %s."
msgstr ""
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+msgid "The following updates need to be performed"
msgstr ""
-#: ../../update.php:67
+#: ../../update.php:76
#, fuzzy
msgid "Update Now!"
msgstr "Aggiorna cataloghi"
-#: ../../update.php:71
-#, fuzzy
-msgid "Ampache Installation."
-msgstr "Installazione Ampache"
-
#: Database words
#, fuzzy
msgid "Allow Downloads"
@@ -5337,14 +5958,117 @@ msgstr ""
msgid "Streaming"
msgstr "Streaming"
-#: Database words
-msgid "Interface"
-msgstr "Interfaccia"
-
#: Database words
msgid "System"
msgstr "Sistema"
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Riproduci album"
+
+#~ msgid "Play Album"
+#~ msgstr "Riproduci album"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Riproduci album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Riproduci album"
+
+#~ msgid "Flag"
+#~ msgstr "Marcatura"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Genere più popolare"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Brani più popolari"
+
+#, fuzzy
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Mostra tutti i brani di"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Mostra tutti i brani di"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Mostra tutti i brani di"
+
+#, fuzzy
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Mostra tutti i brani di"
+
+#, fuzzy
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Riproduci a caso i brani di"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Tipo playlist"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Riproduci album"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Riproduci album"
+
+#, fuzzy
+#~ msgid "Normalize Tracks"
+#~ msgstr "Tracce totali"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Playlist"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Riproduci"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Riproduci"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Riproduci"
+
+#, fuzzy
+#~ msgid "Favorite Artists"
+#~ msgstr "Tutti gli artisti"
+
+#, fuzzy
+#~ msgid "Favorite Albums"
+#~ msgstr "Tutti gli album"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Riproduci"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Marcatura"
+
+#, fuzzy
+#~ msgid "Ampache Installation."
+#~ msgstr "Installazione Ampache"
+
#, fuzzy
#~ msgid "Song Updated"
#~ msgstr "Voto aggiornato"
@@ -5472,14 +6196,6 @@ msgstr "Sistema"
#~ msgid "Check for New Version"
#~ msgstr "Controllo configurazione"
-#, fuzzy
-#~ msgid "Edit Album"
-#~ msgstr "Album"
-
-#, fuzzy
-#~ msgid "Edit Artist"
-#~ msgstr "Artista"
-
#, fuzzy
#~ msgid "Edit Song"
#~ msgstr "Modifica"
@@ -5566,12 +6282,6 @@ msgstr "Sistema"
#~ msgid "Ampache.cfg.php Configured?"
#~ msgstr "Ampache.cfg.php Configurato?"
-#, fuzzy
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "giorno"
-#~ msgstr[1] "giorno"
-
#, fuzzy
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
@@ -5584,12 +6294,6 @@ msgstr "Sistema"
#~ msgid "Reason"
#~ msgstr "Motivazione"
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Pulizia catalogo terminata"
-#~ msgstr[1] "Pulizia catalogo terminata"
-
#, fuzzy
#~ msgid "Remote Key"
#~ msgstr "Remoto"
@@ -5606,39 +6310,9 @@ msgstr "Sistema"
#~ "Questo verifica che stai usando una versione di PHP certamente "
#~ "funzionante con Ampache"
-#, fuzzy
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "controllo informazioni tag dei brani trovati."
-#~ msgstr[1] "controllo informazioni tag dei brani trovati."
-
-#, fuzzy
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "Minuti"
-#~ msgstr[1] "Minuti"
-
-#, fuzzy
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "ora"
-#~ msgstr[1] "ora"
-
#~ msgid "file"
#~ msgstr "file"
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Brani abilitati"
-#~ msgstr[1] "Brani abilitati"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Mostra brani disabilitati"
-#~ msgstr[1] "Mostra brani disabilitati"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Non è stato trovato alcun catalogo"
@@ -5670,12 +6344,6 @@ msgstr "Sistema"
#~ msgid "Keywords"
#~ msgstr "Parola chiave"
-#~ msgid "Yes"
-#~ msgstr "Si"
-
-#~ msgid "No"
-#~ msgstr "No"
-
#~ msgid "Min Bitrate"
#~ msgstr "Bitrate min."
@@ -5735,10 +6403,6 @@ msgstr "Sistema"
#~ msgid "Add to"
#~ msgstr "Aggiungi a"
-#, fuzzy
-#~ msgid "Editing Playlist"
-#~ msgstr "Playlist"
-
#, fuzzy
#~ msgid "Back"
#~ msgstr "Traccia"
diff --git a/locale/ja_JP/LC_MESSAGES/messages.mo b/locale/ja_JP/LC_MESSAGES/messages.mo
index f718781b..52a63173 100644
Binary files a/locale/ja_JP/LC_MESSAGES/messages.mo and b/locale/ja_JP/LC_MESSAGES/messages.mo differ
diff --git a/locale/ja_JP/LC_MESSAGES/messages.po b/locale/ja_JP/LC_MESSAGES/messages.po
index b27fed72..f7c2a292 100644
--- a/locale/ja_JP/LC_MESSAGES/messages.po
+++ b/locale/ja_JP/LC_MESSAGES/messages.po
@@ -3,12 +3,12 @@
# Copyright (C) 2009 Ampache.org
# This file is distributed under the same license as the Ampache package.
# momo-i , 2008.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN $Rev$\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2008-07-14 20:44+0900\n"
"Last-Translator: momo-i \n"
"Language-Team: Japanese\n"
@@ -26,7 +26,7 @@ msgstr "削除しました"
msgid "Your Access List Entry has been removed"
msgstr "アクセスリストエントリを削除しました"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "削除要求"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "完全に削除してもよろしいですか?"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "追加しました"
@@ -43,7 +43,7 @@ msgstr "追加しました"
msgid "Your new Access Control List(s) have been created"
msgstr "新しいアクセスコントロールリストを作成しました"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "更新しました"
@@ -69,14 +69,27 @@ msgstr "カタログと全ての割り当てられたレコードを削除しま
msgid "Catalog Delete"
msgstr "カタログの削除"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "削除要求の確認"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "曲は削除されませんでした"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "曲は削除されませんでした"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "無効な曲"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "カタログをクリーンにしました"
@@ -216,116 +229,150 @@ msgstr ""
"データベースと割り当てられたテーブルは現在設定されたCharsetに一致する更新をし"
"ました。"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "エラー: ユーザ名は必須です"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "エラー: パスワードが一致しません"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "ユーザを更新しました"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "更新しました"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "エラー: ユーザ名はすでに存在します"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "エラー: 挿入失敗"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "ゲスト"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "ユーザ"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "管理者"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "新規ユーザを追加しました"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr "%1$sは%2$sのアクセスレベルで作成されました"
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "ユーザを有効化しました"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "ユーザを無効化しました"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "エラー"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "最後の管理者は無効に出来ません"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "ユーザを削除しました"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, php-format
msgid "%s has been Deleted"
msgstr "%sを削除しました"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "削除エラー"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "最後の管理者は削除できません"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "%sを完全に削除してもよろしいですか?"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "ユーザを削除しました"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "ユーザを削除しました"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr "%sを削除しました"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "新規設定を生成"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "要求されたプレイリストは削除されています。"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "アルバムアートをクリアしました"
@@ -388,80 +435,143 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "次で開始されるアーティストを表示:"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
msgid "- All Catalog Operations"
msgstr "- 全カタログの操作"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
msgid "- Catalog Clean"
msgstr "- カタログクリーン"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
msgid "- Catalog Verify"
msgstr "- カタログ検証"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
msgid "- Catalog Add"
msgstr "- カタログ追加"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
msgid "- Catalog Art Gather"
msgstr "- カタログアート収集"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "プレイリストをインポートしました"
+
+#: ../../bin/catalog_update.inc:84
msgid "Starting Catalog Operations..."
msgstr "カタログ操作の開始..."
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, php-format
msgid "Reading: %s"
msgstr "%sを読み込んでいます"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr "- 掃除開始 -"
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr "- 検証開始 -"
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
msgid "- Starting Add - "
msgstr "- 追加開始 -"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "アルバムアート検索の開始"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
msgid "- Catalog Update -"
msgstr "- 更新開始 -"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+#, fuzzy
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr "使用方法: catalog_update.inc [カタログ名] [-c|-v|-a|-g|-t]"
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+#, fuzzy
+msgid "Default behavior is to do all except playlist import"
msgstr "デフォルトの動作は全てを実行します"
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
msgid "Clean Catalogs"
msgstr "カタログの掃除"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
msgid "Verify Catalogs"
msgstr "カタログの検証"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
msgid "Add to Catalogs"
msgstr "カタログへ追加"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "プレイリストをインポート"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "アート収集"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "ポート"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "- 掃除開始 -"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "不明(孤立)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr "デバッグが有効の場合はファイルを削除しません!"
@@ -578,12 +688,12 @@ msgstr "エラー: %sを削除できません"
msgid "File Moved..."
msgstr "ファイルを移動しました。。。"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "作成: %sの%s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "ユーザアクティベート"
@@ -708,6 +818,18 @@ msgstr "エラー: %sはすでに存在します"
msgid "Error: Unable to copy file to %s"
msgstr "エラー: %sへファイルをコピーできません"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -733,11 +855,50 @@ msgstr "m3uとして全てのプレイリストをダンプします"
msgid "Dumps all Artists as individual playlists"
msgstr "個々のプレイリストとして全てのアーティストをダンプします"
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "カタログの削除"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "カタログを削除しました"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "要求されたプレイリストは削除されています。"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "タグクラウド"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "カタログを作成しました"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "カタログの削除"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "カタログを削除しました"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr "%sを削除しました"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "要求されたプレイリストは削除されています。"
@@ -826,41 +987,46 @@ msgstr "ウェブインタフェース"
msgid "Stream Access"
msgstr "ストリームアクセス"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "不明(孤立)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "ディスク"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "アーティスト"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "いくつかの"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "現在の演奏曲"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -911,167 +1077,301 @@ msgstr "年前"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
msgid "Invalid Username/Password"
msgstr "不正なユーザ名/パスワードです"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "不正なハンドシェイクエラー - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "プレイリストへ追加"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "不正なリクエスト"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "メディアオブジェクトは不正か指定されていません"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "エラー: 開けませんでした"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "全て更新"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "サーバ"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "変更を保存"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "ポート"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "ダウンロード"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "アーティストとタイトル"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "編集"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "削除"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "曲"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "アルバム"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "ユーザ管理"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "ラジオステーション"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "プレイリスト"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "プレイリスト曲"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "現在のプレイリスト"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
msgid "Smart Playlists"
msgstr "スマートプレイリスト"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "カタログ"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "シャウトボックスレコード"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "動画"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "デモクラティックプレイリスト"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "関連するアルバム"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "オブジェクト"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "変更を保存"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "More"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Never"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "時間前"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "必要な更新はありません"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "カタログの検証完了。%d/%dファイルを更新しました。"
+
+#: ../../lib/class/catalog.class.php:1054
#, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "カタログの検証完了。%d/%dファイルを更新しました。"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "ローカルアカウントを作成できませんでした"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "変更を保存"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "不明"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "停止"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1082,34 +1382,23 @@ msgid "Primary"
msgstr "プライマリ"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "コンテンツマネージャ"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "カタログマネージャ"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "停止"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "一時停止"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "不明"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1142,29 +1431,13 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "カタログを追加"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "関連するアルバム"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "関連するジャンル"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "関連するアーティスト"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "純粋なランダム"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
msgstr "%sの新規ユーザ登録"
#: ../../lib/class/registration.class.php:54
-#, php-format
+#, fuzzy, php-format
msgid ""
"Thank you for registering\n"
"\n"
@@ -1173,7 +1446,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1200,8 +1472,8 @@ msgstr ""
"\n"
"登録ありがとうございました。\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1209,6 +1481,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"新しいユーザが登録されました\n"
@@ -1288,107 +1561,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "タイトル"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "アルバム"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "アーティスト"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "コメント"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "タグ"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "フルネーム"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "年"
@@ -1396,40 +1669,43 @@ msgstr "年"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "評価"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "再生済"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "ビットレート"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "再生済"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1437,154 +1713,141 @@ msgstr "カタログ"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "プレイリスト"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "プレイリスト名"
+
+#: ../../lib/class/search.class.php:372
msgid "Smart Playlist"
msgstr "スマートプレイリスト"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "名前"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "再生"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "追加"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "シャウトの投稿"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "歌詞の表示"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "必要な更新はありません"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "データは全くありません"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "ユーザアクティベート"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "不明"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "同意する"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "削除"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "プレイリストへ追加"
@@ -1671,136 +1934,140 @@ msgstr "データベースCharsetを更新しました"
msgid "Administrative user creation failed: %s"
msgstr "ユーザアクティベート"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "エラー: ユーザ名かパスワードが間違っています。再試行して下さい"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "ユーザは無効なので管理者にお問合せください"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "ユーザはすでにログインしています"
+
+#: ../../lib/login.php:131
+msgid "Unable to create local account"
+msgstr "ローカルアカウントを作成できませんでした"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "有効"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "無効"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "無し"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "ストリーム"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "デモクラティック"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "ローカル再生"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Webパス"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "簡易M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "無効"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "マネージャ"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "追加を送信"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "追加を送信とクリア"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "送信をクリア"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "デフォルト"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr "低"
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr "中"
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr "高"
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "常に"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "トランスコーディング"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1832,7 +2099,8 @@ msgstr "すばらしい!"
msgid "Off the Charts!"
msgstr "とてつもなくすばらしい!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "ホーム"
@@ -1848,14 +2116,14 @@ msgstr "ローカル再生"
msgid "Random Play"
msgstr "ランダム再生"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "検索"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "設定"
@@ -1889,7 +2157,7 @@ msgid "Browse Music"
msgstr "ミュージック閲覧"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "統計"
@@ -1897,30 +2165,14 @@ msgstr "統計"
msgid "Add New"
msgstr "新規追加"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "オン"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "オフ"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "エラー: ユーザ名かパスワードが間違っています。再試行して下さい"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "ユーザは無効なので管理者にお問合せください"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "ユーザはすでにログインしています"
-
-#: ../../login.php:118
-msgid "Unable to create local account"
-msgstr "ローカルアカウントを作成できませんでした"
-
#: ../../lostpassword.php:39
msgid "Password has been sent"
msgstr "パスワードを送信しました"
@@ -1944,11 +2196,13 @@ msgid "The password has been set to: %s"
msgstr "パスワードを%sへ設定しました"
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2016,11 +2270,11 @@ msgstr "メール"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "パスワード"
@@ -2088,48 +2342,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "エラー: ディレクトリを変更できませんでした"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "エラー: %sのファイルサイズの取得に失敗しました"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "%sはAmpacheで読み込めません"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "%sはサイトのCharsetと一致しません"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr "%sは存在しないか読み込めません。"
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "カタログルートに到達できません。クリーンを停止します"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, fuzzy, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr "エラー: ファイルが見つからないか0バイトです:"
@@ -2144,13 +2398,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "ユーザ名"
@@ -2270,20 +2524,20 @@ msgstr "ホスト名"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "ポート"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "ランダム"
@@ -2300,14 +2554,46 @@ msgstr "%1$s (%2$s) を作成しました"
msgid "Playlist Imported"
msgstr "プレイリストをインポートしました"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "プレイリストはインポートされませんでした"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "空のプレイリストを削除しました"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "登録完了"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "サーバ"
@@ -2324,36 +2610,36 @@ msgstr "アカウントを更新しました"
msgid "Radio Station Added"
msgstr "ラジオステーションを追加しました"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "エラー: Captchaは必須です"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "エラー: Captcha失敗"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "同意しなければなりません。"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "ユーザ名が入力されていません"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "フルネームを記入してください"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "不正なリクエスト"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "パスワードを入力してください"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "パスワードが一致しません"
@@ -2371,6 +2657,11 @@ msgstr "検索済み"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr "セッションの期限切れ"
@@ -2379,43 +2670,78 @@ msgstr "セッションの期限切れ"
msgid "Unauthorized access attempt to API - ACL Error"
msgstr "APIへ不正アクセスが試みられました - ACLエラー"
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "オブジェクト"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "ユーザを削除しました"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "ユーザを削除しました"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr "%sを削除しました"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "不正なオブジェクトが選択されました"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "フィルタ"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "開始 :"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "最小カウント"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "評価"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "未再生"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "全プレイリスト"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "曲タイトル"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2423,85 +2749,68 @@ msgstr ""
msgid "Ampache error page"
msgstr "Apmacheエラーページ"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+msgid "Ampache"
+msgstr "Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr "次のエラーが発生しました。10秒後に自動的にリダイレクトされます。"
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr "エラーメッセージ"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "クエリ:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "キャッシュヒット:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "キャンセル"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "ログアウト"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "お気に入りの曲"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "エラー: 設定ファイルは期限切れです"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "新規設定を生成"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Ampache インストール"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "必要条件"
-
-#: ../../templates/install_header.inc.php:44
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"このページはAmpacheデータベースとampache.cfg.phpファイルの生成のインストール"
-"を扱います。続ける前に以下の事前準備をお願いします。"
-
-#: ../../templates/install_header.inc.php:47
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr "データベースを作成/修正できるユーザ名とパスワードをもったMySQLサーバ"
-
-#: ../../templates/install_header.inc.php:48
-#, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr "ウェブサーバは%sファイルと%sファイルへのアクセスを読み込みます"
-
-#: ../../templates/install_header.inc.php:51
-#, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"上記の要件を確認したら以下の情報を記入してください。必要なコンフィグの値を求"
-"めるだけです。後々Ampacheへの変更を加えたい場合、単に%sを編集するだけです。"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "前へ"
@@ -2511,7 +2820,7 @@ msgstr "前へ"
msgid "Next"
msgstr "次へ"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "サイズ制限"
@@ -2521,27 +2830,28 @@ msgid "Add to Playlist"
msgstr "プレイリストへ追加"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "新規プレイリストへ追加"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "バッチダウンロード"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "プレイリストをクリア"
@@ -2549,29 +2859,27 @@ msgstr "プレイリストをクリア"
msgid "Add Dynamic Items"
msgstr "動的アイテムを追加"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "ランダム"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "関連するアーティスト"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "アルバムからランダムに追加"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "関連するタグ"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "ランダム再生"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "削除"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2604,15 +2912,15 @@ msgstr "高度を追加"
msgid "Access Control Entries"
msgstr "アクセスコントロールエントリ"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "開始アドレス"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "終了アドレス"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2621,88 +2929,82 @@ msgstr "終了アドレス"
msgid "Level"
msgstr "レベル"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "タイプ"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "操作"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "編集"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "メールアドレス"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "新規パスワード"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "パスワード確認"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "ステータスをクリア"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "アカウント更新"
@@ -2824,13 +3126,80 @@ msgid "Gather Album Art"
msgstr "アルバムアートを収集"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "m3uファイルからプレイリストを構築"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "カタログを追加"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "作成日"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "ストリームアクセス"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "説明"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "インタフェース"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "検索タイプ"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "作成"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2843,16 +3212,16 @@ msgstr "ホームページ"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "ストリームURL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "コーデック"
@@ -2861,11 +3230,6 @@ msgstr "コーデック"
msgid "Create a new playlist"
msgstr "新規プレイリスト作成"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "作成"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2890,6 +3254,38 @@ msgstr "見つかりました"
msgid "Reading"
msgstr "読み込み中"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "作成日"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "オブジェクト"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "ストリーミングの許可"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "ダウンロードの許可"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "シャウトボックスへ投稿"
@@ -2916,17 +3312,22 @@ msgstr "新規ユーザを追加"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "フルネーム"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "ユーザアクセスレベル"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "ユーザ追加"
@@ -2946,258 +3347,345 @@ msgid "Invalid"
msgstr "不正"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "選択"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "操作"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "アルバム再生"
+msgid "Play last"
+msgstr "プレイリスト"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "アルバム再生"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "アルバム再生"
+msgid "Add to temporary playlist"
+msgstr "新規プレイリストへ追加"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "アルバム追加"
-
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "アルバムからランダムに追加"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-msgid "Save Tracks Order"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
msgstr ""
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "このカタログを削除してもよろしいですか?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "アルバムアートのリセット"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "アルバムアートを見つける"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "このカタログを削除してもよろしいですか?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "タグから更新"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "ダウンロード"
-#: ../../templates/show_album_row.inc.php:28
-#, fuzzy
-msgid "Play add album"
-msgstr "アルバム再生"
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
+msgid "Save Tracks Order"
+msgstr ""
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "アルバムアート"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "このカタログを削除してもよろしいですか?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "タグから更新"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "アルバム編集"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "新規プレイリストへ追加"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "カバー"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "タグ"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "フラグ"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "カタログは見つかりませんでした"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "1番人気のアーティスト"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "1番人気のアルバム"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "1番人気のジャンル"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "1番人気の曲"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "1番人気のライブストリーム"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "一番人気のタグ"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "読み込み中..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "%sで全曲を表示"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, php-format
-msgid "Show Albums By %s"
-msgstr "%sによるアルバムを表示"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "プレイリスト"
+msgid "Show all"
+msgstr "全て表示"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "%sで全曲を追加"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "%sによるアルバムを表示"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "アルバム再生"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "プレイリスト"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "%sで全曲を追加"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "新規プレイリストへ追加"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "%sで全曲を追加"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "%sでランダム曲を追加"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "アーティストとタイトル"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "アーティスト編集"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "アート表示"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "アルバム"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "同様のアーティスト"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "アーティストとタイトル"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "時間"
@@ -3211,6 +3699,45 @@ msgstr "カタログは見つかりませんでした"
msgid "Click to close window"
msgstr "ウィンドウを閉じる"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr ""
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+#, fuzzy
+msgid "No"
+msgstr "無し"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "ジャンル"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "開始"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "カタログは見つかりませんでした"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "確認"
@@ -3228,67 +3755,82 @@ msgstr "クリーン"
msgid "Update"
msgstr "更新"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "最終確認"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "最終追加"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "最終クリーン"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "カタログは見つかりませんでした"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "説明"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "バージョン"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "アクティベート"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "レコードはありません"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "開始 :"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "ストリームURL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "ステータス"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "カタログは見つかりませんでした"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3299,7 +3841,45 @@ msgstr "%sカタログの掃除中"
msgid "Checking"
msgstr "チェック中"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "日付"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "操作"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "無効にした曲は見つかりませんでした"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "最終ログイン"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "カタログは見つかりませんでした"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "続ける"
@@ -3339,86 +3919,85 @@ msgstr "データベースCharsetをセット"
msgid "PHP Settings"
msgstr "PHP設定"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "設定"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "値"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "メモリ制限"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "最大実行時間"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "オーバーライド実行時間"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "失敗"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "成功"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "セーフモード"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Zlibサポート"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "GDサポート"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Iconvサポート"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Gettextサポート"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "現在の設定"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "設定"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Apmache更新"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "インストール済みバージョン"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
msgid "Latest Ampache version"
msgstr ""
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3440,43 +4019,43 @@ msgstr "デモクラティックプレイリストを再生"
msgid "Playing from base Playlist"
msgstr "ベースのプレイリストから再生"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "投票"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "投票削除"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "投票追加"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "アクセス拒否"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "このイベントは記録済みです"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
"function."
msgstr "この機能へアクセスできないため、このページを表示しています。"
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr "これがエラーだと思われる場合、Ampache管理者へお問合せください。"
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3485,8 +4064,8 @@ msgstr ""
"デモで無効になっている機能にアクセスを試みたため、このページにリダイレクトさ"
"れました。"
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "追加時間"
@@ -3515,15 +4094,16 @@ msgstr "重複している曲"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "曲"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "長さ"
@@ -3620,12 +4200,9 @@ msgid "Created by: %s for %s"
msgstr "作成: %sの%s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "トラック"
@@ -3637,27 +4214,27 @@ msgstr "既存のユーザを編集"
msgid "User Properties"
msgstr "ユーザプロパティ"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "その他 オプション"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "コンフィグプリセット"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Flash"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "プリセットの上書きを防止します"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "これは全ての非管理アカウントに影響します"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "ユーザの更新"
@@ -3703,23 +4280,35 @@ msgstr "アート取得"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "情報"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "ファイルからプレイリストをインポート"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "プレイリストタイプ"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "プレイリストをインポート"
@@ -3731,22 +4320,29 @@ msgstr "現在のアルバム"
#: ../../templates/show_install_account.inc.php:26
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
+#, fuzzy
+msgid "Install progress"
+msgstr "インストール済みバージョン"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
msgid "Step 1 - Create the Ampache database"
msgstr "ステップ1 - Ampacheデータベースの作成"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
msgid "Step 2 - Create ampache.cfg.php"
msgstr "ステップ2 - ampache.cfg.phpの作成"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
msgid "Step 3 - Set up the initial account"
msgstr "ステップ3 - 初期アカウントのセットアップ"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
"account has been created you will be redirected to the login page."
@@ -3754,57 +4350,91 @@ msgstr ""
"このステップはAmpacheの管理者アカウントを初期化します。一旦管理者アカウントが"
"作成されるとログインページに飛びます。"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "管理者アカウントの作成"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "アカウント作成"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "必要条件"
+
+#: ../../templates/show_install_check.inc.php:30
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"このページはAmpacheデータベースとampache.cfg.phpファイルの生成のインストール"
+"を扱います。続ける前に以下の事前準備をお願いします。"
+
+#: ../../templates/show_install_check.inc.php:33
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr "データベースを作成/修正できるユーザ名とパスワードをもったMySQLサーバ"
+
+#: ../../templates/show_install_check.inc.php:34
+#, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr "ウェブサーバは%sファイルと%sファイルへのアクセスを読み込みます"
+
+#: ../../templates/show_install_check.inc.php:37
+#, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"上記の要件を確認したら以下の情報を記入してください。必要なコンフィグの値を求"
+"めるだけです。後々Ampacheへの変更を加えたい場合、単に%sを編集するだけです。"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "チェック"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "ステータス"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "説明"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, php-format
msgid "%s is readable"
msgstr "%sは読み込み可"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.phpはありますか?"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3817,58 +4447,58 @@ msgstr ""
"す。それはコンフィグファイルをダウンロードするように促されます。ダウンロード"
"したコンフィグファイルを%sへ置いてください。"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "設定ファイルの生成"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Webパス"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
msgid "Database Name"
msgstr "データベース名"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQLのホスト名"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQLのユーザ名"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQLのパスワード"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "読取/書込"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.phpはありますか?"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.phpは設定されていますか?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
msgid "Recheck Config"
msgstr "コンフィグの再チェック"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "ステップ3へ続ける"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
"MySQL account with database creation rights. This step may take some time on "
@@ -3878,56 +4508,56 @@ msgstr ""
"にAmpacheデータベースを作成します。マシンの速度によってこのステップはしばらく"
"時間がかかるかもしれません。"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Ampacheデータベースの挿入"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "希望するデータベース名"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "MySQL管理ユーザ名"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "MySQL管理パスワード"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "新規データベースのユーザ作成"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Ampacheデータベースユーザ名"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Ampacheデータベースユーザパスワード"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "既存を上書き"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "既存のデータベースを使用する"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "データベース挿入"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
msgid "Choose Installation Language"
msgstr "インストールする言語を選択してください。"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "設定の開始"
@@ -3945,11 +4575,6 @@ msgstr "ユニークを表示"
msgid "Show All"
msgstr "全て表示"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "日付"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -3959,12 +4584,12 @@ msgstr "IPアドレス"
msgid "Manage Radio Stations"
msgstr "ラジオステーションの管理"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "プレイリスト名"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4010,47 +4635,47 @@ msgstr "ローカル再生インスタンスの表示"
msgid "Edit Instance"
msgstr "インスタンス編集"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "ローカル再生のコントロール"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "消音"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "音量を下げる"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "音量を上げる"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "音量"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "リピート"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "パスワードを記憶する"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
msgid "Lost password"
msgstr "パスワードをなくしました"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "ログイン"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "登録"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "1日のメッセージ"
@@ -4088,10 +4713,6 @@ msgstr "From"
msgid "Yourself"
msgstr "自分自身"
-#: ../../templates/show_mail_users.inc.php:43
-msgid "Ampache"
-msgstr "Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "件名"
@@ -4156,6 +4777,7 @@ msgstr "新規プレイリスト作成"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "オブジェクト"
@@ -4169,36 +4791,18 @@ msgstr "Sticky"
msgid "Date Added"
msgstr "追加日"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "アルバム再生"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "アルバム再生"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "アルバム追加"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "ラジオステーション"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "アルバム"
+msgid "No missing album found"
+msgstr "カタログは見つかりませんでした"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
msgid "Similar Songs"
msgstr "同様の曲"
@@ -4215,124 +4819,59 @@ msgstr "まだ評価されていません"
msgid "%s of 5"
msgstr "5点中%s点"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "トラックのノーマライズ"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "アルバム再生"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "プレイリスト"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "全て追加"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "ランダムを追加"
+#, fuzzy
+msgid "Create channel"
+msgstr "作成日"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "このカタログを削除してもよろしいですか?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "プレイリスト"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "プレイリスト"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "プレイリストの方法"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "プレイリスト名"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# 曲数"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "所有者"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "カタログは見つかりませんでした"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "プレイリスト曲"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "プレイリスト曲"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "ジャンル"
-
#: ../../templates/show_playlist_title.inc.php:23
#, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s (プレイリスト)"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
msgid "Installed Version"
msgstr "インストール済みバージョン"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "無効化"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr "アップグレード"
@@ -4340,13 +4879,13 @@ msgstr "アップグレード"
msgid "Preference Administration"
msgstr "設定管理"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "全てに適用"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "アクセスレベル"
@@ -4381,6 +4920,18 @@ msgstr "アイテムカウント"
msgid "Unlimited"
msgstr "無制限"
+#: ../../templates/show_random.inc.php:68
+#, fuzzy, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "分"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] ""
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "サイズ制限"
@@ -4389,21 +4940,69 @@ msgstr "サイズ制限"
msgid "Enqueue"
msgstr "エンキュー"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "最後に再生した"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "秒前"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "分前"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "時間前"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "日前"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "週間前"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "ヶ月前"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "年前"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "秒前"
+
+#: ../../templates/show_recently_played.inc.php:133
msgid "No recently item found"
msgstr ""
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "お勧めアーティスト"
@@ -4476,7 +5075,7 @@ msgstr "ルールを追加"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "高度な検索"
@@ -4502,16 +5101,54 @@ msgstr "オプション"
msgid "Add Search Results"
msgstr "検索結果を追加"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "オブジェクト"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "作成日"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "最終確認"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "公開"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "追加を送信"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "全て追加"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "変更を保存"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "スマートプレイリスト"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "カタログは見つかりませんでした"
@@ -4529,54 +5166,41 @@ msgstr "詳細"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
msgid "Link"
msgstr "リンク"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
msgid "Label"
msgstr "ラベル"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
msgid "Song Language"
msgstr "曲言語"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
msgid "Catalog Number"
msgstr "カタログ番号"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
msgid "Last Updated"
msgstr "最終更新"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "%sの歌詞"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "プレイリスト曲"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "曲情報"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "曲タイトル"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "無効にした曲は見つかりませんでした"
@@ -4597,13 +5221,31 @@ msgstr "カタログサイズ"
msgid "Catalog Time"
msgstr "カタログ時間"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "1番人気のアルバム"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "1番人気のアーティスト"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "曲タイトル"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "このカタログを削除してもよろしいですか?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Ampacheデバッグ"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4723,10 +5365,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "PHP iconv サポート"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"このテストは、PHPのためにあなたがmysql拡張をロードするかチェックします。これ"
+"らはAmpacheが働くために要求されます。"
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "セーフモード"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4736,34 +5392,34 @@ msgstr ""
"とができることを確かめます。ampacheのいくつかの機能が正確に動かさないかもしれ"
"ない一方で、機能なしでは要求されないかもしれません"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "PHP メモリ制限"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "PHP 最大実行時間"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
#, fuzzy
msgid "Configuration file readability"
msgstr "エラー: ディレクトリ%sは書込み不可です"
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4773,12 +5429,12 @@ msgstr ""
"むことを試みます、正確な位置あるいはそれにない、あなたのウェブサーバによって"
"現在判読可能でありません。"
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "エラー: ディレクトリ%sは書込み不可です"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4787,12 +5443,12 @@ msgstr ""
"このテストは、あなたが要求された配置変数をすべてセットしており、私たちが"
"configファイルを完全に解析することができることを確かめます。"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "データベースCharsetを更新しました"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4801,12 +5457,12 @@ msgstr ""
"これは、あなたのampache.cfg.phpからの値を使用して、あなたのデータベースに接続"
"することを試みます。"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "データベース名"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4815,12 +5471,12 @@ msgstr ""
"これはAmpacheのデータベース挿入が成功することとユーザがデータベースへアクセス"
"できることを確実にするためにいくつかのキーテーブルをチェックします"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Webパス"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4858,99 +5514,75 @@ msgstr "使用した確認キーは正しくありません"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "ユーザツール"
+msgid "User Favorites"
+msgstr "ユーザプロパティ"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "作成日"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "最終ログイン"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "活動"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "ステータス"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "ユーザは現在オンラインです"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "ユーザは現在オフラインです"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "アクティブなプレイリスト"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "お勧めアーティスト"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "お勧めアルバム"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "お勧めの曲"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "同意"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "同意する"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "ユーザ情報"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
msgid "* Required fields"
msgstr "* 必須フィールド"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "ユーザ登録"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "フルネーム"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "登録日"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "最終IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "オンライン"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "お気に入りアーティスト"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "お気に入りアルバム"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "お気に入りの曲"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -4962,21 +5594,18 @@ msgstr "カタログの検証"
msgid "Updating the %s catalog"
msgstr "%sカタログの更新中"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] ""
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "確認済み"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "プレイリスト曲"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "分析"
@@ -4987,7 +5616,7 @@ msgid "No video found"
msgstr "レコードはありません"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "関連するアーティスト"
@@ -5029,50 +5658,45 @@ msgstr "サーバ設定"
msgid "Browse"
msgstr "閲覧"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr "曲タイトル"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "現在再生中のもの"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "インポート"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "高度"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "最新"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "ポピュラー"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "評価"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "フラグ"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "モジュール"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "ログアウト"
@@ -5125,7 +5749,7 @@ msgstr "プレイリストの管理"
msgid "Account"
msgstr "アカウント"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5136,18 +5760,15 @@ msgstr ""
"扱います。あなたのデータベースによると、あなたの最新版は以下の通りです: "
"%s"
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "以下の必要な更新が実行されました"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "今すぐ更新!"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Ampache インストール"
-
#: Database words
msgid "Allow Downloads"
msgstr "ダウンロードの許可"
@@ -5248,14 +5869,163 @@ msgstr "追跡するユーザ"
msgid "Streaming"
msgstr "ストリーミング"
-#: Database words
-msgid "Interface"
-msgstr "インタフェース"
-
#: Database words
msgid "System"
msgstr "システム"
+#~ msgid "Related Album"
+#~ msgstr "関連するアルバム"
+
+#~ msgid "Related Genre"
+#~ msgstr "関連するジャンル"
+
+#~ msgid "Pure Random"
+#~ msgstr "純粋なランダム"
+
+#~ msgid "Low"
+#~ msgstr "低"
+
+#~ msgid "Medium"
+#~ msgstr "中"
+
+#~ msgid "High"
+#~ msgstr "高"
+
+#~ msgid "Related Tag"
+#~ msgstr "関連するタグ"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "アルバム再生"
+
+#~ msgid "Play Album"
+#~ msgstr "アルバム再生"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "アルバム再生"
+
+#~ msgid "Add Album"
+#~ msgstr "アルバム追加"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "アルバム再生"
+
+#~ msgid "Flag"
+#~ msgstr "フラグ"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "1番人気のジャンル"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "1番人気の曲"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "1番人気のライブストリーム"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "一番人気のタグ"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "%sで全曲を表示"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "プレイリスト"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "%sで全曲を追加"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "プレイリスト"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "%sで全曲を追加"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "%sで全曲を追加"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "%sでランダム曲を追加"
+
+#~ msgid "Playlist Type"
+#~ msgstr "プレイリストタイプ"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "アルバム再生"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "アルバム再生"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "アルバム追加"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "トラックのノーマライズ"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "プレイリスト"
+
+#~ msgid "Add Random"
+#~ msgstr "ランダムを追加"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "プレイリスト"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "プレイリスト曲"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "プレイリスト曲"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "プレイリスト曲"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "ユーザツール"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "お勧めアーティスト"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "お勧めアルバム"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "お勧めの曲"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "お気に入りアーティスト"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "お気に入りアルバム"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "プレイリスト曲"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "フラグ"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "以下の必要な更新が実行されました"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Ampache インストール"
+
#~ msgid "Make Sticky"
#~ msgstr "スティッキーにする"
@@ -5419,9 +6189,6 @@ msgstr "システム"
#~ msgid "Last Ten Flagged Records"
#~ msgstr "過去10のフラグされたレコード"
-#~ msgid "Disabled Songs"
-#~ msgstr "無効な曲"
-
#~ msgid "Fast"
#~ msgstr "Fast"
@@ -5449,18 +6216,12 @@ msgstr "システム"
#~ msgid "Search Disabled Songs"
#~ msgstr "無効な曲を検索"
-#~ msgid "Edit Album"
-#~ msgstr "アルバム編集"
-
#~ msgid "Flag for Retagging"
#~ msgstr "再タグ付けのフラグ"
#~ msgid "Update Album"
#~ msgstr "アルバム更新"
-#~ msgid "Edit Artist"
-#~ msgstr "アーティスト編集"
-
#~ msgid "Update Artist"
#~ msgstr "アーティスト更新"
diff --git a/locale/nb_NO/LC_MESSAGES/messages.mo b/locale/nb_NO/LC_MESSAGES/messages.mo
index a0bcf335..252aeda1 100644
Binary files a/locale/nb_NO/LC_MESSAGES/messages.mo and b/locale/nb_NO/LC_MESSAGES/messages.mo differ
diff --git a/locale/nb_NO/LC_MESSAGES/messages.po b/locale/nb_NO/LC_MESSAGES/messages.po
index 3f125306..f66f1492 100644
--- a/locale/nb_NO/LC_MESSAGES/messages.po
+++ b/locale/nb_NO/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2009 Ampache.org
# This file is distributed under the same license as the Ampache svn package.
# Retrievil Knievil , 2009.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache 3.5 svn\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-02-05 11:36+0100\n"
"Last-Translator: Retrievil Knievil \n"
"Language-Team: Norwegian Bokmal\n"
@@ -25,7 +25,7 @@ msgstr "Slettet"
msgid "Your Access List Entry has been removed"
msgstr "Din oppføring i tilgangslisten har blitt slettet"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Slettingsforespørsel"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Er du sikker på at du vil slette permanent"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Lagt til"
@@ -43,7 +43,7 @@ msgstr "Lagt til"
msgid "Your new Access Control List(s) have been created"
msgstr "Din nye oppføring i tilgangslistene har blitt lagret"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Oppdatert"
@@ -69,14 +69,29 @@ msgstr "Katalogen og tilhørende oppføringer har blitt slettet"
msgid "Catalog Delete"
msgstr "Slett Katalog"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Bekreft Sletting"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Spor fjernet"
+msgstr[1] "Spor fjernet"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Ingen spor fjernet"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Deaktiverte spor behandlet"
+msgstr[1] "Deaktiverte spor behandlet"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Katalog Rensket"
@@ -219,116 +234,150 @@ msgstr ""
"Databasen og tilhørende tabeller har blitt oppdatert for å tilpasses ditt "
"tegnsett"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Feil: Brukernavn nødvendig"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Feil: Passord stemmer ikke overens"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Bruker oppdatert"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "oppdatert"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Feil: Brukernavn eksisterer"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Feil: Insert feilet"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Gjest"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Bruker"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Administrator"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Ny bruker lagt til"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Bruker aktivert"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Bruker deaktivert"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Feil"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Kan ikke deaktivere den siste administratoren"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Bruker slettet"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " har blitt opprettet"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Feil ved sletting"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Kan ikke slette den siste administratoren"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Er du sikker på at du vil slette permanent"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Bruker slettet"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Bruker slettet"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " har blitt opprettet"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Lag ny konfigurasjonsfil"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "Den valgte spillelisten har blitt slettet"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Album bilder rensket"
@@ -391,91 +440,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Vis artister som starter med"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Lagre katalogoppsett"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Katalog Rensket"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Katalognavn"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Katalog oppdatert"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Katalog opprettet"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Spilleliste importert"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Innstillinger for %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Leser"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Radiostasjon lagt til"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Starter søk etter albumbilder"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Katalog oppdatert"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Rensk katalogstatistikk"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Kataloger"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Legg til katalog"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importer spilleliste"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Hent albumbilder"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Port"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Innstillinger for %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Ukjent"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -593,12 +703,12 @@ msgstr "Feil: Kan ikke hente filstørrelse for %s"
msgid "File Moved..."
msgstr "filer fjernet"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Laget av: %s for %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Bruker aktivert"
@@ -723,6 +833,18 @@ msgstr "Feil: Brukernavn eksisterer"
msgid "Error: Unable to copy file to %s"
msgstr "Feil: Kan ikke hente filstørrelse for %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -749,11 +871,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Slett Katalog"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Katalog slettet"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "Den valgte spillelisten har blitt slettet"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Tag 'Sky'"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Katalog opprettet"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Slett Katalog"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Katalog slettet"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " har blitt opprettet"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "Den valgte spillelisten har blitt slettet"
@@ -843,41 +1004,46 @@ msgstr "Web Grensesnitt"
msgid "Stream Access"
msgstr "Stream Tilgang"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Ukjent"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Disk"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artister"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Variert"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Spilles nå"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -928,170 +1094,306 @@ msgstr "år siden"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Brukernavn/Passord Uspesifisert"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Feil: Ugyldig handshake - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Legg til i spilleliste"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Ugyldig forespørsel"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Mediaobjekt invalid eller feilspesifisert"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Feil: Kan ikke åpne"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Oppdater alle"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Tjener"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Lagre Endringer"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Port"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Last ned"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Artist og Tittel"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Rediger"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Slett"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Spor"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Album"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Behandle Brukere"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Radiostasjoner"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Spillelister"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Spilleliste Sanger"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Nåværende Spilleliste"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Importer spilleliste"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Kataloger"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Shoutbox Oppføringer"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Videoer"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
#, fuzzy
msgid "Democratic Playlist"
msgstr "Lag demokratisk spilleliste"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Relatert Album"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Objekt"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Lagre Endringer"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Mer"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Aldri"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dag"
+msgstr[1] "dager"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "time"
+msgstr[1] "timer"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Ingen oppdatering nødvendig"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Katalogrensking ferdig"
+msgstr[1] "Katalogrensking ferdig"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Katalogrensking ferdig"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Kan ikke opprette ny brukerkonto"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Lagre Endringer"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Ukjent"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Stoppet"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1102,34 +1404,23 @@ msgid "Primary"
msgstr "Primær"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Innholdsoperatør"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Katalogoperatør"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Stoppet"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Pause"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Ukjent"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1162,22 +1453,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Legg til katalog"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Relatert Album"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Relatert Sjanger"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Relatert Artist"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Ren Tilfeldighet"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1193,7 +1468,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1218,8 +1492,8 @@ msgstr ""
"\n"
"Takk for registeringen\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1227,6 +1501,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"En ny bruker har blitt registrert\n"
@@ -1309,107 +1584,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Tittel"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artist"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Kommentar"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Tag"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Filnavn"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "År"
@@ -1417,40 +1692,43 @@ msgstr "År"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Kvalitet"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Spilt"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Bitrate"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Spilt"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1458,156 +1736,143 @@ msgstr "Katalog"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Spilleliste"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Navn på spilleliste"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Importer spilleliste"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Navn"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Spill"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Legg til"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Lagre beskjed"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
#, fuzzy
msgid "Show Lyrics"
msgstr "Vis spilelliste"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Ingen oppdatering nødvendig"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Ikke nok data"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Bruker aktivert"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Ukjent"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Jeg godtar"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Fjern"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Legg til i spilleliste"
@@ -1690,136 +1955,141 @@ msgstr "Databasens tegnsett er oppdatert"
msgid "Administrative user creation failed: %s"
msgstr "Bruker aktivert"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "Feil: Brukernavn eller passord stemmer ikke, prøv igjen"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Bruker deaktivert, kontakt administrator"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Bruker allerede innlogget"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Kan ikke opprette ny brukerkonto"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Aktiver"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Deaktiver"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Ingen"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Stream"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Demokratisk"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Lokalavspilling"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "XSPF Spiller"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Enkel M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Deaktivert"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Operatør"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Send ved Legg til"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Send og rensk ved Legg til"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Rensk ved Send"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Standard"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Alltid"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Transkoding"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1851,7 +2121,8 @@ msgstr "Skikkelige godsaker"
msgid "Off the Charts!"
msgstr "Dunderhonning!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Hjem"
@@ -1867,14 +2138,14 @@ msgstr "Lokalavspilling"
msgid "Random Play"
msgstr "Tilfeldig avspilling"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Søk"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Innstillinger"
@@ -1908,7 +2179,7 @@ msgid "Browse Music"
msgstr "Bla i musikk"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statistikk"
@@ -1916,31 +2187,14 @@ msgstr "Statistikk"
msgid "Add New"
msgstr "Legg til ny"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "På"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Av"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "Feil: Brukernavn eller passord stemmer ikke, prøv igjen"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Bruker deaktivert, kontakt administrator"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Bruker allerede innlogget"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Kan ikke opprette ny brukerkonto"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1967,11 +2221,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2040,11 +2296,11 @@ msgstr "E-post"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Passord"
@@ -2111,48 +2367,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Feil: Kan ikke skifte til mappe"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Feil: Kan ikke hente filstørrelse for %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "%s er ikke lesbar for ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "%s passer ikke med denne serverens tegnsett"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Katalogrot ikke lesbar, avbryter rensking"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2167,13 +2423,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Brukernavn"
@@ -2293,20 +2549,20 @@ msgstr "Vertsnavn"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Port"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Tilfeldig"
@@ -2323,15 +2579,48 @@ msgstr " har blitt opprettet"
msgid "Playlist Imported"
msgstr "Spilleliste importert"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
#, fuzzy
msgid "Playlist Not Imported"
msgstr "Spilleliste importert"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Tomme spillelister slettet"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registrering ferdig"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Tjener"
@@ -2348,36 +2637,36 @@ msgstr "Din brukerkonto har blitt oppdatert"
msgid "Radio Station Added"
msgstr "Radiostasjon lagt til"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Feil: CAPTCHA påkrevd"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Feil: CAPTCHA feilet"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Du må akseptere brukeravtalen"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Du skrev ikke inn et brukernavn"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Vennligst skriv inn ditt fulle navn (Fornavn Etternavn)"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Ugyldig forespørsel"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Du må skrive inn et passord"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Passord stemmer ikke overens"
@@ -2396,6 +2685,11 @@ msgstr "Ferdig med søk"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2404,43 +2698,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Objekt"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Bruker slettet"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Bruker slettet"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " har blitt opprettet"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Ugyldig objekt valgt"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filter"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Begynner med"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Minimumsantall"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Kvalitet"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Uspilt"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Alle spillelister"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Spor tittel"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2449,95 +2778,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Ampache Oppdatering"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Feilsøk"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Spørringer:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Mellomlager treff:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Avbryt"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Logg ut"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Favorittspor"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Feil: Konfigurasjonsfilen er i en gammel versjon"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Lag ny konfigurasjonsfil"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Installasjon av Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Krav"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Denne siden installerer Ampache databasen og oppretter konfigurasjonsfilen "
-"ampache.cfg.php. Før du fortsetter må du undersøke om du oppfyller de krav "
-"som stilles til vertssystemet Ampache skal kjøres på"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"En MySQL Server med brukernavn/passord som tillater oppretting og endring av "
-"databaser."
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Webserveren din må ha tilgang til filene /sql/ampache.sql og/config/ampache."
-"cfg.php.dist."
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Når du har forsikret deg om at de ovenstående krav er oppfylt kan du fylle "
-"ut informasjonen i feltene under. Du vil kun bli bedt om informasjon som er "
-"nødvendig for å fullføre installasjonen. Hvis du vil endre denne "
-"konfigurasjonen på et senere tidspunkt, redigerer du filen/config/ampache."
-"cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Forrige"
@@ -2547,7 +2850,7 @@ msgstr "Forrige"
msgid "Next"
msgstr "Neste"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Størrelsesgrense"
@@ -2557,27 +2860,28 @@ msgid "Add to Playlist"
msgstr "Legg til i spilleliste"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Legg til i ny spilleliste"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Samlet nedlasting"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Rensk spilleliste"
@@ -2585,29 +2889,27 @@ msgstr "Rensk spilleliste"
msgid "Add Dynamic Items"
msgstr "Legg til dynamiske objekter"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Tilfeldig"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Relatert Artist"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Legg til tilfeldig fra album"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Relatert tag"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Tilfeldig avspilling"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Slett"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2640,15 +2942,15 @@ msgstr "Legg til - Avansert"
msgid "Access Control Entries"
msgstr "Tilgangskontroll oppføringer"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Startadresse"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Sluttadresse"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2657,88 +2959,82 @@ msgstr "Sluttadresse"
msgid "Level"
msgstr "Nivå"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Type"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Handling"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Rediger"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-post"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nytt passord"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Bekreft passord"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Rensk Statistikk"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Oppdater konto"
@@ -2860,13 +3156,80 @@ msgid "Gather Album Art"
msgstr "Hent albumbilder"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Bygg spillelister fra m3u filer"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Legg til katalog"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Opprettet dato"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Stream Tilgang"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Grensesnitt"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Type søk"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Lag"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2879,16 +3242,16 @@ msgstr "Hjemmeside"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "Stream URL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Kodek"
@@ -2897,11 +3260,6 @@ msgstr "Kodek"
msgid "Create a new playlist"
msgstr "Lag ny spilleliste"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Lag"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2926,6 +3284,38 @@ msgstr "Fant"
msgid "Reading"
msgstr "Leser"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Opprettet dato"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Objekt"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Tillat streaming"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Tillat nedlasting"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Legg til i Shoutbox"
@@ -2952,17 +3342,22 @@ msgstr "Legger til ny bruker"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Fullt navn"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Tilgangsnivå for bruker"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Legg til bruker"
@@ -2983,259 +3378,346 @@ msgid "Invalid"
msgstr "Ugyldig forespørsel"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Velg"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Handlinger"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Spill album"
+msgid "Play last"
+msgstr "Spilleliste"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Spill album"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Spill album"
+msgid "Add to temporary playlist"
+msgstr "Legg til i ny spilleliste"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Legg til album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Legg til tilfeldig fra album"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Set spornummer"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Vil du virkelig slette denne katalogen?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Reset albumbilde"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Finn albumbilde"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Vil du virkelig slette denne katalogen?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Oppdater fra tag-informasjon"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Last ned"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Spill album"
+msgid "Save Tracks Order"
+msgstr "Set spornummer"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Albumbilde"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Vil du virkelig slette denne katalogen?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Oppdater fra tag-informasjon"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Rediger album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Legg til i ny spilleliste"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Omslag"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "Tags"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Merk"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Ingen deaktiverte spor funnet"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Mest populære artister"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Mest populære album"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Mest populære sjangre"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Mest populære spor"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Mest populære live streams"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Mest populære tags"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Laster..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Vis alle spor av %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Album av %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Spilleliste"
+msgid "Show all"
+msgstr "Vis alle"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Legg til alle spor av %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Album av %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Spill album"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Spilleliste"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Legg til alle spor av %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Legg til i ny spilleliste"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Legg til alle spor av %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Legg til tilfeldige spor av %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Artist og Tittel"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Rediger Artist"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Vis bilder"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Album"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Lignende artister"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Artist og Tittel"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Tid"
@@ -3249,6 +3731,44 @@ msgstr "Ingen lignende artister funnet"
msgid "Click to close window"
msgstr "Klikk for å lukke vinduet"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Nei"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Sjanger"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Start"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Ingen lignende artister funnet"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Verifiser"
@@ -3266,68 +3786,83 @@ msgstr "Rensk"
msgid "Update"
msgstr "Oppdater"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Siste verifikasjon"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Siste legg til"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
#, fuzzy
msgid "Last Clean"
msgstr "Sist sett"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Ingen kataloger funnet"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Versjon"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Aktiver"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Ingen oppføringer funnet"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Begynner med"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Stream URL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Status"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Ingen kataloger funnet"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3338,7 +3873,45 @@ msgstr "Rensker katalogen %s"
msgid "Checking"
msgstr "Sjekker"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Dato"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Handling"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Ingen deaktiverte spor funnet"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Sist sett"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Ingen lignende artister funnet"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Fortsett"
@@ -3380,87 +3953,86 @@ msgstr "Endre databasens tegnsett"
msgid "PHP Settings"
msgstr "PHP Innstillinger"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Innstillinger"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Verdi"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Minnegrense"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Maksimum kjøretid for prosess"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Overstyr kjøretid for prosess"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Feilet"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Suksess"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Sikker modus"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Støtte for Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Støtte for GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Støtte for Iconv"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Støtte for Gettext"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Nåværende konfigurasjon"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Innstilling"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Ampache Oppdatering"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Versjon"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Installasjon av Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3483,31 +4055,31 @@ msgstr "Spill demokratisk spilleliste"
msgid "Playing from base Playlist"
msgstr "Spiller fra baseliste"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Stemmer"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Fjern Stemme"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Legg til stemme"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Tilgang nektes"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Denne hendelsen har blitt loggført."
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3516,12 +4088,12 @@ msgstr ""
"Du har blitt omdirigert til denne siden fordi du ikke har tilgang til denne "
"funksjonen."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr "Hvis du mener dette er en feil, kontakt en Ampache-administrator."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3530,8 +4102,8 @@ msgstr ""
"Du har blitt omdirigert til denne siden fordi du har forsøkt å få tilgang "
"til en funksjon som er deaktivert i demoutgaven."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Tilleggstid"
@@ -3560,15 +4132,16 @@ msgstr "Duplikatspor"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Spor"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Lengde"
@@ -3668,12 +4241,9 @@ msgid "Created by: %s for %s"
msgstr "Laget av: %s for %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Spor"
@@ -3685,29 +4255,29 @@ msgstr "Redigerer eksisterende bruker"
msgid "User Properties"
msgstr "Brukeregenskaper"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
#, fuzzy
msgid "Other Options"
msgstr "Valg"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Konfigurasjonsforvalg"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
#, fuzzy
msgid "Flash"
msgstr "Merk"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Forhindre endring av forvalg"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Dette påvirker alle ikke-admin kontoer"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Oppdater bruker"
@@ -3753,23 +4323,35 @@ msgstr "Hent albumbilde"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Informasjon"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importerer spilleliste fra fil"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Spilleliste type"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importer spilleliste"
@@ -3782,24 +4364,31 @@ msgstr "Aktuelle album"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Versjon"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Trinn 1 - Oppretting og innsetting av Ampache Databasen"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Trinn 2 - Oppretting av konfigurasjonsfilen ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Trinn 3 - Sett opp hovedkonto"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3808,57 +4397,101 @@ msgstr ""
"Dette trinnet oppretter hovedkontoen for administrering av Ampache. Når "
"hovedkontoen er opprettet vil du bli overført til innloggingssiden."
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Opprett administratorkonto"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Opprett konto"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Krav"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Denne siden installerer Ampache databasen og oppretter konfigurasjonsfilen "
+"ampache.cfg.php. Før du fortsetter må du undersøke om du oppfyller de krav "
+"som stilles til vertssystemet Ampache skal kjøres på"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"En MySQL Server med brukernavn/passord som tillater oppretting og endring av "
+"databaser."
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Webserveren din må ha tilgang til filene /sql/ampache.sql og/config/ampache."
+"cfg.php.dist."
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Når du har forsikret deg om at de ovenstående krav er oppfylt kan du fylle "
+"ut informasjonen i feltene under. Du vil kun bli bedt om informasjon som er "
+"nødvendig for å fullføre installasjonen. Hvis du vil endre denne "
+"konfigurasjonen på et senere tidspunkt, redigerer du filen/config/ampache."
+"cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "SJEKK"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATUS"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "BESKRIVELSE"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%s er ikke lesbar for ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php eksisterer"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3870,62 +4503,62 @@ msgstr ""
"Disse trinnene klargjør og oppretter konfigurasjonsfilen for deg. Du vil bli "
"bedt om å laste ned filen, legg den deretter i mappen /config i rotkatalogen."
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Generer konfigurasjonsfil"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Web bane"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Ønsket databasenavn"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "Vertsnavn for MySQL"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Brukernavn for MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Passord for MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Les/Skriv"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php eksisterer"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php konfigurert?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Sjekk etter konfigurasjonen"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Fortsett til trinn 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3936,57 +4569,57 @@ msgstr ""
"oppgi et brukernavn og et passord til MySQL som kan opprette databaser. "
"Dette trinnet kan ta noe tid, avhengig av datamaskinen serveren kjører på."
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Sett inn Ampache databasen"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Ønsket databasenavn"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "MySQL Adminbruker"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "MySQL Adminpassord"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Lag databasebruker for den nye databasen"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Ampache database brukernavn"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Ampache database brukerpassord"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Overskriv eksisterende"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Bruk eksisterende database"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Sett inn databasen"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Velg språk for installasjonsprosessen."
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Start konfigurasjonen"
@@ -4004,11 +4637,6 @@ msgstr "Vis unike"
msgid "Show All"
msgstr "Vis alle"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Dato"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4019,12 +4647,12 @@ msgstr "IP Adresse"
msgid "Manage Radio Stations"
msgstr "Radiostasjoner"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Navn på spilleliste"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4070,48 +4698,48 @@ msgstr "Vis instanser for lokalavspilling"
msgid "Edit Instance"
msgstr "Rediger instans"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Lokalavspillingskontroll"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Stum"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Senk volum"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Øk Volum"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Volum"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Gjenta"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Husk meg"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Passord"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Logg inn"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registrer"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Dagens beskjed"
@@ -4150,11 +4778,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Feilsøk"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Emne"
@@ -4219,6 +4842,7 @@ msgstr "Lag ny spilleliste"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Objekt"
@@ -4232,36 +4856,18 @@ msgstr "Fest"
msgid "Date Added"
msgstr "Lagt til dato"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Spill album"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Spill album"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Legg til album"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Avanserte valg"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Album"
+msgid "No missing album found"
+msgstr "Ingen deaktiverte spor funnet"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Lignende artister"
@@ -4279,125 +4885,60 @@ msgstr "ikke ratet enda"
msgid "%s of 5"
msgstr "%s av 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normaliser spor"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Spill album"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Spilleliste"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Legg til alle"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Legg til tilfeldig"
+#, fuzzy
+msgid "Create channel"
+msgstr "Opprettet dato"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Vil du virkelig slette denne katalogen?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Spilleliste"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Spilleliste"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Metode for spilleliste"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Navn på spilleliste"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "Antall spor"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Eier"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Ingen lignende artister funnet"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Spilleliste Sanger"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Spilleliste Sanger"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Sjanger"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s Spilleliste"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Versjon"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Deaktiver"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4405,13 +4946,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Administrasjon av innstillinger"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Behandle alle"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Tilgangsnivå"
@@ -4446,6 +4987,20 @@ msgstr "Antall objekt"
msgid "Unlimited"
msgstr "Ubegrenset"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minutt"
+msgstr[1] "%d minutter"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d time"
+msgstr[1] "%d timer"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Størrelsesgrense"
@@ -4454,22 +5009,78 @@ msgstr "Størrelsesgrense"
msgid "Enqueue"
msgstr "Legg i kø"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Sist spilt"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "sekunder siden"
+msgstr[1] "sekunder siden"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "minutter siden"
+msgstr[1] "minutter siden"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "timer siden"
+msgstr[1] "timer siden"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "dager siden"
+msgstr[1] "dager siden"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "uker siden"
+msgstr[1] "uker siden"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "måneder siden"
+msgstr[1] "måneder siden"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "år siden"
+msgstr[1] "år siden"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "sekunder siden"
+msgstr[1] "sekunder siden"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Ingen deaktiverte spor funnet"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Ingen lignende artister funnet"
@@ -4544,7 +5155,7 @@ msgstr "Legg til ny"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Avansert Søk"
@@ -4570,16 +5181,54 @@ msgstr "Valg"
msgid "Add Search Results"
msgstr "Legg til søkeresultater"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Objekt"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Opprettet dato"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Siste verifikasjon"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Offentlig"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Send ved Legg til"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Legg til alle"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Lagre Endringer"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Importer spilleliste"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Ingen lignende artister funnet"
@@ -4597,59 +5246,46 @@ msgstr "Detaljer"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Som"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Nivå"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Språk"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Katalognavn"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Merking oppdatert"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "%s Sangtekster"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Spilleliste Sanger"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Spor informasjon"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Spor tittel"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Ingen deaktiverte spor funnet"
@@ -4670,13 +5306,31 @@ msgstr "Katalogstørrelse"
msgid "Catalog Time"
msgstr "Katalogtid"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Mest populære album"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Mest populære artister"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Spor tittel"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Vil du virkelig slette denne katalogen?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Feilsøk"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4798,10 +5452,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "PHP - Støtte for sesjoner"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Denne testen sjekker om du har de nødvendige MySQL utvidelsene lastet i PHP. "
+"De er påkrevd for at Ampache skal fungere."
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Sikker modus"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4811,33 +5479,33 @@ msgstr ""
"minnegrensene. Dette er ikke påkrevd, men kan være nødvendig for at noen av "
"funksjonene i Ampache skal fungere korrekt."
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Minnegrense"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Maksimum kjøretid for prosess"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4847,12 +5515,12 @@ msgstr ""
"denne operasjonen mislykkes mangler filen, eller den er ikke lesbar av "
"webserveren."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Lag demokratisk spilleliste"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4861,12 +5529,12 @@ msgstr ""
"Denne testen sjekker at du har satt alle konfigurasjonsvariablene og at vi "
"er klare til å behandle konfigurasjonsfilen."
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Databasens tegnsett er oppdatert"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4875,23 +5543,23 @@ msgstr ""
"Denne testen prøver å koble til databasen din med verdiene lagret i ampache."
"cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Ønsket databasenavn"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
msgid ""
"This checks a few key tables to make sure that you have successfully "
"inserted the Ampache database and that the user has access to the database"
msgstr ""
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Web bane"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4926,100 +5594,76 @@ msgstr "Valideringsnøkkelen som ble brukt er ikke korrekt"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Brukerverktøy"
+msgid "User Favorites"
+msgstr "Brukeregenskaper"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Opprettet dato"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Sist sett"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Aktivitet"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Status"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Bruker er pålogget nå"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Bruker er avlogget nå"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Aktiv spilleliste"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Anbefalte artister"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Anbefalte album"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Anbefalte spor"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Brukeravtale"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Jeg godtar"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Brukerinformasjon"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Krav"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registrer bruker"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Fullt navn"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Registreringsdato"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Siste IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "Online"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Favorittartister"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Favorittalbum"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Favorittspor"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5031,21 +5675,19 @@ msgstr "Kataloger"
msgid "Updating the %s catalog"
msgstr "Oppdaterer katalogen %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, fuzzy, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "emner funnet - sjekker tag informasjon."
+msgstr[1] "emner funnet - sjekker tag informasjon."
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Verifisert"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Spilleliste Sanger"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Oppløsning"
@@ -5056,7 +5698,7 @@ msgid "No video found"
msgstr "Ingen oppføringer funnet"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Relatert Artist"
@@ -5098,53 +5740,48 @@ msgstr "Serverkonfigurasjon"
msgid "Browse"
msgstr "Bla"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Spor tittel"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Spilles nå"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
#, fuzzy
msgid "Import"
msgstr "Importer"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Avansert"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
#, fuzzy
msgid "Newest"
msgstr "Nyeste Album"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Populær"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Kvalitet"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Merk"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Moduler"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Logg ut"
@@ -5197,7 +5834,7 @@ msgstr "Behandle spilleliste"
msgid "Account"
msgstr "Konto"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5208,19 +5845,15 @@ msgstr ""
"3.3.3.5.Denne databasen rapporterer versjon %s"
"strong>."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "de følgende oppdateringer må utføres"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Oppdater nå!"
-#: ../../update.php:71
-#, fuzzy
-msgid "Ampache Installation."
-msgstr "Installasjon av Ampache"
-
#: Database words
msgid "Allow Downloads"
msgstr "Tillat nedlasting"
@@ -5321,14 +5954,155 @@ msgstr "Bruker som skal spores"
msgid "Streaming"
msgstr "Streaming"
-#: Database words
-msgid "Interface"
-msgstr "Grensesnitt"
-
#: Database words
msgid "System"
msgstr "System"
+#~ msgid "Related Album"
+#~ msgstr "Relatert Album"
+
+#~ msgid "Related Genre"
+#~ msgstr "Relatert Sjanger"
+
+#~ msgid "Pure Random"
+#~ msgstr "Ren Tilfeldighet"
+
+#~ msgid "Related Tag"
+#~ msgstr "Relatert tag"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Spill album"
+
+#~ msgid "Play Album"
+#~ msgstr "Spill album"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Spill album"
+
+#~ msgid "Add Album"
+#~ msgstr "Legg til album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Spill album"
+
+#~ msgid "Flag"
+#~ msgstr "Merk"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Mest populære sjangre"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Mest populære spor"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Mest populære live streams"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Mest populære tags"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Vis alle spor av %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Spilleliste"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Legg til alle spor av %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Spilleliste"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Legg til alle spor av %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Legg til alle spor av %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Legg til tilfeldige spor av %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Spilleliste type"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Spill album"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Spill album"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Legg til album"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normaliser spor"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Spilleliste"
+
+#~ msgid "Add Random"
+#~ msgstr "Legg til tilfeldig"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Spilleliste"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Spilleliste Sanger"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Spilleliste Sanger"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Spilleliste Sanger"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Brukerverktøy"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Anbefalte artister"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Anbefalte album"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Anbefalte spor"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Favorittartister"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Favorittalbum"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Spilleliste Sanger"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Merk"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "de følgende oppdateringer må utføres"
+
+#, fuzzy
+#~ msgid "Ampache Installation."
+#~ msgstr "Installasjon av Ampache"
+
#~ msgid "Make Sticky"
#~ msgstr "Fest til toppen"
@@ -5503,18 +6277,12 @@ msgstr "System"
#~ msgid "Search Disabled Songs"
#~ msgstr "Søk etter deaktiverte spor"
-#~ msgid "Edit Album"
-#~ msgstr "Rediger album"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Merk for omtagging"
#~ msgid "Update Album"
#~ msgstr "Oppdater album"
-#~ msgid "Edit Artist"
-#~ msgstr "Rediger Artist"
-
#~ msgid "Update Artist"
#~ msgstr "Oppdater Artist"
@@ -5658,16 +6426,6 @@ msgstr "System"
#~ msgid "DB Inserted"
#~ msgstr "Database insatt"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "dag"
-#~ msgstr[1] "dager"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "time"
-#~ msgstr[1] "timer"
-
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr "Kan ikke laste pear XMLRPC biblioteket, er XML-RPC aktivert?"
@@ -5686,12 +6444,6 @@ msgstr "System"
#~ msgid "images synchronized: "
#~ msgstr "bilder synkronisert: "
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Katalogrensking ferdig"
-#~ msgstr[1] "Katalogrensking ferdig"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5740,22 +6492,6 @@ msgstr "System"
#~ "demoversjonen har brukt funksjonen til å legge inn ikke-godkjent "
#~ "materiale."
-#, fuzzy
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "emner funnet - sjekker tag informasjon."
-#~ msgstr[1] "emner funnet - sjekker tag informasjon."
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minutt"
-#~ msgstr[1] "%d minutter"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d time"
-#~ msgstr[1] "%d timer"
-
#~ msgid "file"
#~ msgstr "fil"
@@ -5781,18 +6517,6 @@ msgstr "System"
#~ msgstr ""
#~ "Det oppstod et problem med opplastingen: %s ble kun delvis opplastet."
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Spor fjernet"
-#~ msgstr[1] "Spor fjernet"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Deaktiverte spor behandlet"
-#~ msgstr[1] "Deaktiverte spor behandlet"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Ingen oppføringer funnet"
@@ -5824,12 +6548,6 @@ msgstr "System"
#~ msgid "Keywords"
#~ msgstr "Nøkkelord"
-#~ msgid "Yes"
-#~ msgstr "Ja"
-
-#~ msgid "No"
-#~ msgstr "Nei"
-
#~ msgid "Min Bitrate"
#~ msgstr "Minimum Bitrate"
diff --git a/locale/nl_NL/LC_MESSAGES/messages.mo b/locale/nl_NL/LC_MESSAGES/messages.mo
index 5ab431ca..68c9b2d8 100644
Binary files a/locale/nl_NL/LC_MESSAGES/messages.mo and b/locale/nl_NL/LC_MESSAGES/messages.mo differ
diff --git a/locale/nl_NL/LC_MESSAGES/messages.po b/locale/nl_NL/LC_MESSAGES/messages.po
index fd4e66b4..4d63f9b0 100644
--- a/locale/nl_NL/LC_MESSAGES/messages.po
+++ b/locale/nl_NL/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2007 Ampache.org
# This file is distributed under the same license as the Ampache package.
# Terence Theijn , 2006.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache SVN 693\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2006-11-14 08:00+0100\n"
"Last-Translator: Terence Theijn \n"
"Language-Team: Dutch \n"
@@ -25,7 +25,7 @@ msgstr "Verwijderd"
msgid "Your Access List Entry has been removed"
msgstr "Uw toegangs regel is verwijderd"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Verwijder verzoek"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Weet je zeker dat je dit permanent wilt verwijderem"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Toegevoegd"
@@ -43,7 +43,7 @@ msgstr "Toegevoegd"
msgid "Your new Access Control List(s) have been created"
msgstr "Uw nieuwe toegangs regel is aangemaakt"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Bijgewerkt"
@@ -69,14 +69,29 @@ msgstr "De catalogus en alle bijbehorende regels zijn verwijderd"
msgid "Catalog Delete"
msgstr "Catalogus verwijderen"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Bevestig verwijder verzoek"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Liedjes verwijderd"
+msgstr[1] "Liedjes verwijderd"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Geen liedjes verwijderd"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Gedeactiveerde liedjes verwerkt"
+msgstr[1] "Gedeactiveerde liedjes verwerkt"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Catalogus opgeschoond"
@@ -219,116 +234,151 @@ msgid ""
msgstr ""
"Uw Database en tabellen zijn bijgewerkt naar de aangegeven karakterset."
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Fout gebruikersnaam verplicht"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "fout wachtwoorden zijn niet gelijk"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Gebruiker bijgewerkt"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "bijgewerkt"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Fout gebruikersnaam bestaat al"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Fout: Gebruiker kon niet worden aangemaakt"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Gast"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Gebruiker"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Beheer"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Nieuwer gebruiker toegevoegd"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Gebruiker geactiveerd"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Gebruiker gedeactiveerd"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Fout"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Onmogelijk om de laatste administrator te deactiveren"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Gebruiker verwijderd"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " is aangemaakt"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Verwijder fout"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Kan de laatste admin gebruiker niet verwijderen"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Weet je zeker dat je dit permanent wilt verwijderem"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Gebruiker verwijderd"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Gebruiker verwijderd"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " is aangemaakt"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Genereer config"
+
+#: ../../admin/users.php:201
+#, fuzzy
+msgid "Confirm API Key Generation"
+msgstr "Bevestig Actie"
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "De gezochte afspeellijst is verwijderd."
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Album afbeelding verwijderd"
@@ -392,91 +442,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Artiesten die beginnen met"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Catalogus instellingen opslaan"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Catalogus opgeschoond"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Catalogus naam"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Bijwerken catalogus gereed"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Catalogus aangemaakt"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Importeren afspeellijst gelukt"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Start bouwen van Catalogus"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Bezig met lezen"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Radio station toegevoegd"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Start zoeken naar album hoes"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Bijwerken catalogus gereed"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Schoon Catalogus(sen) op"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Catalogussen"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Voeg toe aan catalogus(sen)"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importeer speellijst"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Afbeeldingen ophalen"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Poort"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Start bouwen van Catalogus"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Onbekend (Orphaned)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -594,12 +705,12 @@ msgstr "Fout: kan niet schrijven naar:"
msgid "File Moved..."
msgstr "bestanden verwijderd"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Aangemaakt door: %s voor %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Gebruiker geactiveerd"
@@ -725,6 +836,18 @@ msgstr "Fout gebruikersnaam bestaat al"
msgid "Error: Unable to copy file to %s"
msgstr "Fout: Kan bestands grootte niet opvragen voor %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -751,11 +874,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Speellijst Verwijderd"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Speellijst Verwijderd"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "De gevraagde Speellijst is verwijderd"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Tag wolk"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Catalogus aangemaakt"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Catalogus verwijderen"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Catalogus verwijderd"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr "De gevraagde Speellijst is verwijderd"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "De gezochte afspeellijst is verwijderd."
@@ -845,41 +1007,46 @@ msgstr "Web Interface"
msgid "Stream Access"
msgstr "Stream toegang"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Onbekend (Orphaned)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Schijf"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artiesten"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Diverse"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Nu speelt"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -930,169 +1097,308 @@ msgstr "jaren geleden"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Geen gebruikersnaam/wachtwoord opgegeven"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Fout: Ongeldige handshake - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Geen liedjes in deze speellijst"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Ongeldig verzoek"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Media object is ongeldig of niet gespecificeerd"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Fout: Kan niet openen"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Werk alle bij"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Server"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Veranderingen opslaan"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Poort"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Download"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Artiest en titel"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Bewerken"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Verwijder"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Liedjes"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Albums"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Beheer Gebruikers"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Radio stations"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Afspeellijsten"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Afspeellijst liedjes"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Huidige afspeellijst"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Importeer speellijst"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Catalogussen"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Shoutbox Records"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Videos"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "Democratische afspeellijst"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Verwante album"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Object"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Veranderingen opslaan"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Meer"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Nooit"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+#, fuzzy
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dag"
+msgstr[1] "dagen"
+
+#: ../../lib/class/catalog.class.php:387
+#, fuzzy
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "uur"
+msgstr[1] "uren"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Geen update nodig"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Opschoning catalogus gereed"
+msgstr[1] "Opschoning catalogus gereed"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Opschoning catalogus gereed"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Klik om de Speellijst te legen"
+
+#: ../../lib/class/catalog.class.php:1221
+#, fuzzy
+msgid "No valid songs found in playlist file."
+msgstr "Geen liedjes in deze speellijst"
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Veranderingen opslaan"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Onbekend"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Gestopt"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1103,35 +1409,24 @@ msgid "Primary"
msgstr "Primair"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Inhoud beheerder"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Catalogus beheerder"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Gestopt"
-
#: ../../lib/class/localplay.class.php:633
#, fuzzy
msgid "Paused"
msgstr "Gespeeld"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Onbekend"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1164,22 +1459,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Catalogus toevoegen"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Verwante album"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Verwante Genre"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Verwante artiest"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Volledig willekeurig"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1195,7 +1474,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1220,8 +1498,8 @@ msgstr ""
"\n"
"Nogmaals bedankt voor uw registratie\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1229,6 +1507,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"Een nieuwe gebruiker heeft zicht geregistreerd\n"
@@ -1311,107 +1590,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Titel"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artiest"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Commentaar"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Opnieuw Taggen"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Bestandsnaam"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Jaar"
@@ -1419,40 +1698,43 @@ msgstr "Jaar"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Waardering"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Gespeeld"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Bitrate"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Gespeeld"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1460,155 +1742,142 @@ msgstr "Catalogus"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Afspeellijst"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Naam afspeellijst"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Importeer speellijst"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Naam"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Afspelen"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Toevoegen"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Shout verzenden"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "Liedteksten weergeven"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Geen update nodig"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Niet voldoende gegevens"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Gebruiker geactiveerd"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Onbekend"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Ik ga akkoord"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Verwijderen"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Toevoegen aan afspeellijst"
@@ -1695,136 +1964,141 @@ msgstr "Database karakterset bijgewerkt"
msgid "Administrative user creation failed: %s"
msgstr "Gebruiker geactiveerd"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "Fout in gebruikersnaam of wachtwoord, probeer het nogmaals."
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Gebruiker gedeactiveerd neem contact op met beheerder"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Gebruiker is al ingelogd"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Niet in staat om een nieuw account aan te maken"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Activeren"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Deactiveren"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Geen"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Stream"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Democratisch"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Lokaal afspelen"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "XSPF Speler"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Eenvoudige M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Gedeactiveerd"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Beheerder"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Verzenden bij toevoegen"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Verzenden en opgeschonen bij toevoegen"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Opschonen bij verzenden"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Standaard"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Altijd"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Transcoderen"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1856,7 +2130,8 @@ msgstr "Het is te gek"
msgid "Off the Charts!"
msgstr "Niet te geloven"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Begin"
@@ -1872,14 +2147,14 @@ msgstr "Lokaal afspelen"
msgid "Random Play"
msgstr "Willekeurig aspelen"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Zoeken"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Instellingen"
@@ -1913,7 +2188,7 @@ msgid "Browse Music"
msgstr "Bladeren"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statistieken"
@@ -1921,31 +2196,14 @@ msgstr "Statistieken"
msgid "Add New"
msgstr "Nieuwe toevoegen"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Aan"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Uit"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "Fout in gebruikersnaam of wachtwoord, probeer het nogmaals."
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Gebruiker gedeactiveerd neem contact op met beheerder"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Gebruiker is al ingelogd"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Niet in staat om een nieuw account aan te maken"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1972,11 +2230,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2045,11 +2305,11 @@ msgstr "e-Mail"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Wachtwoord"
@@ -2116,48 +2376,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Fout: Kan niet naar directorie veranderen"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Fout: Kan bestands grootte niet opvragen voor %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "%s is niet leesbaar voor Ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "%s komt niet overeen met de karakterset van de website"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Catalogus Root onleesbaar, stoppen met opschonen"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2172,13 +2432,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Gebruikersnaam"
@@ -2298,20 +2558,20 @@ msgstr "Hostnaam"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Poort"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Willekeurig"
@@ -2328,14 +2588,47 @@ msgstr " is aangemaakt"
msgid "Playlist Imported"
msgstr "Importeren afspeellijst gelukt"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "Importeren afspeellijst mislukt"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Lege afspeellijst verwijderd"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registratie Compleet"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Server"
@@ -2352,36 +2645,36 @@ msgstr "Uw account is bijgewerkt"
msgid "Radio Station Added"
msgstr "Radio station toegevoegd"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Fout: Verificatie verplicht"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Fout: Verificatie onjuist"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "U moet de gebruikersovereenkomst accepteren"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "U heeft geen gebruikersnaam opgegeven"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Vul uw voor- en achternaam in"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Ongeldig verzoek"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "U moet een wachtwoord opgeven"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "De opgegeven wachtwoorden komen niet overeen"
@@ -2400,6 +2693,11 @@ msgstr "Doorzocht"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2408,43 +2706,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Object"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Gebruiker verwijderd"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Gebruiker verwijderd"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " is aangemaakt"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Onjuist object geselecteerd"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filters"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Begint met"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Minimum aantal"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Waardering"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Niet afgespeeld"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Alle afspeellijsten"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Naam liedje"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2453,97 +2786,70 @@ msgstr ""
msgid "Ampache error page"
msgstr "Ampache bijwerken"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Doorzoek Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
#, fuzzy
msgid "Error messages"
msgstr "Fout Toegang Gewijgerd"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Aanvragen:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Uit cache:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr "Opslaan"
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Annuleer"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Uitloggen"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+msgid "Favorites"
+msgstr "Favorieten"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Configuratie bestand is verouderd"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
#, fuzzy
msgid "Generate New Config"
msgstr "Genereer config"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Ampache Installatie"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Vereisten"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Deze pagina helpt bij het opzetten van de Ampache Database en bij het "
-"aanmaken van het ampache.cfg.php configuratie bestand. Voordat u verder "
-"gaat, controleer of u voldoet aanonderstaande eisen"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Een MySQL Server met gebruikersnaam en wachtwoord dat een database kan "
-"aanmaken/wijzigen"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Uw webserver leesrechten heeft op het bestand /sql/ampache.sql en het "
-"bestand /config/ampache.cfg.php.dist"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Als u zeker weet dat u voldoet aan bovenstaande eisen vul dan onderstaande "
-"waarden in. Er wordt alleen gevraagd naar de verplichte "
-"configuratievariabelen. Als u later veranderingen wilt aanbrengen in de "
-"ampache installatie kan dit door het bestand /config/amache.cfg.php te "
-"bewerken"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Vorige"
@@ -2553,7 +2859,7 @@ msgstr "Vorige"
msgid "Next"
msgstr "Volgende"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Grootte Limiet"
@@ -2563,27 +2869,28 @@ msgid "Add to Playlist"
msgstr "Toevoegen aan afspeellijst"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Toevoegen aan nieuwe afspeellijst"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Bulk download"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Maak afspeellijst Leeg"
@@ -2591,29 +2898,27 @@ msgstr "Maak afspeellijst Leeg"
msgid "Add Dynamic Items"
msgstr "Dynamische items toevoegen"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Willekeurig"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Verwante artiest"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Willekeurig album toevoegen"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Verwante tag"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Willekeurig aspelen"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Verwijder"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2646,15 +2951,15 @@ msgstr "Geavanceerde toevoegen"
msgid "Access Control Entries"
msgstr "Toegans niveaus items"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Begin adres"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Eind adres"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2663,88 +2968,82 @@ msgstr "Eind adres"
msgid "Level"
msgstr "Niveau"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Type"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Actie"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Bewerken"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "e-Mail"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nieuw wachtwoord"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Herhaal uw wachtwoord"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Statistieken opschonen"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Account wijzigen"
@@ -2868,13 +3167,80 @@ msgid "Gather Album Art"
msgstr "Verzamel album afbeeldingen"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Genereer afpeellijsten van m3u bestanden"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Catalogus toevoegen"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Aanmaak datum"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Stream toegang"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Omschrijving"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr "Herhaal"
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Zoek type"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Aanmaken"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2887,16 +3253,16 @@ msgstr "Website"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "Stream URL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Codec"
@@ -2905,11 +3271,6 @@ msgstr "Codec"
msgid "Create a new playlist"
msgstr "Maak een nieuwe afspeellijst aan"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Aanmaken"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2934,6 +3295,38 @@ msgstr "Gevonden"
msgid "Reading"
msgstr "Bezig met lezen"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Aanmaak datum"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Object"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Streaming toestaan"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Downloads toestaan"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Verzend naar Shoutbox"
@@ -2960,17 +3353,22 @@ msgstr "Nieuwe gebruiker toevoegen"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Volledige Naam"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Gebruiker toegangsniveau"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Gebruiker toevoegen"
@@ -2990,260 +3388,346 @@ msgid "Invalid"
msgstr "Onjuist"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Selecteer"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Acties"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Album afspelen"
+msgid "Play last"
+msgstr "Afspeellijst"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Album afspelen"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Album afspelen"
+msgid "Add to temporary playlist"
+msgstr "Toevoegen aan nieuwe afspeellijst"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Album toevoegen"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Willekeurig album toevoegen"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Wijzig nummers"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Weet je zeker dat je deze catalogus wilt verwijderen?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Album hoes verwijderen"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Album hoes zoeken"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Weet je zeker dat je deze catalogus wilt verwijderen?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Werk bij via tags"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Download"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Album afspelen"
+msgid "Save Tracks Order"
+msgstr "Wijzig nummers"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Album afbeelding"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Weet je zeker dat je deze catalogus wilt verwijderen?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Werk bij via tags"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Bewerk album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Toevoegen aan nieuwe afspeellijst"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Hoes"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
#, fuzzy
msgid "Tags"
msgstr "Tags"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Markeer"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Geen gedeactiveerde liedjes gevonden"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Meest populaire artiesten"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Meest populaire albums"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Meest populaire genres"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Meest populaire nummers"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Meest populaire live streams"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Meest populaire tags"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Laden..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Alle liedjes weergeven van %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Albums bij %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
-#, fuzzy
-msgid "Play artist"
-msgstr "Afspeellijst"
+#: ../../templates/show_artist.inc.php:75
+msgid "Show all"
+msgstr "Alles"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Speel Alle Liedjes van"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
-msgstr "Afspeellijst"
+msgid "Show albums"
+msgstr "Alles"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Speel Alle Liedjes van"
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Album afspelen"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Alle Liedjes van %s toevoegen"
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
+msgstr "Speel deze Speellijst"
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Speel willekeurige liedjes van %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Toevoegen aan nieuwe afspeellijst"
-#: ../../templates/show_artist.inc.php:111
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
+
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Artiest en titel"
+
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Artiest bewerken"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Afbeelding weergeven"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Albums"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Dezelfde Artiesten"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Artiest en titel"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Tijd"
@@ -3257,6 +3741,45 @@ msgstr "Geen dezelfde artiesten gevonden"
msgid "Click to close window"
msgstr "Klik om het venster te sluiten"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Nee"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Genre"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Begin"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+#, fuzzy
+msgid "Listeners"
+msgstr "Lijsten"
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Geen dezelfde artiesten gevonden"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Verifieer"
@@ -3274,67 +3797,82 @@ msgstr "Opschonen"
msgid "Update"
msgstr "Bijwerken"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Laatst gecontroleerd"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Laatsts toegevoegd"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "Laatst opgeschoond."
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Geen catalogussen gevonden"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Omschrijving"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Versie"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Activeren"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Geen records gevonden"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Begint met"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Stream URL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Status"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Geen catalogussen gevonden"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3345,7 +3883,45 @@ msgstr "Opschonen van %s Catalog"
msgid "Checking"
msgstr "Bezig met controleren"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Datum"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Actie"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Geen gedeactiveerde liedjes gevonden"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Laatst gezien"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Geen Speellijst Gevonden"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Doorgaan"
@@ -3386,87 +3962,86 @@ msgstr "Stel de database characterset in"
msgid "PHP Settings"
msgstr "PHP instellingen"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Instelling"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Waarde"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Geheugen limiet"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Maximum executie tijd"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Override executie tijd"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Mislukt"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Succesvol"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Safe Mode"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Zlib Support"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "GD Support"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Iconv Support"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Gettext ondersteuning"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Huidige configuratie"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Instelling"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Ampache bijwerken"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Versie"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Ampache Installatie"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3488,31 +4063,31 @@ msgstr "Democratische afspeellijst afspelen"
msgid "Playing from base Playlist"
msgstr "Speel van basis afspeellijst"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Stemmen"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Verwijder stem"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Stem toevoegen"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Toegang verboden"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Dit geval is gemeld in het logboek"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3520,13 +4095,13 @@ msgid ""
msgstr ""
"U bent doorgestuurd naar deze pagina, omdat u hier geen rechten op heeft."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"Als u denkt dat dit fout is, neem dan contact op met de Ampache beheerder."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3535,8 +4110,8 @@ msgstr ""
"U bent doorgestuurd naar deze pagina, omdat deze functie niet beschikbaar is "
"in de demo."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Tijd van toevoegen"
@@ -3565,15 +4140,16 @@ msgstr "Dubbele Liedjes"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Liedje"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Lengte"
@@ -3670,12 +4246,9 @@ msgid "Created by: %s for %s"
msgstr "Aangemaakt door: %s voor %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Nummer"
@@ -3687,28 +4260,28 @@ msgstr "Bewerk bestaande Gebruiker"
msgid "User Properties"
msgstr "Gebruiker instellingen"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "Overige opties"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
#, fuzzy
msgid "Config Preset"
msgstr "Bevestig verwijdering"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Markeer"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Voorkom overschrijving van de standaard."
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Dit heeft effect op alle niet-Admin accounts"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Bewerk gebruiker"
@@ -3755,23 +4328,35 @@ msgstr "Haal afbeelding op"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Informatie"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importeer afspeellijst vanuit een bestand"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Afspeellijst type"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importeer speellijst"
@@ -3784,24 +4369,31 @@ msgstr "Huidige albums"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Versie"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Stap 1 - Aanmaken en vullen van de Ampache Database"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Stap 2 - Aanmaken van het ampache.cfg.php bestand"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Stap 3 - Aanmaken eerste gebruiker"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3810,57 +4402,101 @@ msgstr ""
"Deze stap maakt uw initieele administratieve Ampache account aan. Als uw "
"account gemaakt is wordt u naar de login pagina gestuurt"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Maak een Beheer Account aan"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Maak Account aan"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Vereisten"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Deze pagina helpt bij het opzetten van de Ampache Database en bij het "
+"aanmaken van het ampache.cfg.php configuratie bestand. Voordat u verder "
+"gaat, controleer of u voldoet aanonderstaande eisen"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Een MySQL Server met gebruikersnaam en wachtwoord dat een database kan "
+"aanmaken/wijzigen"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Uw webserver leesrechten heeft op het bestand /sql/ampache.sql en het "
+"bestand /config/ampache.cfg.php.dist"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Als u zeker weet dat u voldoet aan bovenstaande eisen vul dan onderstaande "
+"waarden in. Er wordt alleen gevraagd naar de verplichte "
+"configuratievariabelen. Als u later veranderingen wilt aanbrengen in de "
+"ampache installatie kan dit door het bestand /config/amache.cfg.php te "
+"bewerken"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "CONTROLEER"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATUS"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "OMSCHRIJVING"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%s is niet leesbaar voor Ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php Bestaat"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3874,62 +4510,62 @@ msgstr ""
"faalt kunt uu de config file downloaden en moet u deze in de /config "
"directory plaatsen"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Genereer configuratie bestand"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Web Directorie"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Gewenste database naam"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL Hostnaam"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQl Gebruikersnaam"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQL Wachtwoord"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Opgeslagen"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php Bestaat"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php Geconfigureerd?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Configuratie controleren"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Doorgaan naar Stap 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3940,57 +4576,57 @@ msgstr ""
"met rechten om een database aan te mogen maken. Dit kan even duren naar "
"gelang de snelheid van uw computer"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Ampache Database toevoegen"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Gewenste database naam"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "MySQl Administratieve Gebruikersnaam"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "MySQl Administratieve wachtwoord"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Maak Database Gebruiker aan voor nieuwe Database"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Ampache Database Gebruikersnaam"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Ampache Database Gebruikers wachtwoord"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Overschrijve bestaande"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Gebruik bestaande database"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Database aanmaken"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Kies de installatie taal."
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Start configuratie"
@@ -4008,11 +4644,6 @@ msgstr "Laat unieke zien"
msgid "Show All"
msgstr "Alles weergeven"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Datum"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4022,12 +4653,12 @@ msgstr "IP-Adres"
msgid "Manage Radio Stations"
msgstr "Beheer radio stations"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Naam afspeellijst"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4073,48 +4704,48 @@ msgstr "Lokaal afspeel instanties weergeven"
msgid "Edit Instance"
msgstr "Bewerk instantie"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Lokaal afspelen Control"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Mute"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Verminder volume"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Verhoog volume"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "volume"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Herhaal"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Onthoud mij"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Wachtwoord"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Inloggen"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registreer"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Bericht van de dag"
@@ -4155,11 +4786,6 @@ msgstr ""
msgid "Yourself"
msgstr "uren"
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Doorzoek Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Onderwerp"
@@ -4224,6 +4850,7 @@ msgstr "Afspeellijst aanmaken"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Object"
@@ -4237,36 +4864,18 @@ msgstr "Sticky"
msgid "Date Added"
msgstr "Datum toegevoegd"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Album afspelen"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Album afspelen"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Album toevoegen"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Geavanceerde Opties"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Albums"
+msgid "No missing album found"
+msgstr "Geen gedeactiveerde liedjes gevonden"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Dezelfde Artiesten"
@@ -4284,125 +4893,60 @@ msgstr "nog geen waardering"
msgid "%s of 5"
msgstr "%s van 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normalizeer nummers"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Album afspelen"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Speel deze Speellijst"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Alles toevoegen"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Willekeurig toevoegen"
+#, fuzzy
+msgid "Create channel"
+msgstr "Aanmaak datum"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Weet je zeker dat je deze catalogus wilt verwijderen?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Speel deze Speellijst"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Speel deze Speellijst"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Afspeellijst methode"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Naam afspeellijst"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# Liedjes"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Eigenaar"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Geen Speellijst Gevonden"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Afspeellijst liedjes"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Afspeellijst liedjes"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Genre"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s afspeellijst"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Versie"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Deactiveren"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4410,13 +4954,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Beheer standaarden"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Pas toe op alles"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Toegangs niveau"
@@ -4451,6 +4995,20 @@ msgstr "Item aantal"
msgid "Unlimited"
msgstr "Ongelimiteerd"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minuut"
+msgstr[1] "%d minuten"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d uur"
+msgstr[1] "%d uren"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Grootte Limiet"
@@ -4459,22 +5017,78 @@ msgstr "Grootte Limiet"
msgid "Enqueue"
msgstr "Plaats in wachtrij"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Laatst gespeeld"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "seconden geleden"
+msgstr[1] "seconden geleden"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "minuten geleden"
+msgstr[1] "minuten geleden"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "uren geleden"
+msgstr[1] "uren geleden"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "dagen geleden"
+msgstr[1] "dagen geleden"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "weken geleden"
+msgstr[1] "weken geleden"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "maanden geleden"
+msgstr[1] "maanden geleden"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "jaren geleden"
+msgstr[1] "jaren geleden"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "seconden geleden"
+msgstr[1] "seconden geleden"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Geen gedeactiveerde liedjes gevonden"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Geen dezelfde artiesten gevonden"
@@ -4547,7 +5161,7 @@ msgstr "Regel toevoegen"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Geavenceerd zoeken"
@@ -4573,16 +5187,54 @@ msgstr "Opties"
msgid "Add Search Results"
msgstr "Zoek resultaat toevoegen"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Object"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Aanmaak datum"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Laatst gecontroleerd"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Publiek"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Verzenden bij toevoegen"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Alles toevoegen"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Veranderingen opslaan"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Importeer speellijst"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Geen Speellijst Gevonden"
@@ -4600,59 +5252,46 @@ msgstr "Details"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Als"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Niveau"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Taal"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Catalogus naam"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Snel Bijwerken"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "%s liedteksten"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Afspeellijst liedjes"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Lied informatie"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Naam liedje"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Geen gedeactiveerde liedjes gevonden"
@@ -4673,13 +5312,31 @@ msgstr "Catalogus Grootte"
msgid "Catalog Time"
msgstr "Catalogus Tijd"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Meest populaire albums"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Meest populaire artiesten"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Naam liedje"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Weet je zeker dat je deze catalogus wilt verwijderen?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Ampache Debug"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4801,10 +5458,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "PHP Sessie Ondersteuning"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Deze test controleert of de mysql extensies geladen zijn in PHP. Dit is een "
+"vereiste voor Ampache"
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Safe Mode"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4814,33 +5485,33 @@ msgstr ""
"limieten kunnen aanpassen. Dit is niet verplicht maar kan wel ten koste gaan "
"van bepaalde onderdelen van Ampache"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Geheugen limiet"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Maximum executie tijd"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4850,12 +5521,12 @@ msgstr ""
"niet op de goede locatie aanwezig of\n"
"\t niet leesbaar door de webserver."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Configureer democratishe afspeellijst"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4864,12 +5535,12 @@ msgstr ""
"Deze test controleert of alle benodigde instellingen zijn gedaan. En dat het "
"bestand volledig leesbaar is."
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Database karakterset bijgewerkt"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4877,12 +5548,12 @@ msgid ""
msgstr ""
"Hier proberen we de database te benaderen met de instellingen vanuit ampache"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Gewenste database naam"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4891,12 +5562,12 @@ msgstr ""
"Deze test controleert een aantal tabellen om te kijken of de database "
"bestaat en dat we de juiste rechten hebben."
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Web Directorie"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4933,100 +5604,76 @@ msgstr "De validatie sleutel is onjuist"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Gebruiker Tools"
+msgid "User Favorites"
+msgstr "Favorieten"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Aanmaak datum"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Laatst gezien"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Activiteit"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Status"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Gebruiker is online"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Gebruiker is offline"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Huidige afspeellijst"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Aanbevolen artiesten"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Album aanbeveling"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Nummer aanbeveling"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Gebruikers overeenkomst"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Ik ga akkoord"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Gebruikers informatie"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Vereist"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registreer gebruiker"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Volledige naam"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Registratie datum"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Laatste IP-Adres"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "Online"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Favoriete artiesten"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Favoriete albums"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Favoriete liedjes"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5038,22 +5685,19 @@ msgstr "Catalogussen"
msgid "Updating the %s catalog"
msgstr "Bijwerken van catalogus %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d liedje gevonden, bezig met controleren van tag informatie"
+msgstr[1] "%d liedjes gevonden, bezig met controleren van tag informatie"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Geverifieerd"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Speel Willekeurige Liedjes"
-
-#: ../../templates/show_video_row.inc.php:27
-#, fuzzy
-msgid "Play add video"
-msgstr "Speel Willekeurige Liedjes"
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Resolutie"
@@ -5064,7 +5708,7 @@ msgid "No video found"
msgstr "Geen records gevonden"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Verwante artiest"
@@ -5106,51 +5750,46 @@ msgstr "Server configuratie"
msgid "Browse"
msgstr "Bladeren"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Naam liedje"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Nu aan het spelen"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Importeren"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Geavanceerd"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "Nieuwste"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Populair"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Waardering"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Markeer"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Modules"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Uitloggen"
@@ -5203,7 +5842,7 @@ msgstr "Beheer afspeellijst"
msgid "Account"
msgstr "Account"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5214,18 +5853,15 @@ msgstr ""
"3.3.3.5. Volgens de database is jouw versie %s"
"strong>."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "De volgende updates moeten worden uitgevoerd"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Nu Bijwerken!"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Ampache Installatie"
-
#: Database words
msgid "Allow Downloads"
msgstr "Downloads toestaan"
@@ -5326,14 +5962,165 @@ msgstr ""
msgid "Streaming"
msgstr "Streaming"
-#: Database words
-msgid "Interface"
-msgstr "Interface"
-
#: Database words
msgid "System"
msgstr "Systeem"
+#~ msgid "Related Album"
+#~ msgstr "Verwante album"
+
+#~ msgid "Related Genre"
+#~ msgstr "Verwante Genre"
+
+#~ msgid "Pure Random"
+#~ msgstr "Volledig willekeurig"
+
+#~ msgid "Related Tag"
+#~ msgstr "Verwante tag"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Album afspelen"
+
+#~ msgid "Play Album"
+#~ msgstr "Album afspelen"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Album afspelen"
+
+#~ msgid "Add Album"
+#~ msgstr "Album toevoegen"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Album afspelen"
+
+#~ msgid "Flag"
+#~ msgstr "Markeer"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Meest populaire genres"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Meest populaire nummers"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Meest populaire live streams"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Meest populaire tags"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Alle liedjes weergeven van %s"
+
+#, fuzzy
+#~ msgid "Show Albums By %s"
+#~ msgstr "Albums bij %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Afspeellijst"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Speel Alle Liedjes van"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Afspeellijst"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Speel Alle Liedjes van"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Alle Liedjes van %s toevoegen"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Speel willekeurige liedjes van %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Afspeellijst type"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Album afspelen"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Album afspelen"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Album toevoegen"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normalizeer nummers"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Speel deze Speellijst"
+
+#~ msgid "Add Random"
+#~ msgstr "Willekeurig toevoegen"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Speel deze Speellijst"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Afspeellijst liedjes"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Afspeellijst liedjes"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Afspeellijst liedjes"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Gebruiker Tools"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Aanbevolen artiesten"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Album aanbeveling"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Nummer aanbeveling"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Favoriete artiesten"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Favoriete albums"
+
+#~ msgid "Favorite Songs"
+#~ msgstr "Favoriete liedjes"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Speel Willekeurige Liedjes"
+
+#, fuzzy
+#~ msgid "Play add video"
+#~ msgstr "Speel Willekeurige Liedjes"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Markeer"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "De volgende updates moeten worden uitgevoerd"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Ampache Installatie"
+
#~ msgid "Make Sticky"
#~ msgstr "Sticky maken"
@@ -5506,18 +6293,12 @@ msgstr "Systeem"
#~ msgid "Search Disabled Songs"
#~ msgstr "Zoek gedeactiveerde liedjes"
-#~ msgid "Edit Album"
-#~ msgstr "Bewerk album"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Markeer voor opnieuw Taggen"
#~ msgid "Update Album"
#~ msgstr "Album bijwerken"
-#~ msgid "Edit Artist"
-#~ msgstr "Artiest bewerken"
-
#~ msgid "Update Artist"
#~ msgstr "Artiest bewerken"
@@ -5664,18 +6445,6 @@ msgstr "Systeem"
#~ msgid "DB Inserted"
#~ msgstr "DB Toegevoegd"
-#, fuzzy
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "dag"
-#~ msgstr[1] "dagen"
-
-#, fuzzy
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "uur"
-#~ msgstr[1] "uren"
-
#, fuzzy
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr "Kan XMLRPC library niet laden, controleer of XML-RPC aanstaat"
@@ -5695,12 +6464,6 @@ msgstr "Systeem"
#~ msgid "images synchronized: "
#~ msgstr "afbeeldingen gesynchroniseerd: "
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Opschoning catalogus gereed"
-#~ msgstr[1] "Opschoning catalogus gereed"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5764,21 +6527,6 @@ msgstr "Systeem"
#~ "Deze functies zijn niet beschikbaar in de demo. Doordat vorige gebruikers "
#~ "niet gepaste dingen verzonden."
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d liedje gevonden, bezig met controleren van tag informatie"
-#~ msgstr[1] "%d liedjes gevonden, bezig met controleren van tag informatie"
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minuut"
-#~ msgstr[1] "%d minuten"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d uur"
-#~ msgstr[1] "%d uren"
-
#~ msgid "file"
#~ msgstr "bestand"
@@ -5805,18 +6553,6 @@ msgstr "Systeem"
#~ "Er was een probleem met de bestands upload: Het bestand %s is "
#~ "gedeeltelijk geupload."
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Liedjes verwijderd"
-#~ msgstr[1] "Liedjes verwijderd"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Gedeactiveerde liedjes verwerkt"
-#~ msgstr[1] "Gedeactiveerde liedjes verwerkt"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Geen records gevonden"
@@ -5850,12 +6586,6 @@ msgstr "Systeem"
#~ msgid "Keywords"
#~ msgstr "Kernwoorden"
-#~ msgid "Yes"
-#~ msgstr "Ja"
-
-#~ msgid "No"
-#~ msgstr "Nee"
-
#~ msgid "Min Bitrate"
#~ msgstr "Min Bitrate"
@@ -6131,9 +6861,6 @@ msgstr "Systeem"
#~ msgid "Vietnamese"
#~ msgstr "Bestandsnaam"
-#~ msgid "Favorites"
-#~ msgstr "Favorieten"
-
#~ msgid "catalog"
#~ msgstr "catalogus"
@@ -6208,9 +6935,6 @@ msgstr "Systeem"
#~ msgid "The validation key used isn't correct."
#~ msgstr "De validatie key die u gebuikt is niet correct"
-#~ msgid "User activated"
-#~ msgstr "Gebruiker geactiveerd"
-
#~ msgid "album's with art"
#~ msgstr "album's met hoesje"
@@ -6223,18 +6947,12 @@ msgstr "Systeem"
#~ msgid "Global"
#~ msgstr "Globaal"
-#~ msgid "No songs in this playlist."
-#~ msgstr "Geen liedjes in deze speellijst"
-
#~ msgid "New Playlist"
#~ msgstr "Nieuwe Speellijst"
#~ msgid "Show w/o art"
#~ msgstr "Zonder Hoes"
-#~ msgid "Show all"
-#~ msgstr "Alles"
-
#~ msgid "Add a new user"
#~ msgstr "Voeg gebruiker toe"
@@ -6339,25 +7057,12 @@ msgstr "Systeem"
#~ msgid "Show Titles Starting With"
#~ msgstr "Titels beginnend met"
-#~ msgid "Lists"
-#~ msgstr "Lijsten"
-
#~ msgid "Error: Password Does Not Match or Empty"
#~ msgstr "fout: Wachtwoorden zijn Niet Gelijk of Leeg"
-#~ msgid "Playlist Deleted"
-#~ msgstr "Speellijst Verwijderd"
-
-#~ msgid "The Requested Playlist has been deleted"
-#~ msgstr "De gevraagde Speellijst is verwijderd"
-
#~ msgid "Are you sure you want to delete this playlist"
#~ msgstr "Weet je zeker dat je deze speellijst wilt verwijderen?"
-#, fuzzy
-#~ msgid "Confirm Action"
-#~ msgstr "Bevestig Actie"
-
#~ msgid "Remote Selected Tracks"
#~ msgstr "Remote Geslecteerde Nummers"
@@ -6601,9 +7306,6 @@ msgstr "Systeem"
#~ msgid "shuffle"
#~ msgstr "willekeurig"
-#~ msgid "Click to the clear the playlist"
-#~ msgstr "Klik om de Speellijst te legen"
-
#~ msgid "Click to the remove all except the Now Playing"
#~ msgstr "Klik om de speellijst te legen behalve Nu Speelt"
@@ -6616,9 +7318,6 @@ msgstr "Systeem"
#~ msgid "MPD Play Control"
#~ msgstr "MPD Afspeel Bediening"
-#~ msgid "Loop"
-#~ msgstr "Herhaal"
-
#~ msgid "Now Playing :"
#~ msgstr "Nu Speelt :"
diff --git a/locale/pl_PL/LC_MESSAGES/messages.mo b/locale/pl_PL/LC_MESSAGES/messages.mo
index 32e4f797..6d8150b0 100644
Binary files a/locale/pl_PL/LC_MESSAGES/messages.mo and b/locale/pl_PL/LC_MESSAGES/messages.mo differ
diff --git a/locale/pl_PL/LC_MESSAGES/messages.po b/locale/pl_PL/LC_MESSAGES/messages.po
index fd793a7b..ac5f2a37 100644
--- a/locale/pl_PL/LC_MESSAGES/messages.po
+++ b/locale/pl_PL/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# . , 2009.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: Ampache translation\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2010-04-30 10:36+0100\n"
"Last-Translator: Darek Zawadzak \n"
"Language-Team: Polish \n"
@@ -29,7 +29,7 @@ msgstr "Usunięte"
msgid "Your Access List Entry has been removed"
msgstr "Twój wpis listy dostępowej został urunięty"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Usunięcie żądania"
@@ -38,7 +38,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Czy na pewno chcesz trwale usunąć"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Dodany"
@@ -46,7 +46,7 @@ msgstr "Dodany"
msgid "Your new Access Control List(s) have been created"
msgstr "Twoja nowa kontrolna lista dostępowa została utworzona"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Zaktualizowany"
@@ -72,14 +72,31 @@ msgstr "Katalog i połączone rekordy zostały usunięte"
msgid "Catalog Delete"
msgstr "katalog usunięty"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Potwierdzenie żądania usunięcia"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Utwory usunięte"
+msgstr[1] "Utwory usunięte"
+msgstr[2] "Utwory usunięte"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Nie usunięto utworów"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Zablokowane utwory przeprocesowane"
+msgstr[1] "Zablokowane utwory przeprocesowane"
+msgstr[2] "Zablokowane utwory przeprocesowane"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Katalog wyczyszczony"
@@ -222,116 +239,150 @@ msgstr ""
"Twoja baza oraz połączone z nią tabele zostały zaktualizowane by dopasować "
"je do ustawionej strony kodowej"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Błąd. Wymagana nazwa użytkownika"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Błąd. Hasła nie są jednakowe"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Użytkownik zaktualizowany"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "zaktualizowany"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Błąd: Użytkownik już istnieje"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Błąd: niepowodzenie wpisu"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Gość"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Użytkownik"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Admin"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Nowy użytkownik dodany"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Użytkownik odblokowany"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Użytkownik zablokowany"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Błąd"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Nie można zablokować ostatniego administratora"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Użytkownik usunięty"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " została utworzona"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Błąd kasowania"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Nie można usunąć ostatniego administratora"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Czy na pewno chcesz trwale usunąć"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Użytkownik usunięty"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Użytkownik usunięty"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " została utworzona"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Generuj nową konfigurację"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "Żądana lista odtwarzania została skasowana"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Okładki płyt wyczyszczone"
@@ -395,91 +446,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Pokaż wykonawców zaczynających się od"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Zapisz ustawienia katalogów"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Katalog wyczyszczony"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Nazwa katalogu"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "katalog zaktualizowany"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Katalog utworzony"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Zaimportowano listę odtwarzania"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Ustawienia dla %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Czytanie"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Stacja radiowa dodana"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Rozpoczynam wyszukiwanie okładek albumów"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "katalog zaktualizowany"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Czyść statystyki katalogów"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Katalogi"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Dodaj katalog"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importuj listę odtwarzania"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Pobierz okładki"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Port"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Ustawienia dla %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Nieznany"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -597,12 +709,12 @@ msgstr "Błąd: Nie można ustalić rozmiaru dla %s"
msgid "File Moved..."
msgstr "pliki usunięte"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Stworzony przez: %s dla %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Użytkownik aktywowany"
@@ -727,6 +839,18 @@ msgstr "Błąd: Użytkownik już istnieje"
msgid "Error: Unable to copy file to %s"
msgstr "Błąd: Nie można ustalić rozmiaru dla %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -753,11 +877,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "katalog usunięty"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Katalog usunięty"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "Żądana lista odtwarzania została skasowana"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Etykietka"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Katalog utworzony"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "katalog usunięty"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Katalog usunięty"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " została utworzona"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "Żądana lista odtwarzania została skasowana"
@@ -847,41 +1010,46 @@ msgstr "Wygląd strony"
msgid "Stream Access"
msgstr "Dostęp do strumienia"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Nieznany"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Dysk"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Wykonawcy"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Różni"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Teraz odtwarzane"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -932,169 +1100,308 @@ msgstr "lat temu"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Nie podano Użytkownika / Hasła"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Błąd połączenia - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Dodaj do listy odtwarzania"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Niewłaściwe żądanie"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Niewłaściwy lub nie wskazany obiekt"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Błąd: nie można otworzyć"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Aktualizuj wszystkie"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Serwer"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Zapisz zmiany"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Port"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Pobierz"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Wykonawca i tytuł"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Edytuj"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Usuń"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Utworów"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Albumy"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Zarządzaj użytkownikami"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Stacje radiowe"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Listy odtwarzania"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Lista odtwarzania utworów"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Aktualna lista odtwarzania"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Importuj listę odtwarzania"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Katalogi"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Nagrania Shoutbox"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Video"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "Demokratyczna lista odtwarzania"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Powiązany album"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Obiekt"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Zapisz zmiany"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Więcej"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Nigdy"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dzień"
+msgstr[1] "dni"
+msgstr[2] "dni"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "godzina"
+msgstr[1] "godziny"
+msgstr[2] "godzin"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Aktualizacja nie wymagana"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Czyszczenie katalogu wykonane"
+msgstr[1] "Czyszczenie katalogu wykonane"
+msgstr[2] "Czyszczenie katalogu wykonane"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Czyszczenie katalogu wykonane"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "nie można stworzyć nowego konta"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Zapisz zmiany"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Nieznany"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Zatrzymane"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1105,34 +1412,23 @@ msgid "Primary"
msgstr "Pierwszy"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Manager zawartości"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Manager katalogów"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Zatrzymane"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Wstrzymane"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Nieznany"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1165,22 +1461,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Dodaj katalog"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Powiązany album"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Powiązany gatunek"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Powiązany artysta"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Całkiem losowy"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1196,7 +1476,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1222,8 +1501,8 @@ msgstr ""
"\n"
"Dziękuję za rejestrację\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1231,6 +1510,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"Zarejestrował się nowy użytkownik\n"
@@ -1313,107 +1593,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Tytuł"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Wykonawca"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Komentarz"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Znacznik"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Nazwa pliku"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Rok"
@@ -1421,40 +1701,43 @@ msgstr "Rok"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Ocena"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Odtwarzane"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Strumień binarny"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Odtwarzane"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1462,155 +1745,142 @@ msgstr "Katalog"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Listy odtwarzania"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Nazwa listy odtwarzania"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Importuj listę odtwarzania"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Nazwa"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Odtwarzaj"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Dodaj"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Post"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "Pokaż teksty"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Aktualizacja nie wymagana"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Za mało danych"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Użytkownik aktywowany"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Nieznany"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Akceptuję"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Usuń"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Dodaj do listy odtwarzania"
@@ -1693,136 +1963,141 @@ msgstr "Zaktualizowano stronę kodową bazy"
msgid "Administrative user creation failed: %s"
msgstr "Użytkownik aktywowany"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "Błąd. Niewłaściwy użytkownik lub hasło, proszę spróbować ponownie"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Użytkownik zablokowany, skontaktuj się z administratorem"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Użytkownik jest już zalogowany"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "nie można stworzyć nowego konta"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Odblokuj"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Zablokuj"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Żaden"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Strumień"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Demokratyczny"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Odtwarzanie lokalne"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "Odtwarzacz XSPF"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Proste M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Wyłączone"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Manager"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Wyślij przy dodaniu"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Wyślij i wyczyść przy dodaniu"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Wyczyść przy wysłaniu"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Domyślnie"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Zawsze"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Kodowanie"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1854,7 +2129,8 @@ msgstr "Szaleństwo"
msgid "Off the Charts!"
msgstr "Won z listy"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Dom"
@@ -1870,14 +2146,14 @@ msgstr "Lokalne odtwarzanie"
msgid "Random Play"
msgstr "Losowe odtwarzanie"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Szukaj"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Opcje"
@@ -1911,7 +2187,7 @@ msgid "Browse Music"
msgstr "Przeglądaj muzykę"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statystyki"
@@ -1919,31 +2195,14 @@ msgstr "Statystyki"
msgid "Add New"
msgstr "Dodaj nowy"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Włącz"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Wyłącz"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "Błąd. Niewłaściwy użytkownik lub hasło, proszę spróbować ponownie"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Użytkownik zablokowany, skontaktuj się z administratorem"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Użytkownik jest już zalogowany"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "nie można stworzyć nowego konta"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1970,11 +2229,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2043,11 +2304,11 @@ msgstr "E-mail"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Hasło"
@@ -2114,48 +2375,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Błąd: Nie można zmienić katalogu"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Błąd: Nie można ustalić rozmiaru dla %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "%s nie jest odczytywalny przez Ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "%s niepasuje do strony kodowej strony"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Główny katalog nie do odczytu, zatrzymuję czyszczenie"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2170,13 +2431,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Użytkownik"
@@ -2296,20 +2557,20 @@ msgstr "Nazwa Hosta"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Port"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Losowo"
@@ -2326,14 +2587,48 @@ msgstr " została utworzona"
msgid "Playlist Imported"
msgstr "Zaimportowano listę odtwarzania"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "Lista odtwarzania nie została zaimportowana"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Puste listy odtwarzania usunięte"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Rejestracja zakończona"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Serwer"
@@ -2350,36 +2645,36 @@ msgstr "Twoje konto zostało zaktualizowne"
msgid "Radio Station Added"
msgstr "Stacja radiowa dodana"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Błąd: Captcha wymagana"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Błąd: Captcha zawiodła"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Musisz zaakceptować porozumienie"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Nie podałeś nazwy użytkownika"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Wypełnij proszę swoja pełną nazwę (Imię Nazwisko)"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Niewłaściwe żądanie"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Musisz podać hasło"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Twoje hasła nie są jednakowe"
@@ -2398,6 +2693,11 @@ msgstr "Wyszukane"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2406,43 +2706,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Obiekt"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Użytkownik usunięty"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Użytkownik usunięty"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " została utworzona"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Wybrany obiekt jest niewłaściwy"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filtry"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Zaczyna się od"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Minimum zliczane"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Ocenione"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Nie odtwarzane"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Wszystkie listy odtwarzania"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Nazwa utworu"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2451,93 +2786,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Aktualizacja Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Debuger Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Zapytania:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "hity kesza:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Anuluj"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Wyloguj"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Ulubione utwory"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Błąd: Nieaktualny plik konfiguracyjny"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Generuj nową konfigurację"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Instalacja Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Wymagania"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Strona ta zawiera instalację bazy Ampache oraz tworzenie pliku ampache.cfg."
-"php. Zanim rozpoczniesz upewnij się czy masz następujące rekwizyty"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"Serwer MySQL z użytkownikiem i hasłem który może tworzyć/modyfikować bazy "
-"danych"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Twój serwer www ma dostęp do odczytu plików /sql/ampache.sql oraz /config/"
-"ampache.cfg.php.dist"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Skoro się upewniłeś że spełniasz powyższe wymagania, wypełnij poniższe pola. "
-"oproszony będziesz jedynie o wymagane wartości konfiguracyjne. Jeśli "
-"chciałbyś później wprowadzić zmiany w instalacji Ampache po prostu edytuj "
-"plik /config/ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Poprzedni"
@@ -2547,7 +2858,7 @@ msgstr "Poprzedni"
msgid "Next"
msgstr "Następny"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Limit rozmiaru"
@@ -2557,27 +2868,28 @@ msgid "Add to Playlist"
msgstr "Dodaj do listy odtwarzania"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Dodaj do nowej listy odtwarzania"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Pobierz batch"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Czyść listę odtwarzania"
@@ -2585,29 +2897,27 @@ msgstr "Czyść listę odtwarzania"
msgid "Add Dynamic Items"
msgstr "Dodaj dynamiczne elementy"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Losowo"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Powiązany artysta"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Dodaj losowo z albumu"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Połączony znacznik"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Losowe odtwarzanie"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Usuń"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2640,15 +2950,15 @@ msgstr "Zaawansowane dodawanie"
msgid "Access Control Entries"
msgstr "Wpisy kontroli dostępu"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Początek adresu"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Koniec adresu"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2657,88 +2967,82 @@ msgstr "Koniec adresu"
msgid "Level"
msgstr "Poziom"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Typ"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Akcja"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Edytuj"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-mail"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nowe hasło"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Potwierdź hasło"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Czyść statystyki"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Aktualizuj konto"
@@ -2860,13 +3164,80 @@ msgid "Gather Album Art"
msgstr "Pobierz okładkę albumu"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Stwórz listę odtwarzania z plików m3u"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Dodaj katalog"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Data utworzenia"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Dostęp do strumienia"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Opis"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Wygląd"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Szukaj rodzaju"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Stwórz"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2879,16 +3250,16 @@ msgstr "Strona domowa"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "Strumień URL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Kodek"
@@ -2897,11 +3268,6 @@ msgstr "Kodek"
msgid "Create a new playlist"
msgstr "Stwórz nową listę odtwarzania"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Stwórz"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2926,6 +3292,38 @@ msgstr "Znalezione"
msgid "Reading"
msgstr "Czytanie"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Data utworzenia"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Obiekt"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Zezwalaj na strumienie"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Zezwól na pobieranie"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Post do Shoutbox-a"
@@ -2952,17 +3350,22 @@ msgstr "Dodaję nowego użytkownika"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Pełna nazwa"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Poziom dostępu użytkownika"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Dodaj użytkownika"
@@ -2982,259 +3385,346 @@ msgid "Invalid"
msgstr "Niewłaściwy"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Wybierz"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Akcje"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Odtwarzaj album"
+msgid "Play last"
+msgstr "Listy odtwarzania"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Odtwarzaj album"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Odtwarzaj album"
+msgid "Add to temporary playlist"
+msgstr "Dodaj do nowej listy odtwarzania"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Dodaj album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Dodaj losowo z albumu"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Ustaw numery utworów"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Czy na pewno chcesz usunąć ten katalog?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Czyść okładkę albumu"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Znajdź okładkę albumu"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Czy na pewno chcesz usunąć ten katalog?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Aktualizuj ze znaczników"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Pobierz"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Odtwarzaj album"
+msgid "Save Tracks Order"
+msgstr "Ustaw numery utworów"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Okładka albumu"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Czy na pewno chcesz usunąć ten katalog?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Aktualizuj ze znaczników"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Edytuj album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Dodaj do nowej listy odtwarzania"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Okładka"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "Znaczniki"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Flaga"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Nie znaleziono zablokowanych utworów"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Najpopularniejsi wykonawcy"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Najpopularniejsze albumy"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Najpopularniejsze gatunki"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Najpopularniejsze utwory"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Najpopularniejsze strumienie"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Najpopularniejsze znaczniki"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Ładuję..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Pokaż wszystkie utwory %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Albumy %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Listy odtwarzania"
+msgid "Show all"
+msgstr "Pokaż wszystko"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Dodaj wszystkie utwory %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Albumy %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Odtwarzaj album"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Listy odtwarzania"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Dodaj wszystkie utwory %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Dodaj do nowej listy odtwarzania"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Dodaj wszystkie utwory %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Dodaj losowo utwory %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Wykonawca i tytuł"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Edytuj wykonawcę"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Pokaż okładki"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Albumy"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Podobni wykonawcy"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Wykonawca i tytuł"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Czas"
@@ -3248,6 +3738,44 @@ msgstr "Nie znaleziono podobnych wykonawców"
msgid "Click to close window"
msgstr "Kliknij by zamknąć okno"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Tak"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Nie"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Gatunek"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Start"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Nie znaleziono podobnych wykonawców"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Weryfikuj"
@@ -3265,67 +3793,82 @@ msgstr "Czyść"
msgid "Update"
msgstr "Aktualizuj"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Ostatnia weryfikacja"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Ostatnie dodanie"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "Ostatnie czyszczenie"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Nie znaleziono katalogów"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Opis"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Wersja"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Aktywuj"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Nie znaleziono rekordów"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Zaczyna się od"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Strumień URL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Status"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Nie znaleziono katalogów"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3336,7 +3879,45 @@ msgstr "Czyszczenie katalogu %s"
msgid "Checking"
msgstr "Sprawdzanie"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Data"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Akcja"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Nie znaleziono zablokowanych utworów"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Ostatnio widziany"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Nie znaleziono podobnych wykonawców"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Kontynuuj"
@@ -3376,87 +3957,86 @@ msgstr "Ustaw stronę kodową bazy danych"
msgid "PHP Settings"
msgstr "Ustawienia PHP"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Ustawienie"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Wartość"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Limit pamięci"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Maksymalny czas wykonywania"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Nadrzędny czas wykonywania"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Niepowodzenie"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Sukces"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Tryb bezpieczeństwa"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Wsparcie Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Wsparcie GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Wsparcie ICONV"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Wsparcie Gettext"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Aktualna konfiguracja"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Opcje"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Aktualizacja Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Wersja"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Instalacja Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3478,31 +4058,31 @@ msgstr "Odtwarzaj demokratyczne listy odtwarzania"
msgid "Playing from base Playlist"
msgstr "Odtwarzam z podstawowej listy odtwarzania"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Głosy"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Usuń głos"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Dodaj głos"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Dostęp zabroniony"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "To zdarzenie zostało zalogowane"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3510,12 +4090,12 @@ msgid ""
msgstr ""
"Zostałeś przekierowany na tę stronę ponieważ nie masz dostępu do tej funkcji."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr "Jeśli uważasz że to pomyłka skontaktuj się z administratorem Ampache."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3524,8 +4104,8 @@ msgstr ""
"Zostałeś przekierowany na tę stronę ponieważ próbowałeś uzyskać dostęp do "
"funkcji zablokowanej w wersji demo."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Dodatkowy czas"
@@ -3554,15 +4134,16 @@ msgstr "Zduplikowane utwory"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Utwór"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Długość"
@@ -3659,12 +4240,9 @@ msgid "Created by: %s for %s"
msgstr "Stworzony przez: %s dla %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Ścieżka"
@@ -3676,27 +4254,27 @@ msgstr "Edytuję istniejącego użytkownika"
msgid "User Properties"
msgstr "Opcje użytkownika"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "Inne opcje"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Stan początkowy konfiguracji"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Flash"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Zapobiegnij nadpisaniu stanu początkowego"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Dotknie to wszytskich kont nie-Admin"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Aktualizuj użytkownika"
@@ -3742,23 +4320,35 @@ msgstr "Pobierz okładki"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Informacja"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importuję listę odtwarzania z pliku"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Typ listy odtwarzania"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importuj listę odtwarzania"
@@ -3771,24 +4361,31 @@ msgstr "Albumy chwili"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Wersja"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Krok 1 - Tworzenie i zapisywanie bazy danych Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Krok 2 - Tworzenie pliku ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Krok 3 - Tworzenie konta"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3797,57 +4394,99 @@ msgstr ""
"Ten krok tworzy Twoje konto admina Ampache. Po utworzeniu konta admina "
"zostaniesz przekierowany na stronę logowania"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Twórz konto Admina"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Twórz konto"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Wymagania"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Strona ta zawiera instalację bazy Ampache oraz tworzenie pliku ampache.cfg."
+"php. Zanim rozpoczniesz upewnij się czy masz następujące rekwizyty"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"Serwer MySQL z użytkownikiem i hasłem który może tworzyć/modyfikować bazy "
+"danych"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Twój serwer www ma dostęp do odczytu plików /sql/ampache.sql oraz /config/"
+"ampache.cfg.php.dist"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Skoro się upewniłeś że spełniasz powyższe wymagania, wypełnij poniższe pola. "
+"oproszony będziesz jedynie o wymagane wartości konfiguracyjne. Jeśli "
+"chciałbyś później wprowadzić zmiany w instalacji Ampache po prostu edytuj "
+"plik /config/ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "SPRAWDŹ"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATUS"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "OPIS"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%s nie jest odczytywalny przez Ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php istnieje "
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3860,62 +4499,62 @@ msgstr ""
"Zostaniesz poproszony o pobranie pliku konfiguracyjnego. Umieść proszę "
"pobrany plik w /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Generuj plik konfiguracyjny"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Ścieżka sieciowa"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Pożądana nazwa bazy danych"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "Host MySQL"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "Nazwa użytkownika MySQL"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "Hasło użytkownika MySQL"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Odczyt/Zapis"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php istnieje "
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php skonfigurowany?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Sprawdź konfigurację"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Idź do kroku 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3926,57 +4565,57 @@ msgstr ""
"uprawnieniami do tworzenia bazy. Ten krok może chwilę potrwać w zależości od "
"prędkości Twojego komputera"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Zapisz bazę Ampache"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Pożądana nazwa bazy danych"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Nazwa użytkownika administracyjnego MySQL"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Hasło użytkownika administracyjnego MySQL"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Stwórz użytkownika bazodanowego dla nowej bazy"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Nazwa użytkownika bazodanowego Ampache"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Hasło użytkownika bazodanowego Ampache"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Napisz istniejące"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Użyj istniejącą bazę danych"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Zapisz bazę danych"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Wybierz język instalacji"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Rozpocznij konfigurację"
@@ -3994,11 +4633,6 @@ msgstr "Pokaż unikalne"
msgid "Show All"
msgstr "Pokaż wszystko"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Data"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4008,12 +4642,12 @@ msgstr "Adres IP"
msgid "Manage Radio Stations"
msgstr "Zarządzaj stacjami radiowymi"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Nazwa listy odtwarzania"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4059,48 +4693,48 @@ msgstr "Pokaż instancje lokalnego odtwarzania"
msgid "Edit Instance"
msgstr "Edytuj instancję"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Kontrola lokalnego odtwarzania"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Wycisz"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Przycisz"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Podgłośnij"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Głos"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Powtórz"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Pamiętaj mnie"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Hasło"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Zaloguj"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Rejestruj"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Wiadomość dnia"
@@ -4139,11 +4773,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Debuger Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Temat"
@@ -4208,6 +4837,7 @@ msgstr "Twórz nową listę odtwarzania"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Obiekt"
@@ -4221,36 +4851,18 @@ msgstr "Przylepny"
msgid "Date Added"
msgstr "Data dodana"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Odtwarzaj album"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Odtwarzaj album"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Dodaj album"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Zaawansowane opcje"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Albumy"
+msgid "No missing album found"
+msgstr "Nie znaleziono zablokowanych utworów"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Podobni wykonawcy"
@@ -4268,125 +4880,60 @@ msgstr "jeszcze nie ocenione"
msgid "%s of 5"
msgstr "%s z 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normalizuj utwory"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Odtwarzaj album"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Listy odtwarzania"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Dodaj wszystko"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Dodaj losowo"
+#, fuzzy
+msgid "Create channel"
+msgstr "Data utworzenia"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Czy na pewno chcesz usunąć ten katalog?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Listy odtwarzania"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Listy odtwarzania"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Metoda listy odtwarzania"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Nazwa listy odtwarzania"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# Utworów"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Właściciel"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Nie znaleziono podobnych wykonawców"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Lista odtwarzania utworów"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Lista odtwarzania utworów"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Gatunek"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s Lista odtwarzania"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Wersja"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Deaktywuj"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4394,13 +4941,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Opcje administracyjne"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Zastosuj do wszystkich"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Poziom dostępu"
@@ -4435,6 +4982,22 @@ msgstr "Obiektów zliczonych"
msgid "Unlimited"
msgstr "Nieograniczony"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minuta"
+msgstr[1] "%d minuty"
+msgstr[2] "%d minut"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d godzina"
+msgstr[1] "%d godziny"
+msgstr[2] "%d godzin"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Limit rozmiaru"
@@ -4443,22 +5006,86 @@ msgstr "Limit rozmiaru"
msgid "Enqueue"
msgstr "Kolejku"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Ostatnio odtwarzane"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "sekund temu"
+msgstr[1] "sekund temu"
+msgstr[2] "sekund temu"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "minut temu"
+msgstr[1] "minut temu"
+msgstr[2] "minut temu"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "godzin temu"
+msgstr[1] "godzin temu"
+msgstr[2] "godzin temu"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "dni temu"
+msgstr[1] "dni temu"
+msgstr[2] "dni temu"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "tygodni temu"
+msgstr[1] "tygodni temu"
+msgstr[2] "tygodni temu"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "miesięcy temu"
+msgstr[1] "miesięcy temu"
+msgstr[2] "miesięcy temu"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "lat temu"
+msgstr[1] "lat temu"
+msgstr[2] "lat temu"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "sekund temu"
+msgstr[1] "sekund temu"
+msgstr[2] "sekund temu"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Nie znaleziono zablokowanych utworów"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Nie znaleziono podobnych wykonawców"
@@ -4531,7 +5158,7 @@ msgstr "Dodaj regółę"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Wyszukiwanie zaawansowane"
@@ -4557,16 +5184,54 @@ msgstr "Opcje"
msgid "Add Search Results"
msgstr "Dodaj wyniki wyszukiwania"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Obiekt"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Data utworzenia"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Ostatnia weryfikacja"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Publiczny"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Wyślij przy dodaniu"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Dodaj wszystko"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Zapisz zmiany"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Importuj listę odtwarzania"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Nie znaleziono podobnych wykonawców"
@@ -4584,59 +5249,46 @@ msgstr "Detale"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Jak"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Poziom"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Język"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Nazwa katalogu"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Flagi zaktualizowane"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "%s Teksty"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Lista odtwarzania utworów"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Informacja o utworze"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Nazwa utworu"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Nie znaleziono zablokowanych utworów"
@@ -4657,13 +5309,31 @@ msgstr "Rozmiar katalogu"
msgid "Catalog Time"
msgstr "Czas katalogu"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Najpopularniejsze albumy"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Najpopularniejsi wykonawcy"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Nazwa utworu"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Czy na pewno chcesz usunąć ten katalog?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Debuger Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4784,10 +5454,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Wsparcie sesji PHP"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Ten test sprawdza czy masz załadowane rozszerzenie mysql dla PHP. Jest to "
+"konieczne dla Ampache do pracy."
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Tryb bezpieczeństwa"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4798,33 +5482,33 @@ msgstr ""
"tych możliwości niektóre funcjonalności Ampache mogą nie funkcjonować "
"właściwie"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Limit pamięci"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Maksymalny czas wykonywania"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4834,12 +5518,12 @@ msgstr ""
"ampache.cfg.php jest w niewłaściwej lokalizacji albo\n"
"\tit jest obecnie nie do odczytu przez Twój serwer www."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Konfiguruj demokratyczne listy odtwarzania"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4848,12 +5532,12 @@ msgstr ""
"Ten test sprawdza czy masz ustawione wszystkie wymagane zmienne "
"konfiguracyjne oraz czy możemy w całości parsować Twój plik konfiguracyjny"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Zaktualizowano stronę kodową bazy"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4862,12 +5546,12 @@ msgstr ""
"Nastąpi próba podłączenia do Twojej bazy danych z wykorzystaniem wartości z "
"ampache.cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Pożądana nazwa bazy danych"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4876,12 +5560,12 @@ msgstr ""
"Nastąpi test kilku kluczowych tabel w celu upewnienia się czy masz poprawnie "
"dodaną bazę danych Ampache i czy użytkownik ma do niej dostęp"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Ścieżka sieciowa"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4919,100 +5603,76 @@ msgstr "Uzyty klucz sprawdzania nie jest właściwy"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Narzędzia użytkownika"
+msgid "User Favorites"
+msgstr "Opcje użytkownika"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Data utworzenia"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Ostatnio widziany"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Aktywność"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Status"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Użytkownik jest teraz podłączony"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Użytkownik jest teraz odłączony"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Aktywna lista odtwarzania"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Rekomendowani wykonawcy"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Rekomendowane albumy"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Rekomendowane utwory"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Porozumienie użytkownika"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Akceptuję"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Informacja o użytkowniku"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Wymagane"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Rejestruj użytkownika"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Pełna nazwa"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Data rejestracji"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Ostatnie IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "On-line"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Ulubieni wykonawcy"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "ulubione albumy"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Ulubione utwory"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5024,21 +5684,20 @@ msgstr "Katalogi"
msgid "Updating the %s catalog"
msgstr "Aktualizuję katalog %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d element znaleziony przeszukując informacje znaczników"
+msgstr[1] "%d elementy znalezione przeszukując informacje znaczników"
+msgstr[2] "%d elementów znalezionych przeszukując informacje znaczników"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Zweryfikowany"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Lista odtwarzania utworów"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Rozdzielczość"
@@ -5049,7 +5708,7 @@ msgid "No video found"
msgstr "Nie znaleziono rekordów"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Powiązany artysta"
@@ -5091,51 +5750,46 @@ msgstr "Konfiguracja serwera"
msgid "Browse"
msgstr "Przeglądaj"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Nazwa utworu"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Obecnie odtwarzane"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Import"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Zaawansowane"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "Najnowsze"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Popularne"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Ocenione"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Flaga"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Moduły"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Wyloguj"
@@ -5188,7 +5842,7 @@ msgstr "Zarządzaj listą odtwarzania"
msgid "Account"
msgstr "Konto"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5199,18 +5853,15 @@ msgstr ""
"od3.3.3.5. Porównując, obecna wersja Twojej bazy to"
"%s."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "muszą zostać wykonane wskazane aktualizacje"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Aktualizuj teraz!"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Instalacja Ampache"
-
#: Database words
msgid "Allow Downloads"
msgstr "Zezwól na pobieranie"
@@ -5311,14 +5962,154 @@ msgstr "Użytkownik do utworu"
msgid "Streaming"
msgstr "Strumienie"
-#: Database words
-msgid "Interface"
-msgstr "Wygląd"
-
#: Database words
msgid "System"
msgstr "System"
+#~ msgid "Related Album"
+#~ msgstr "Powiązany album"
+
+#~ msgid "Related Genre"
+#~ msgstr "Powiązany gatunek"
+
+#~ msgid "Pure Random"
+#~ msgstr "Całkiem losowy"
+
+#~ msgid "Related Tag"
+#~ msgstr "Połączony znacznik"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Odtwarzaj album"
+
+#~ msgid "Play Album"
+#~ msgstr "Odtwarzaj album"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Odtwarzaj album"
+
+#~ msgid "Add Album"
+#~ msgstr "Dodaj album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Odtwarzaj album"
+
+#~ msgid "Flag"
+#~ msgstr "Flaga"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Najpopularniejsze gatunki"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Najpopularniejsze utwory"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Najpopularniejsze strumienie"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Najpopularniejsze znaczniki"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Pokaż wszystkie utwory %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Listy odtwarzania"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Dodaj wszystkie utwory %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Listy odtwarzania"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Dodaj wszystkie utwory %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Dodaj wszystkie utwory %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Dodaj losowo utwory %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Typ listy odtwarzania"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Odtwarzaj album"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Odtwarzaj album"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Dodaj album"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normalizuj utwory"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Listy odtwarzania"
+
+#~ msgid "Add Random"
+#~ msgstr "Dodaj losowo"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Listy odtwarzania"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Lista odtwarzania utworów"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Lista odtwarzania utworów"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Lista odtwarzania utworów"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Narzędzia użytkownika"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Rekomendowani wykonawcy"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Rekomendowane albumy"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Rekomendowane utwory"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Ulubieni wykonawcy"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "ulubione albumy"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Lista odtwarzania utworów"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Flaga"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "muszą zostać wykonane wskazane aktualizacje"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Instalacja Ampache"
+
#~ msgid "Make Sticky"
#~ msgstr "Zrób przylepny"
@@ -5493,18 +6284,12 @@ msgstr "System"
#~ msgid "Search Disabled Songs"
#~ msgstr "Szukaj zablokowanych utworów"
-#~ msgid "Edit Album"
-#~ msgstr "Edytuj album"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Flaga dla ponownego znakowania"
#~ msgid "Update Album"
#~ msgstr "Aktualizuj album"
-#~ msgid "Edit Artist"
-#~ msgstr "Edytuj wykonawcę"
-
#~ msgid "Update Artist"
#~ msgstr "Aktualizuj wykonawcę"
@@ -5647,18 +6432,6 @@ msgstr "System"
#~ msgid "DB Inserted"
#~ msgstr "DB Dołożona"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "dzień"
-#~ msgstr[1] "dni"
-#~ msgstr[2] "dni"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "godzina"
-#~ msgstr[1] "godziny"
-#~ msgstr[2] "godzin"
-
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
#~ "Nie można załadować biblioteki XMLRPC, upewnij się, że XML-RPC jest "
@@ -5679,13 +6452,6 @@ msgstr "System"
#~ msgid "images synchronized: "
#~ msgstr "obrazów zsynchronizowanych: "
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Czyszczenie katalogu wykonane"
-#~ msgstr[1] "Czyszczenie katalogu wykonane"
-#~ msgstr[2] "Czyszczenie katalogu wykonane"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5745,24 +6511,6 @@ msgstr "System"
#~ "wykorzystywali te funkcjonalności do przesyłania nieodpowiednich "
#~ "materiałów"
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d element znaleziony przeszukując informacje znaczników"
-#~ msgstr[1] "%d elementy znalezione przeszukując informacje znaczników"
-#~ msgstr[2] "%d elementów znalezionych przeszukując informacje znaczników"
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minuta"
-#~ msgstr[1] "%d minuty"
-#~ msgstr[2] "%d minut"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d godzina"
-#~ msgstr[1] "%d godziny"
-#~ msgstr[2] "%d godzin"
-
#~ msgid "file"
#~ msgstr "plik"
@@ -5790,20 +6538,6 @@ msgstr "System"
#~ "Podczas ładowania pliku wystąpił problem: Plik %s został załadowany tylko "
#~ "częściowo"
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Utwory usunięte"
-#~ msgstr[1] "Utwory usunięte"
-#~ msgstr[2] "Utwory usunięte"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Zablokowane utwory przeprocesowane"
-#~ msgstr[1] "Zablokowane utwory przeprocesowane"
-#~ msgstr[2] "Zablokowane utwory przeprocesowane"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Nie znaleziono rekordów"
@@ -5834,12 +6568,6 @@ msgstr "System"
#~ msgid "Keywords"
#~ msgstr "Słowa kluczowe"
-#~ msgid "Yes"
-#~ msgstr "Tak"
-
-#~ msgid "No"
-#~ msgstr "Nie"
-
#~ msgid "Min Bitrate"
#~ msgstr "Min strumień binarny"
diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo
index 4ec31eff..d8213448 100644
Binary files a/locale/ru_RU/LC_MESSAGES/messages.mo and b/locale/ru_RU/LC_MESSAGES/messages.mo differ
diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po
index fb0d8c71..e53a981d 100644
--- a/locale/ru_RU/LC_MESSAGES/messages.po
+++ b/locale/ru_RU/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2007 Ampache.org
# This file is distributed under the same license as the Ampache package.
# Alexey Illarionov , 2007.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: ampache\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2007-02-05 21:58-0000\n"
"Last-Translator: Alexey Illarionov \n"
"Language-Team: Russian \n"
@@ -26,7 +26,7 @@ msgstr "Удален"
msgid "Your Access List Entry has been removed"
msgstr "Запись списка доступа была удалена"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Запрос на удаление"
@@ -36,7 +36,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Вы уверены, что хотите навсегда удалить"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Добавлен"
@@ -44,7 +44,7 @@ msgstr "Добавлен"
msgid "Your new Access Control List(s) have been created"
msgstr "Создан новый список доступа"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Обновлено"
@@ -70,14 +70,31 @@ msgstr "Каталог и все связанные записи удалены"
msgid "Catalog Delete"
msgstr "Удаление каталога"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Запрос на удаление"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Композиция удалена"
+msgstr[1] "Композиции удалено"
+msgstr[2] "Композиций удалено"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "не удалено ни одной композиции"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Отключенная композиция обработана"
+msgstr[1] "Отключенные композиции обработаны"
+msgstr[2] "Отключенных композиции обработано"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Каталог очищен"
@@ -220,116 +237,150 @@ msgstr ""
"База данных и сопряженные таблицы были обновлены в соответствии с текущей "
"настройкой кодировки символов"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Ошибка: требуется имя пользователя"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Ошибка: Пароль не подходит"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Пользователь Обновлен"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "обновлен"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Ошибка: Пользователь с таким именем уже существует"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Ошибка: Добавление закончилось неудачей"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Гость"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Пользователь"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Администратор"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Пользователь добавлен"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Пользователь включен"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Пользователь отключен"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Ошибка"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Нельзя отключить последнего администратора"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Пользователь удален"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " был создан"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Ошибка удаления"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Нельзя удалить последнего пользователя - администратора"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Вы уверены, что хотите навсегда удалить"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Пользователь удален"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Пользователь удален"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " был создан"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Создать новый файл настроек"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "Список композиций был удален"
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Обложка очищена"
@@ -392,91 +443,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Показать исполнителей начинающихся с "
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Сохранить настройку каталога"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Каталог очищен"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Каталог"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Каталог обновлен"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Каталог создан"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Список воспроизведения добавлен"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Настройка для %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Просмотр"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Радиостанция добавлена"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Поиск альбомных обложек"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Каталог обновлен"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Очистить статистику каталогов"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Каталоги"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Добавить"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Импортировать список композиций"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Собрать обложки"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Порт"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Настройка для %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Неизв. (Сирота)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -593,12 +705,12 @@ msgstr "Ошибка: не удалось определить размер фа
msgid "File Moved..."
msgstr ""
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Создал %s для %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Пользователь активирован"
@@ -723,6 +835,18 @@ msgstr "Ошибка: Пользователь с таким именем уже
msgid "Error: Unable to copy file to %s"
msgstr "Ошибка: не удалось определить размер файла %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -749,11 +873,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Удаление каталога"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Каталог Удален"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "Список композиций был удален"
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Облако тегов"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Каталог создан"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Удаление каталога"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Каталог Удален"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " был создан"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "Список композиций был удален"
@@ -843,41 +1006,46 @@ msgstr "Вэб интерфейс"
msgid "Stream Access"
msgstr "Потоковый доступ"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Неизв. (Сирота)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Диск"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Исполнители"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Различные"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Играет"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -928,169 +1096,308 @@ msgstr "лет назад"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Не указаны пользователь или пароль"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Error Invalid Handshake - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Добавить в список композиций"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Неверный запрос"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Media Object Invalid or Not Specified"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Ошибка: не удалось открыть "
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Обновить все"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Сервер"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Сохранить изменения"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Порт"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Скачать"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Исполнитель и название"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Изменить"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Удалить"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Композиции"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Альбомы"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Управление пользователями"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Радиостанции"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Списки композиций"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Композиции списка"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Текущий список композиций"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Импортировать список композиций"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Каталоги"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Записи онлайн-чата"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Видеоклипы"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "Публичный список композиций"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Схожий альбом"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Объект"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Сохранить изменения"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Еще"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Никогда"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "день"
+msgstr[1] "дня"
+msgstr[2] "дней"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "час"
+msgstr[1] "часа"
+msgstr[2] "часов"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Обновление не требуется"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Очистка каталога завершена. %d файл удален"
+msgstr[1] "Очистка каталога завершена. %d файла удалено"
+msgstr[2] "Очистка каталога завершена. %d файлов удалено"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Очистка каталога завершена. %d файл удален"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Не удалось создать новый аккаунт"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Сохранить изменения"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Неизвестно"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Остановлено"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1101,34 +1408,23 @@ msgid "Primary"
msgstr "Основной"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Менеджер содержания"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Менеджер каталогов"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Остановлено"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Остановлен"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Неизвестно"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1161,22 +1457,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Добавить каталог"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Схожий альбом"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Схожий жанр"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Схожий исполнитель"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Абсолютно случайно"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1192,7 +1472,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1217,8 +1496,8 @@ msgstr ""
"\n"
"Спасибо за регистрацию \n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1226,6 +1505,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"Зарегистрирован новый пользователь\n"
@@ -1308,107 +1588,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Композиция"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Альбом"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Исполнитель"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Комментарий"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Тег"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Файл"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "Год"
@@ -1416,40 +1696,43 @@ msgstr "Год"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Рейтинг"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Проигранный"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Битрейд"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Проигранный"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1457,155 +1740,142 @@ msgstr "Каталог"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Список композиций"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Список композиций"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Импортировать список композиций"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Имя"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Воспроизвести"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Добавить"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Добавить комментарий"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "Показывать тексты песен"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Обновление не требуется"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Недостаточно данных"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Пользователь активирован"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Неизвестно"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Я принимаю"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Удалить"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Добавить в список композиций"
@@ -1688,136 +1958,141 @@ msgstr "Кодировка базы данных обновлена"
msgid "Administrative user creation failed: %s"
msgstr "Пользователь активирован"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "Неверный пользователь или пароль. Попробуйте еще раз"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Пользователь отключен. Пожалуйста, свяжитесь с администратором"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Пользователь уже вошел"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Не удалось создать новый аккаунт"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Включить"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Отключить"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Нет"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Потоковое вещание"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Публичное вещание"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Локальное вещание"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "XSPF проигрыватель"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Простой M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Отключено"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Менеджер"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Посылать при добавлении"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Посылать с очисткой при добавлении"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Очищать при отправке"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "По умолчанию"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Всегда"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Перекодирование"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1849,7 +2124,8 @@ msgstr "Потрясающе"
msgid "Off the Charts!"
msgstr "Выше всяких похвал!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Главная"
@@ -1865,14 +2141,14 @@ msgstr "Локальное воспроизведение"
msgid "Random Play"
msgstr "Случайное воспроизведение"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Поиск"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Предпочтения"
@@ -1906,7 +2182,7 @@ msgid "Browse Music"
msgstr "Слушать музыку"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Статистика"
@@ -1914,31 +2190,14 @@ msgstr "Статистика"
msgid "Add New"
msgstr "Добавить новый"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "Вкл"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Выкл"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "Неверный пользователь или пароль. Попробуйте еще раз"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Пользователь отключен. Пожалуйста, свяжитесь с администратором"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Пользователь уже вошел"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Не удалось создать новый аккаунт"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1965,11 +2224,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2038,11 +2299,11 @@ msgstr "Е-мэйл"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Пароль"
@@ -2109,48 +2370,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Ошибка: не удалось изменить директорию"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Ошибка: не удалось определить размер файла %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr " %s не может быть прочитан ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "кодировка %s отличается от кодировки сайта"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Корневой каталог не может быть прочитан, остановка очистки"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2165,13 +2426,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Пользователь"
@@ -2291,20 +2552,20 @@ msgstr "Имя узла"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Порт"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Случайный"
@@ -2321,14 +2582,48 @@ msgstr " был создан"
msgid "Playlist Imported"
msgstr "Список воспроизведения добавлен"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "Список воспроизведения не добавлен"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Пустые списки воспроизведения удалены"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Регистрация завершена"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Сервер"
@@ -2345,36 +2640,36 @@ msgstr "Аккаунт обновлен"
msgid "Radio Station Added"
msgstr "Радиостанция добавлена"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Ошибка: требуется CAPTCHA"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Проверка CAPTCHA завершилась неуспешно"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Вы должны принять пользовательское соглашение"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Вы не ввели имя пользователя"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Пожалуйста, введите ваше полное имя (Имя Фамилия)"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Неверный запрос"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Вы должны ввести пароль"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Ваш пароль не совпадает"
@@ -2393,6 +2688,11 @@ msgstr "Найдено"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2401,43 +2701,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Объект"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Пользователь удален"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Пользователь удален"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " был создан"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Выделены недопустимые объекты"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Фильтр"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Начинающиеся с"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Минимальное количество"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Оцененный"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Не проигранный"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Все списки композиций"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Композиция"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2446,94 +2781,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Обновление Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Отладка Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Запросы:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Кэш-попаданий:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Отменить"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Выйти"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Любимые песни"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Ошибка: конфигурационный файл устарел"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Создать новый файл настроек"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Установка Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Требования"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Данная страница предназначена для установки базы данных Ampache и создания "
-"файла ampache.cfg.php. Перед продолжением, проверьте наличие следующих "
-"необходимых условий:"
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"MySQL сервер, пользователь и пароль с доступом на создание/изменение базы "
-"данных"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Доступ на чтение файлов /sql/ampache.sql и /config/ampache.cfg.php.dist у "
-"сервера"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"Проверьте выполнение всех требований и заполните необходимые данные. У вас "
-"будут запрошены только обязательные значения параметров конфигурации. Если "
-"Вы будете вносить изменения в установку Ampache, редактируйте /config/"
-"ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Пред."
@@ -2543,7 +2853,7 @@ msgstr "Пред."
msgid "Next"
msgstr "След."
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Размер"
@@ -2553,27 +2863,28 @@ msgid "Add to Playlist"
msgstr "Добавить в список композиций"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Добавить в новый список композиций"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Пакетная загрузка"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Очистить список композиций"
@@ -2581,29 +2892,27 @@ msgstr "Очистить список композиций"
msgid "Add Dynamic Items"
msgstr "Добавить"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Случайный"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Схожий исполнитель"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Добавить случайные треки с альбома"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Схожий тег"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Случайное воспроизведение"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Удалить"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2636,15 +2945,15 @@ msgstr "Расширенное добавление"
msgid "Access Control Entries"
msgstr "Записи Списка доступа"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Начальный адрес"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Конечный адрес"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2653,88 +2962,82 @@ msgstr "Конечный адрес"
msgid "Level"
msgstr "Уровень"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Тип"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Действие"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Изменить"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "Е-мэйл"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Новый пароль"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Подтверждение пароля"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Очистить статистику"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Обновить аккаунт"
@@ -2856,13 +3159,80 @@ msgid "Gather Album Art"
msgstr "Собрать обложки альбомов"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Создавать списки воспроизведения из m3u файлов"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Добавить каталог"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Дата создания"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Потоковый доступ"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Описание"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Интерфейс"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Тип поиска"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Добавить"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2875,16 +3245,16 @@ msgstr "Домашняя страница"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "Потоковый URL"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Кодек"
@@ -2893,11 +3263,6 @@ msgstr "Кодек"
msgid "Create a new playlist"
msgstr "Создать новый список композиций"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Добавить"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2922,6 +3287,38 @@ msgstr "Найдено"
msgid "Reading"
msgstr "Просмотр"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Дата создания"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Объект"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Разрешить вещание"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Разрешить скачивание"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Добавить комментарий"
@@ -2948,17 +3345,22 @@ msgstr "Добавление нового пользователя"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Ф.И.О."
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Уровень доступа пользователя"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Добавить"
@@ -2978,259 +3380,346 @@ msgid "Invalid"
msgstr "Ошибка"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Выбрать"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Действия"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Воспроизвести альбом"
+msgid "Play last"
+msgstr "Список композиций"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Воспроизвести альбом"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Воспроизвести альбом"
+msgid "Add to temporary playlist"
+msgstr "Добавить в новый список композиций"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Добавить альбом"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Добавить случайные треки с альбома"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Проставить номера треков"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Вы действительно хотите удалить этот каталог?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Удалить обложку"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Найти обложку"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Вы действительно хотите удалить этот каталог?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Обновить из тегов"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Скачать"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Воспроизвести альбом"
+msgid "Save Tracks Order"
+msgstr "Проставить номера треков"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Обложка альбома"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Вы действительно хотите удалить этот каталог?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Обновить из тегов"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Редактировать альбом"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Добавить в новый список композиций"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Обложка"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "Жанр"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Отмеченные"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Отключенных песен не найдено"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Самые популярные исполнители"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Самые популярные альбомы"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Самые популярные жанры"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Самые популярные композиции"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Самые популярные потоки"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Самые популярные теги"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Загрузка..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Показать все песни %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Альбомы %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Список композиций"
+msgid "Show all"
+msgstr "Показать все"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Добавить все песни %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Альбомы %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Воспроизвести альбом"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Список композиций"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Добавить все песни %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Добавить в новый список композиций"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Добавить все песни %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Добавить случайные песни %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Исполнитель и название"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Редактировать исполнителя"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Показать обложку"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Альбомы"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Схожие исполнители"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Исполнитель и название"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Длина"
@@ -3244,6 +3733,44 @@ msgstr "Схожие исполнители не найдены"
msgid "Click to close window"
msgstr "Щелкните для закрытия окна"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Да"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Нет"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Стили"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Старт"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Схожие исполнители не найдены"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Проверить"
@@ -3261,67 +3788,82 @@ msgstr "Очистить"
msgid "Update"
msgstr "Обновить"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Проверка"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Добавление"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "Очистка"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Каталогов не найдено"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Описание"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Версия"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Активировать"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Записей не найдено"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Начинающиеся с"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "Потоковый URL"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Статус"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Каталогов не найдено"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3332,7 +3874,45 @@ msgstr "Очистка каталога %s"
msgid "Checking"
msgstr "Проверка"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Дата"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Действие"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Отключенных песен не найдено"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Последнее появление"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Схожие исполнители не найдены"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Продолжить"
@@ -3372,87 +3952,86 @@ msgstr "Установить кодировку базы данных"
msgid "PHP Settings"
msgstr "Параметры PHP"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Настройка"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Значение"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Ограничение памяти"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Максимальное время исполнения"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Изменение времени исполнения"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Failed"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Succeeded"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Safe Mode"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Поддержка Zlib"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "Поддержка GD"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Поддержка Iconv"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Поддержка Gettext"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Текущая конфигурация"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Предпочтение"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Обновление Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Версия"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Установка Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3474,31 +4053,31 @@ msgstr "Воспроизвести публичный список"
msgid "Playing from base Playlist"
msgstr "Играет из основного списка композиций"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Голосов"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Удалить голос"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Добавить голос"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Доступ запрещен"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Событие было зафиксировано. "
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3507,14 +4086,14 @@ msgstr ""
"Вы были перенаправлены на данную страницу, так как у Вас нет доступа к "
"данной функции. "
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr ""
"Если вы считаете, что это - ошибка, пожалуйста, свяжитесь с администратором "
"Ampache. "
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3523,8 +4102,8 @@ msgstr ""
"Вы были перенаправлены на эту страницу в связи с тем, что Вы пытались "
"использовать функцию, отключенную в данной демо-версии"
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Время добавления"
@@ -3553,15 +4132,16 @@ msgstr "Дублирующиеся песни"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Композиция"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Продолжительность"
@@ -3658,12 +4238,9 @@ msgid "Created by: %s for %s"
msgstr "Создал %s для %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Трек"
@@ -3675,27 +4252,27 @@ msgstr "Редактирование пользователя"
msgid "User Properties"
msgstr "Пользовательские предпочтения"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "Другие опции"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Редактировать предустановку"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Флэш"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Запретить изменение предустановки"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Затрагивает все аккаунты, кроме администраторов"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Обновить пользователя"
@@ -3741,23 +4318,35 @@ msgstr "Найти обложку"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Информация"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Импортировать список композиций из файла"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Тип списка композиций"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Импортировать список композиций"
@@ -3770,24 +4359,31 @@ msgstr "Случайные альбомы"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Версия"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Шаг 1 - Создание базы данных Ampache"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Шаг 2 - Создание файла ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Шаг 3 - Настройка первичного аккаунта"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3797,57 +4393,100 @@ msgstr ""
"аккаунт администратора будет создан, Вы будете перенаправлены на страницу "
"входа."
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Создание аккаунта администратора"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Создать аккаунт"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Требования"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Данная страница предназначена для установки базы данных Ampache и создания "
+"файла ampache.cfg.php. Перед продолжением, проверьте наличие следующих "
+"необходимых условий:"
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"MySQL сервер, пользователь и пароль с доступом на создание/изменение базы "
+"данных"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Доступ на чтение файлов /sql/ampache.sql и /config/ampache.cfg.php.dist у "
+"сервера"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"Проверьте выполнение всех требований и заполните необходимые данные. У вас "
+"будут запрошены только обязательные значения параметров конфигурации. Если "
+"Вы будете вносить изменения в установку Ampache, редактируйте /config/"
+"ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "ПРОВЕРКА"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "СТАТУС"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "ОПИСАНИЕ"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr " %s не может быть прочитан ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php существует"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3860,62 +4499,62 @@ msgstr ""
"конфигурации. У Вас будет запрошено сохранение файла. Поместите скачанный "
"файл конфигурации в /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Создать новый файл конфигурации"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Веб путь"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Желаемое имя базы данных"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL Хост"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQL пользователь"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQL пароль"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Чтение/Запись"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php существует"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php настроен?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Проверить конфигурацию"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Перейти на шаг 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3926,57 +4565,57 @@ msgstr ""
"укажите mysql аккаунт с правами на создание баз данных. Данный шаг может "
"занять некоторое время в зависимости от скорости Вашего компьютера."
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Добавить базу"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Желаемое имя базы данных"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "MySQL пользователь-администратор"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "MySQL пароль администратора"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Создать пользователя базы данных для новой базы"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Ampache имя пользователя базы данных"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Ampache пароль пользователя базы данных"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Заменить существующие"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Использовать существующую базу"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Добавить базу"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Выберите язык установки"
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Начать конфигурирование"
@@ -3994,11 +4633,6 @@ msgstr "Показать уникальные"
msgid "Show All"
msgstr "Показать все"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Дата"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4008,12 +4642,12 @@ msgstr "IP адрес"
msgid "Manage Radio Stations"
msgstr "Управление радиостанциями"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Список композиций"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4059,48 +4693,48 @@ msgstr "Показать элементы локального воспроиз
msgid "Edit Instance"
msgstr "Редактировать элемент"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Управление локальным воспроизведением"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Заглушить"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Уменьшить громкость"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Увеличить громкость"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Громкость"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Повторять"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Запомнить меня"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Пароль"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Вход"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Регистрация"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Фраза дня"
@@ -4139,11 +4773,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Отладка Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Тема"
@@ -4208,6 +4837,7 @@ msgstr "Создать список воспроизведения"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Объект"
@@ -4221,36 +4851,18 @@ msgstr "Прикрепленный"
msgid "Date Added"
msgstr "Дата добавления"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Воспроизвести альбом"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Воспроизвести альбом"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Добавить альбом"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Дополнительные настройки"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Альбомы"
+msgid "No missing album found"
+msgstr "Отключенных песен не найдено"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Схожие исполнители"
@@ -4268,125 +4880,60 @@ msgstr "еще не оценен"
msgid "%s of 5"
msgstr "%s из 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Нормализировать треки"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Воспроизвести альбом"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Список композиций"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Добавить все"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Добавить случайные"
+#, fuzzy
+msgid "Create channel"
+msgstr "Дата создания"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Вы действительно хотите удалить этот каталог?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Список композиций"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Список композиций"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Метод обновления плейлиста"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Список композиций"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "Композиций"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Владелец"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Схожие исполнители не найдены"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Композиции списка"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Композиции списка"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Стили"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "%s %s Список композиций"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Версия"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Деактивировать"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4394,13 +4941,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Управление предпочтениями"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Применить ко всем"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Уровень доступа"
@@ -4435,6 +4982,22 @@ msgstr "Количество"
msgid "Unlimited"
msgstr "Без ограничений"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d минута"
+msgstr[1] "%d минуты"
+msgstr[2] "%d минут"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d час"
+msgstr[1] "%d часа"
+msgstr[2] "%d часов"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Размер"
@@ -4443,22 +5006,86 @@ msgstr "Размер"
msgid "Enqueue"
msgstr "Добавить"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Последнее воспроизведение"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "секунд назад"
+msgstr[1] "секунд назад"
+msgstr[2] "секунд назад"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "минут назад"
+msgstr[1] "минут назад"
+msgstr[2] "минут назад"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "часов назад"
+msgstr[1] "часов назад"
+msgstr[2] "часов назад"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "дней назад"
+msgstr[1] "дней назад"
+msgstr[2] "дней назад"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "недель назад"
+msgstr[1] "недель назад"
+msgstr[2] "недель назад"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "месяцев назад"
+msgstr[1] "месяцев назад"
+msgstr[2] "месяцев назад"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "лет назад"
+msgstr[1] "лет назад"
+msgstr[2] "лет назад"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "секунд назад"
+msgstr[1] "секунд назад"
+msgstr[2] "секунд назад"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Отключенных песен не найдено"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Схожие исполнители не найдены"
@@ -4531,7 +5158,7 @@ msgstr "Добавить правило"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Расширенный поиск"
@@ -4557,16 +5184,54 @@ msgstr "Настройка"
msgid "Add Search Results"
msgstr "Добавить результат поиска"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Объект"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Дата создания"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Проверка"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Общий"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Посылать при добавлении"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Добавить все"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Сохранить изменения"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Импортировать список композиций"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Схожие исполнители не найдены"
@@ -4584,54 +5249,41 @@ msgstr "Детали"
msgid "Waveform"
msgstr ""
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
msgid "Link"
msgstr "Ссылка"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
msgid "Label"
msgstr "Метка"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
msgid "Song Language"
msgstr "Язык"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
msgid "Catalog Number"
msgstr "Каталог"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
msgid "Last Updated"
msgstr "Последнее обновление"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "Текст %s"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Композиции списка"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Информация"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Композиция"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Отключенных песен не найдено"
@@ -4652,13 +5304,31 @@ msgstr "Размер каталога"
msgid "Catalog Time"
msgstr "Длительность каталога"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Самые популярные альбомы"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Самые популярные исполнители"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Композиция"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Вы действительно хотите удалить этот каталог?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Отладка Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4772,10 +5442,23 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "Поддержка PHP Session"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Тест на загрузку расширения mysql для PHP. Оно требуется для работы Ampache"
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Safe Mode"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4785,33 +5468,33 @@ msgstr ""
"возможность редактирования лимитов памяти. Хотя это и не требуется, без этих "
"возможностей некоторые функции Ampache могут работать неправильно."
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Ограничение памяти"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Максимальное время исполнения"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4821,12 +5504,12 @@ msgstr ""
"означать, что либо ampache.cfg.php имеет неверное местоположение,\n"
"\tлибо он не может быть прочитан Вашим вэб-сервером."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Настроить публичный список"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4835,12 +5518,12 @@ msgstr ""
"Тест на наличие необходимых параметров конфигурации, и файла конфигурации на "
"чтение и возможность обработки"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Кодировка базы данных обновлена"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4848,12 +5531,12 @@ msgid ""
msgstr ""
"Попытка подключения к СУБД используя значения параметров ampache.cfg.php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Желаемое имя базы данных"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4862,12 +5545,12 @@ msgstr ""
"Проверка нескольких ключевых таблиц для подтверждения успешного создания "
"базы данных и наличия у пользователя доступа к базе"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Веб путь"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4904,99 +5587,75 @@ msgstr "Ключ валидации не верен"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Пользователи"
+msgid "User Favorites"
+msgstr "Пользовательские предпочтения"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Дата создания"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Последнее появление"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Активность"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Статус"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Пользователь сейчас на сайте"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Пользователь сейчас не на сайте"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Активный список композиций"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Рекомендуемые исполнители"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Рекомендуемые альбомы"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Рекомендуемые песни"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Пользовательское соглашение"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Я принимаю"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Информация о пользователе"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
msgid "* Required fields"
msgstr "* Обязательные к заполнению поля"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Регистрация пользователя"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Полное имя"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Дата регистрации"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Последний IP"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "Онлайн"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Любимые исполнители"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Любимые альбомы"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Любимые песни"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5008,21 +5667,20 @@ msgstr "Каталоги"
msgid "Updating the %s catalog"
msgstr "Обновление каталога %s"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d запись. Проверка информации из тегов"
+msgstr[1] "%d записи. Проверка информации из тегов"
+msgstr[2] "%d записей. Проверка информации из тегов"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Проверено"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Композиции списка"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Разрешение"
@@ -5033,7 +5691,7 @@ msgid "No video found"
msgstr "Записей не найдено"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Схожий исполнитель"
@@ -5075,50 +5733,45 @@ msgstr "Настройки сервера"
msgid "Browse"
msgstr "Обзор"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
msgid "Song Titles"
msgstr "Композиции"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Сейчас играет"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Импорт"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Расширенный поиск"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "Новые"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Популярные"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Оцененный"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Отмеченные"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Модули"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Выйти"
@@ -5171,7 +5824,7 @@ msgstr "Управление списком композиций"
msgid "Account"
msgstr "Аккаунт"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5182,18 +5835,15 @@ msgstr ""
"начиная с версии 3.3.3.5. По данным базы, Ваша текущая "
"версия - %s."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "должны быть установлены следующие обновления"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Обновить!"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Установка Ampache."
-
#: Database words
msgid "Allow Downloads"
msgstr "Разрешить скачивание"
@@ -5294,14 +5944,154 @@ msgstr "Следить за пользователем"
msgid "Streaming"
msgstr "Вещание"
-#: Database words
-msgid "Interface"
-msgstr "Интерфейс"
-
#: Database words
msgid "System"
msgstr "Система"
+#~ msgid "Related Album"
+#~ msgstr "Схожий альбом"
+
+#~ msgid "Related Genre"
+#~ msgstr "Схожий жанр"
+
+#~ msgid "Pure Random"
+#~ msgstr "Абсолютно случайно"
+
+#~ msgid "Related Tag"
+#~ msgstr "Схожий тег"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Воспроизвести альбом"
+
+#~ msgid "Play Album"
+#~ msgstr "Воспроизвести альбом"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Воспроизвести альбом"
+
+#~ msgid "Add Album"
+#~ msgstr "Добавить альбом"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Воспроизвести альбом"
+
+#~ msgid "Flag"
+#~ msgstr "Отмеченные"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Самые популярные жанры"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Самые популярные композиции"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Самые популярные потоки"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Самые популярные теги"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Показать все песни %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Список композиций"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Добавить все песни %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Список композиций"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Добавить все песни %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Добавить все песни %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Добавить случайные песни %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Тип списка композиций"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Воспроизвести альбом"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Воспроизвести альбом"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Добавить альбом"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Нормализировать треки"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Список композиций"
+
+#~ msgid "Add Random"
+#~ msgstr "Добавить случайные"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Список композиций"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Композиции списка"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Композиции списка"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Композиции списка"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Пользователи"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Рекомендуемые исполнители"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Рекомендуемые альбомы"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Рекомендуемые песни"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Любимые исполнители"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Любимые альбомы"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Композиции списка"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Отмеченные"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "должны быть установлены следующие обновления"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Установка Ampache."
+
#~ msgid "Make Sticky"
#~ msgstr "Прикрепить"
@@ -5472,18 +6262,12 @@ msgstr "Система"
#~ msgid "Search Disabled Songs"
#~ msgstr "Искать отключенные песни"
-#~ msgid "Edit Album"
-#~ msgstr "Редактировать альбом"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Отметить для перетегирования"
#~ msgid "Update Album"
#~ msgstr "Обновить альбом"
-#~ msgid "Edit Artist"
-#~ msgstr "Редактировать исполнителя"
-
#~ msgid "Update Artist"
#~ msgstr "Обновить исполнителя"
@@ -5624,18 +6408,6 @@ msgstr "Система"
#~ msgid "DB Inserted"
#~ msgstr "База данных добавлена"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "день"
-#~ msgstr[1] "дня"
-#~ msgstr[2] "дней"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "час"
-#~ msgstr[1] "часа"
-#~ msgstr[2] "часов"
-
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
#~ "Невозможно загрузить библиотеку XMLRPC, убедитесь, что XML-RPC установлен"
@@ -5655,12 +6427,6 @@ msgstr "Система"
#~ msgid "images synchronized: "
#~ msgstr "Обложек синхронизировано: "
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Очистка каталога завершена. %d файл удален"
-#~ msgstr[1] "Очистка каталога завершена. %d файла удалено"
-#~ msgstr[2] "Очистка каталога завершена. %d файлов удалено"
-
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
#~ msgstr[0] ""
@@ -5713,24 +6479,6 @@ msgstr "Система"
#~ "предыдущие пользователи применяли ее для размещения несоответствующих "
#~ "материалов"
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d запись. Проверка информации из тегов"
-#~ msgstr[1] "%d записи. Проверка информации из тегов"
-#~ msgstr[2] "%d записей. Проверка информации из тегов"
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d минута"
-#~ msgstr[1] "%d минуты"
-#~ msgstr[2] "%d минут"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d час"
-#~ msgstr[1] "%d часа"
-#~ msgstr[2] "%d часов"
-
#~ msgid "file"
#~ msgstr "файл"
@@ -5755,18 +6503,6 @@ msgstr "Система"
#~ "uploaded."
#~ msgstr "Была проблема с загрузкой файла: файл %s был загружен частично."
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Композиция удалена"
-#~ msgstr[1] "Композиции удалено"
-#~ msgstr[2] "Композиций удалено"
-
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Отключенная композиция обработана"
-#~ msgstr[1] "Отключенные композиции обработаны"
-#~ msgstr[2] "Отключенных композиции обработано"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Записей не найдено"
@@ -5797,12 +6533,6 @@ msgstr "Система"
#~ msgid "Keywords"
#~ msgstr "Ключевые слова"
-#~ msgid "Yes"
-#~ msgstr "Да"
-
-#~ msgid "No"
-#~ msgstr "Нет"
-
#~ msgid "Min Bitrate"
#~ msgstr "Мин битрейд"
diff --git a/locale/sv_SE/LC_MESSAGES/messages.mo b/locale/sv_SE/LC_MESSAGES/messages.mo
index f59b10ea..31e57ba7 100644
Binary files a/locale/sv_SE/LC_MESSAGES/messages.mo and b/locale/sv_SE/LC_MESSAGES/messages.mo differ
diff --git a/locale/sv_SE/LC_MESSAGES/messages.po b/locale/sv_SE/LC_MESSAGES/messages.po
index 58bc70a0..7720f88c 100644
--- a/locale/sv_SE/LC_MESSAGES/messages.po
+++ b/locale/sv_SE/LC_MESSAGES/messages.po
@@ -2,12 +2,12 @@
# Copyright (C) 2008-2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the ampache package.
# Daniel Nylander , 2006, 2008, 2009.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: ampache\n"
"Report-Msgid-Bugs-To: translations@ampache.org\n"
-"POT-Creation-Date: 2014-01-13 16:24+0100\n"
+"POT-Creation-Date: 2014-05-07 18:59+0200\n"
"PO-Revision-Date: 2009-03-24 18:04+0100\n"
"Last-Translator: Daniel Nylander \n"
"Language-Team: Swedish \n"
@@ -25,7 +25,7 @@ msgstr "Borttagen"
msgid "Your Access List Entry has been removed"
msgstr "Din behörighetspost har tagits bort"
-#: ../../admin/access.php:45 ../../admin/users.php:165
+#: ../../admin/access.php:45 ../../admin/users.php:173
msgid "Deletion Request"
msgstr "Begäran om borttagning"
@@ -35,7 +35,7 @@ msgid "Are you sure you want to permanently delete"
msgstr "Är du säker på att du vill permanent ta bort"
#: ../../admin/access.php:72 ../../lib/class/search.class.php:319
-#: ../../templates/show_song.inc.php:97
+#: ../../templates/show_song.inc.php:101
msgid "Added"
msgstr "Lades till"
@@ -43,7 +43,7 @@ msgstr "Lades till"
msgid "Your new Access Control List(s) have been created"
msgstr "Din nya behörighetskontroll har skapats"
-#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:805
+#: ../../admin/access.php:86 ../../lib/class/catalog.class.php:874
#: ../../lib/class/search.class.php:326 ../../preferences.php:115
msgid "Updated"
msgstr "Uppdaterad"
@@ -69,14 +69,29 @@ msgstr "Katalogen och alla associerade poster har tagits bort"
msgid "Catalog Delete"
msgstr "Katalogborttagning"
-#: ../../admin/catalog.php:117
+#: ../../admin/catalog.php:117 ../../admin/users.php:181
+#: ../../broadcast.php:34 ../../channel.php:71 ../../share.php:96
msgid "Confirm Deletion Request"
msgstr "Bekräfta borttagningsbegäran"
+#: ../../admin/catalog.php:126
+#, fuzzy, php-format
+msgid "%d Song Removed"
+msgid_plural "%d Songs Removed"
+msgstr[0] "Låtar borttagna"
+msgstr[1] "Låtar borttagna"
+
#: ../../admin/catalog.php:128
msgid "No Songs Removed"
msgstr "Inga låtar togs bort"
+#: ../../admin/catalog.php:131
+#, fuzzy, php-format
+msgid "%d Disabled Song Processed"
+msgid_plural "%d Disabled Songs Processed"
+msgstr[0] "Inaktiverade låtar behandlade"
+msgstr[1] "Inaktiverade låtar behandlade"
+
#: ../../admin/catalog.php:152
msgid "Catalog Cleaned"
msgstr "Katalogen tömdes"
@@ -219,116 +234,150 @@ msgstr ""
"Din databas och associerade tabeller har uppdaterats för att matcha din "
"nuvarande konfigurerade teckenuppsättning"
-#: ../../admin/users.php:56 ../../admin/users.php:106
-#: ../../lib/class/user.class.php:441
+#: ../../admin/users.php:57 ../../admin/users.php:112
+#: ../../lib/class/user.class.php:479
msgid "Error Username Required"
msgstr "Fel - användarnamn krävs"
-#: ../../admin/users.php:59 ../../admin/users.php:102
-#: ../../lib/class/user.class.php:445
+#: ../../admin/users.php:60 ../../admin/users.php:108
+#: ../../lib/class/user.class.php:483
msgid "Error Passwords don't match"
msgstr "Fel - lösenorden stämmer inte överens"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "User Updated"
msgstr "Användaren uppdaterad"
-#: ../../admin/users.php:84
+#: ../../admin/users.php:89
msgid "updated"
msgstr "uppdaterad"
-#: ../../admin/users.php:111 ../../register.php:106
+#: ../../admin/users.php:117 ../../register.php:107
msgid "Error Username already exists"
msgstr "Fel - användarnamnet används redan"
-#: ../../admin/users.php:118 ../../register.php:135
+#: ../../admin/users.php:124 ../../register.php:136
msgid "Error: Insert Failed"
msgstr "Fel: Infogning misslyckades"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:152
-#: ../../templates/show_add_user.inc.php:74
-#: ../../templates/show_edit_user.inc.php:77
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:152
+#: ../../templates/show_add_user.inc.php:82
+#: ../../templates/show_edit_user.inc.php:85
#: ../../templates/show_preference_admin.inc.php:43
-#: ../../templates/show_preference_box.inc.php:59
+#: ../../templates/show_preference_box.inc.php:62
msgid "Guest"
msgstr "Gäst"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:155
-#: ../../lib/preferences.php:241 ../../templates/show_access_list.inc.php:54
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:155
+#: ../../lib/preferences.php:269 ../../templates/show_access_list.inc.php:55
#: ../../templates/show_add_access.inc.php:42
-#: ../../templates/show_add_user.inc.php:75
+#: ../../templates/show_add_user.inc.php:83
#: ../../templates/show_edit_access.inc.php:60
-#: ../../templates/show_edit_user.inc.php:78
+#: ../../templates/show_edit_user.inc.php:86
#: ../../templates/show_mail_users.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:28
#: ../../templates/show_manage_shoutbox.inc.php:52
-#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:30
#: ../../templates/show_preference_admin.inc.php:44
-#: ../../templates/show_preference_box.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:28
+#: ../../templates/show_preference_box.inc.php:63
+#: ../../templates/show_shared_objects.inc.php:28
+#: ../../templates/show_wanted_albums.inc.php:29
msgid "User"
msgstr "Användare"
-#: ../../admin/users.php:126 ../../lib/class/democratic.class.php:164
-#: ../../lib/preferences.php:243 ../../templates/show_add_user.inc.php:78
-#: ../../templates/show_democratic_playlist.inc.php:63
-#: ../../templates/show_democratic_playlist.inc.php:103
-#: ../../templates/show_edit_user.inc.php:81
+#: ../../admin/users.php:134 ../../lib/class/democratic.class.php:164
+#: ../../lib/preferences.php:271 ../../templates/show_add_user.inc.php:86
+#: ../../templates/show_democratic_playlist.inc.php:62
+#: ../../templates/show_democratic_playlist.inc.php:109
+#: ../../templates/show_edit_user.inc.php:89
#: ../../templates/show_mail_users.inc.php:33
#: ../../templates/show_preference_admin.inc.php:45
-#: ../../templates/show_preference_box.inc.php:63
-#: ../../templates/sidebar.inc.php:32
+#: ../../templates/show_preference_box.inc.php:66
+#: ../../templates/sidebar.inc.php:33
msgid "Admin"
msgstr "Administration"
#. HINT: %1 Username, %2 Access num
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
msgid "New User Added"
msgstr "Ny användare lades till"
-#: ../../admin/users.php:129
+#: ../../admin/users.php:137
#, php-format
msgid "%1$s has been created with an access level of %2$s"
msgstr ""
-#: ../../admin/users.php:134
+#: ../../admin/users.php:142
msgid "User Enabled"
msgstr "Användare aktiverad"
-#: ../../admin/users.php:139
+#: ../../admin/users.php:147
msgid "User Disabled"
msgstr "Användare inaktiverad"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149 ../../templates/error_page.inc.php:49
msgid "Error"
msgstr "Fel"
-#: ../../admin/users.php:141
+#: ../../admin/users.php:149
msgid "Unable to Disabled last Administrator"
msgstr "Kunde inte inaktivera senaste administratör"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
msgid "User Deleted"
msgstr "Användare borttagen"
-#: ../../admin/users.php:157
+#: ../../admin/users.php:165
#, fuzzy, php-format
msgid "%s has been Deleted"
msgstr " har skapats"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Delete Error"
msgstr "Fel vid borttagning"
-#: ../../admin/users.php:159
+#: ../../admin/users.php:167
msgid "Unable to delete last Admin User"
msgstr "Kunde inte ta bort senaste administratörsanvändaren"
-#: ../../admin/users.php:166
+#: ../../admin/users.php:174
#, fuzzy, php-format
msgid "Are you sure you want to permanently delete %s?"
msgstr "Är du säker på att du vill permanent ta bort"
+#: ../../admin/users.php:181
+#, fuzzy
+msgid "User Avatar Delete"
+msgstr "Användare borttagen"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avater Deleted"
+msgstr "Användare borttagen"
+
+#: ../../admin/users.php:195
+#, fuzzy
+msgid "User Avatar has been deleted"
+msgstr " har skapats"
+
+#: ../../admin/users.php:201 ../../templates/show_edit_user.inc.php:109
+#, fuzzy
+msgid "Generate new API Key"
+msgstr "Generera ny konfiguration"
+
+#: ../../admin/users.php:201
+msgid "Confirm API Key Generation"
+msgstr ""
+
+#: ../../admin/users.php:215
+msgid "API Key Generated"
+msgstr ""
+
+#: ../../admin/users.php:215
+#, fuzzy
+msgid "New user API Key has been generated."
+msgstr "Den begärda spellistan har tagits bort."
+
#: ../../albums.php:33
msgid "Album Art Cleared"
msgstr "Albumomslag tömdes"
@@ -391,91 +440,152 @@ msgstr ""
msgid "Show Artists starting with"
msgstr "Visa artister som börjar med"
-#: ../../bin/catalog_update.inc:38
+#: ../../bin/catalog_update.inc:39
#, fuzzy
msgid "- All Catalog Operations"
msgstr "Spara kataloginställningar"
-#: ../../bin/catalog_update.inc:45
+#: ../../bin/catalog_update.inc:46
#, fuzzy
msgid "- Catalog Clean"
msgstr "Katalogen tömdes"
-#: ../../bin/catalog_update.inc:49
+#: ../../bin/catalog_update.inc:50
#, fuzzy
msgid "- Catalog Verify"
msgstr "Katalognamn"
-#: ../../bin/catalog_update.inc:53
+#: ../../bin/catalog_update.inc:54
#, fuzzy
msgid "- Catalog Add"
msgstr "Katalog uppdaterad"
-#: ../../bin/catalog_update.inc:57
+#: ../../bin/catalog_update.inc:58
#, fuzzy
msgid "- Catalog Art Gather"
msgstr "Katalog skapades"
-#: ../../bin/catalog_update.inc:79
+#: ../../bin/catalog_update.inc:62
+#, fuzzy
+msgid "- Playlist Import"
+msgstr "Spellista importerad"
+
+#: ../../bin/catalog_update.inc:84
#, fuzzy
msgid "Starting Catalog Operations..."
msgstr "Inställningar för %s"
-#: ../../bin/catalog_update.inc:92 ../../bin/print_tags.inc:43
+#: ../../bin/catalog_update.inc:97 ../../bin/print_tags.inc:43
#, fuzzy, php-format
msgid "Reading: %s"
msgstr "Läser"
-#: ../../bin/catalog_update.inc:97
+#: ../../bin/catalog_update.inc:102
msgid "- Starting Clean - "
msgstr ""
-#: ../../bin/catalog_update.inc:105
+#: ../../bin/catalog_update.inc:110
msgid "- Starting Verify - "
msgstr ""
-#: ../../bin/catalog_update.inc:113
+#: ../../bin/catalog_update.inc:118
#, fuzzy
msgid "- Starting Add - "
msgstr "Radiostation lades till"
-#: ../../bin/catalog_update.inc:121 ../../templates/show_gather_art.inc.php:24
+#: ../../bin/catalog_update.inc:131 ../../templates/show_gather_art.inc.php:24
msgid "Starting Album Art Search"
msgstr "Startar sökning efter albumomslag"
-#: ../../bin/catalog_update.inc:147
+#: ../../bin/catalog_update.inc:157
#, fuzzy
msgid "- Catalog Update -"
msgstr "Katalog uppdaterad"
-#: ../../bin/catalog_update.inc:149
-msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t]"
+#: ../../bin/catalog_update.inc:159
+msgid "Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g|-t|-i]"
msgstr ""
-#: ../../bin/catalog_update.inc:151
-msgid "Default behavior is to do all"
+#: ../../bin/catalog_update.inc:161
+msgid "Default behavior is to do all except playlist import"
msgstr ""
-#: ../../bin/catalog_update.inc:153
+#: ../../bin/catalog_update.inc:163
#, fuzzy
msgid "Clean Catalogs"
msgstr "Töm katalogstatistik"
-#: ../../bin/catalog_update.inc:155
+#: ../../bin/catalog_update.inc:165
#, fuzzy
msgid "Verify Catalogs"
msgstr "Kataloger"
-#: ../../bin/catalog_update.inc:157
+#: ../../bin/catalog_update.inc:167
#, fuzzy
msgid "Add to Catalogs"
msgstr "Lägg till en katalog"
-#: ../../bin/catalog_update.inc:159
+#: ../../bin/catalog_update.inc:169
+#, fuzzy
+msgid "Import Playlists"
+msgstr "Importera spellista"
+
+#: ../../bin/catalog_update.inc:171
#: ../../templates/show_catalog_row.inc.php:38
msgid "Gather Art"
msgstr "Samla albumomslag"
+#: ../../bin/channel_run.inc:44
+msgid "- Channel "
+msgstr ""
+
+#: ../../bin/channel_run.inc:47 ../../bin/websocket_run.inc:42
+msgid "- Verbose"
+msgstr ""
+
+#: ../../bin/channel_run.inc:52 ../../bin/websocket_run.inc:47
+#, fuzzy
+msgid "- Port "
+msgstr "Port"
+
+#: ../../bin/channel_run.inc:69
+#, fuzzy
+msgid "Starting Channel..."
+msgstr "Inställningar för %s"
+
+#: ../../bin/channel_run.inc:73
+#, fuzzy
+msgid "Unknown channel."
+msgstr "Okänd (föräldralös)"
+
+#: ../../bin/channel_run.inc:88
+msgid "Found available port "
+msgstr ""
+
+#: ../../bin/channel_run.inc:105
+msgid "Listening on "
+msgstr ""
+
+#: ../../bin/channel_run.inc:474
+msgid "- Channel Listening -"
+msgstr ""
+
+#: ../../bin/channel_run.inc:476
+msgid "Usage: channel_run.inc [-c {CHANNEL ID}|-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/channel_run.inc:479
+msgid "Channel id to start"
+msgstr ""
+
+#: ../../bin/channel_run.inc:481
+msgid "Listening port, default get an available port automatically"
+msgstr ""
+
+#: ../../bin/channel_run.inc:483 ../../bin/websocket_run.inc:74
+msgid "Verbose"
+msgstr ""
+
#: ../../bin/delete_disabled.inc:37
msgid "DEBUG ENABLED WILL NOT DELETE FILES!"
msgstr ""
@@ -593,12 +703,12 @@ msgstr "Fel: Kunde inte få filstorlek för %s"
msgid "File Moved..."
msgstr "filer borttagna"
-#: ../../bin/install/add_user.inc:49
+#: ../../bin/install/add_user.inc:50
#, fuzzy, php-format
msgid "Created %s user %s with password %s"
msgstr "Skapad av: %s för %s"
-#: ../../bin/install/add_user.inc:53
+#: ../../bin/install/add_user.inc:54
#, fuzzy
msgid "User creation failed"
msgstr "Användare aktiverad"
@@ -723,6 +833,18 @@ msgstr "Fel - användarnamnet används redan"
msgid "Error: Unable to copy file to %s"
msgstr "Fel: Kunde inte få filstorlek för %s"
+#: ../../bin/websocket_run.inc:67
+msgid "- WebSocket server -"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:69
+msgid "Usage: websocket_run.inc [-p {PORT}|-v]"
+msgstr ""
+
+#: ../../bin/websocket_run.inc:72
+msgid "Listening port, default 8100"
+msgstr ""
+
#: ../../bin/write_playlists.inc:38
#, php-format
msgid "Error: Directory %s not writeable"
@@ -749,11 +871,50 @@ msgstr ""
msgid "Dumps all Artists as individual playlists"
msgstr ""
-#: ../../browse.php:75 ../../lib/class/browse.class.php:195
-#: ../../templates/sidebar_home.inc.php:36
+#: ../../broadcast.php:34
+#, fuzzy
+msgid "Broadcast Delete"
+msgstr "Katalogborttagning"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "Broadcast Deleted"
+msgstr "Katalog borttagen"
+
+#: ../../broadcast.php:49
+#, fuzzy
+msgid "The Broadcast has been deleted"
+msgstr "Den begärda spellistan har tagits bort."
+
+#: ../../browse.php:79 ../../lib/class/browse.class.php:200
+#: ../../templates/sidebar_home.inc.php:35
msgid "Tag Cloud"
msgstr "Taggmoln"
+#: ../../channel/index.php:75 ../../plex/web/init.php:38
+msgid "Unauthorized."
+msgstr ""
+
+#: ../../channel.php:60
+#, fuzzy
+msgid "Channel Created"
+msgstr "Katalog skapades"
+
+#: ../../channel.php:71
+#, fuzzy
+msgid "Channel Delete"
+msgstr "Katalogborttagning"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "Channel Deleted"
+msgstr "Katalog borttagen"
+
+#: ../../channel.php:86
+#, fuzzy
+msgid "The Channel has been deleted"
+msgstr " har skapats"
+
#: ../../democratic.php:57
msgid "The Requested Playlist has been deleted."
msgstr "Den begärda spellistan har tagits bort."
@@ -843,41 +1004,46 @@ msgstr "Webbgränssnitt"
msgid "Stream Access"
msgstr "Strömmande åtkomst"
-#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:310
-#: ../../templates/show_album.inc.php:35
+#: ../../lib/class/album.class.php:217 ../../lib/class/artist.class.php:345
+#: ../../templates/show_album_group_disks.inc.php:38
+#: ../../templates/show_album.inc.php:41
#: ../../templates/show_lyrics.inc.php:33
msgid "Unknown (Orphaned)"
msgstr "Okänd (föräldralös)"
-#: ../../lib/class/album.class.php:349 ../../templates/show_album.inc.php:28
+#: ../../lib/class/album.class.php:411
+#: ../../lib/class/subsonic_xml_data.class.php:350
+#: ../../server/search.ajax.php:85
+#: ../../templates/show_album_group_disks.inc.php:99
+#: ../../templates/show_album.inc.php:28
#: ../../templates/show_edit_album_row.inc.php:47
-#: ../../templates/show_song_previews.inc.php:35
+#: ../../templates/show_song_previews.inc.php:36
msgid "Disk"
msgstr "Disk"
-#: ../../lib/class/album.class.php:362 ../../lib/class/browse.class.php:158
+#: ../../lib/class/album.class.php:424 ../../lib/class/browse.class.php:163
#: ../../lib/ui.lib.php:158 ../../server/search.ajax.php:55
-#: ../../templates/show_random.inc.php:29
+#: ../../templates/header.inc.php:285 ../../templates/show_random.inc.php:29
#: ../../templates/show_search.inc.php:30
#: ../../templates/show_stats.inc.php:33
-#: ../../templates/sidebar_home.inc.php:35
-#: ../../templates/sidebar_home.inc.php:92
+#: ../../templates/sidebar_home.inc.php:34
+#: ../../templates/sidebar_home.inc.php:103
msgid "Artists"
msgstr "Artister"
-#: ../../lib/class/album.class.php:362 ../../lib/class/album.class.php:363
+#: ../../lib/class/album.class.php:424 ../../lib/class/album.class.php:425
msgid "Various"
msgstr "Diverse"
#: ../../lib/class/ampache_rss.class.php:70
-#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:37
+#: ../../lib/class/localplay.class.php:627 ../../templates/header.inc.php:36
#: ../../templates/mainframes.inc.php:37
-#: ../../templates/show_localplay_status.inc.php:28
+#: ../../templates/show_localplay_status.inc.php:31
#: ../../templates/show_now_playing.inc.php:33
msgid "Now Playing"
msgstr "Spelar nu"
-#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:38
+#: ../../lib/class/ampache_rss.class.php:71 ../../templates/header.inc.php:37
#: ../../templates/mainframes.inc.php:38
#: ../../templates/show_recently_played.inc.php:24
msgid "Recently Played"
@@ -928,169 +1094,305 @@ msgstr "år sedan"
msgid "Trying to clobber '%s' without setting clobber"
msgstr ""
-#: ../../lib/class/api.class.php:124
+#: ../../lib/class/api.class.php:129
msgid "Login Failed: version too old"
msgstr ""
-#: ../../lib/class/api.class.php:132
+#: ../../lib/class/api.class.php:157
msgid "Login Failed: timestamp out of range"
msgstr ""
-#: ../../lib/class/api.class.php:159 ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:168 ../../lib/class/api.class.php:235
#, fuzzy
msgid "Invalid Username/Password"
msgstr "Inget användarnamn/lösenord angavs"
-#: ../../lib/class/api.class.php:219
+#: ../../lib/class/api.class.php:235
msgid "Error Invalid Handshake - "
msgstr "Fel: ogiltig handskakning - "
-#: ../../lib/class/api.class.php:644 ../../lib/class/api.class.php:705
+#: ../../lib/class/api.class.php:607 ../../lib/class/api.class.php:624
+#: ../../lib/class/api.class.php:642
+#, fuzzy
+msgid "Access denied to this playlist."
+msgstr "Lägg till i spellista"
+
+#: ../../lib/class/api.class.php:728 ../../lib/class/api.class.php:789
#: ../../server/xml.server.php:98
msgid "Invalid Request"
msgstr "Ogiltig begäran"
-#: ../../lib/class/api.class.php:665 ../../lib/class/api.class.php:683
+#: ../../lib/class/api.class.php:749 ../../lib/class/api.class.php:767
msgid "Media Object Invalid or Not Specified"
msgstr "Mediaobjektet är ogiltigt eller inte angivet"
-#: ../../lib/class/art.class.php:1000
+#: ../../lib/class/art.class.php:1004
msgid "Error: Unable to open"
msgstr "Fel: Kunde inte öppna"
-#: ../../lib/class/autoupdate.class.php:177
+#: ../../lib/class/autoupdate.class.php:179
#, fuzzy
msgid "Update available"
msgstr "Uppdatera alla"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "See"
msgstr "Server"
-#: ../../lib/class/autoupdate.class.php:180
+#: ../../lib/class/autoupdate.class.php:182
#, fuzzy
msgid "changes"
msgstr "Spara ändringar"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "or"
msgstr "Port"
-#: ../../lib/class/autoupdate.class.php:181
+#: ../../lib/class/autoupdate.class.php:183
#, fuzzy
msgid "download"
msgstr "Hämta"
-#: ../../lib/class/browse.class.php:144 ../../lib/class/browse.class.php:212
-#: ../../server/search.ajax.php:111 ../../templates/show_albums.inc.php:39
-#: ../../templates/show_albums.inc.php:78
-#: ../../templates/show_artists.inc.php:37
+#: ../../lib/class/broadcast.class.php:148
+#, fuzzy
+msgid "Broadcast edit"
+msgstr "Artist och titel"
+
+#: ../../lib/class/broadcast.class.php:148
+#: ../../lib/class/channel.class.php:156
+#: ../../templates/show_access_list.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:128
+#: ../../templates/show_album.inc.php:129
+#: ../../templates/show_album_row.inc.php:80
+#: ../../templates/show_artist.inc.php:120
+#: ../../templates/show_artist_row.inc.php:62
+#: ../../templates/show_live_stream_row.inc.php:42
+#: ../../templates/show_playlist_row.inc.php:58
+#: ../../templates/show_shout_row.inc.php:31
+#: ../../templates/show_smartplaylist_row.inc.php:53
+#: ../../templates/show_song_row.inc.php:71
+#: ../../templates/show_tagcloud.inc.php:36
+#: ../../templates/show_user_row.inc.php:44
+msgid "Edit"
+msgstr "Redigera"
+
+#: ../../lib/class/broadcast.class.php:149
+#: ../../lib/class/channel.class.php:157 ../../lib/class/share.class.php:171
+#: ../../templates/rightbar.inc.php:117
+#: ../../templates/show_access_list.inc.php:76
+#: ../../templates/show_catalog_row.inc.php:39
+#: ../../templates/show_democratic_playlist.inc.php:92
+#: ../../templates/show_edit_user.inc.php:99
+#: ../../templates/show_live_stream_row.inc.php:46
+#: ../../templates/show_localplay_instances.inc.php:40
+#: ../../templates/show_localplay_playlist.inc.php:50
+#: ../../templates/show_manage_democratic.inc.php:50
+#: ../../templates/show_playlist.inc.php:85
+#: ../../templates/show_playlist_row.inc.php:60
+#: ../../templates/show_playlist_song_row.inc.php:63
+#: ../../templates/show_shout_row.inc.php:34
+#: ../../templates/show_smartplaylist.inc.php:47
+#: ../../templates/show_smartplaylist_row.inc.php:55
+#: ../../templates/show_tagcloud.inc.php:40
+#: ../../templates/show_user_row.inc.php:54
+msgid "Delete"
+msgstr "Ta bort"
+
+#: ../../lib/class/broadcast.class.php:157
+msgid "Broadcast"
+msgstr ""
+
+#: ../../lib/class/broadcast.class.php:165
+msgid "Unbroadcast"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:148 ../../lib/class/browse.class.php:221
+#: ../../server/search.ajax.php:117 ../../templates/show_albums.inc.php:37
+#: ../../templates/show_albums.inc.php:79
+#: ../../templates/show_artists.inc.php:35
#: ../../templates/show_artists.inc.php:74
#: ../../templates/show_manage_democratic.inc.php:31
#: ../../templates/show_random.inc.php:27
-#: ../../templates/show_recommended_artists.inc.php:33
-#: ../../templates/show_recommended_artists.inc.php:71
+#: ../../templates/show_recommended_artists.inc.php:32
+#: ../../templates/show_recommended_artists.inc.php:81
#: ../../templates/show_search.inc.php:28
#: ../../templates/show_stats.inc.php:34 ../../templates/show_stats.inc.php:70
-#: ../../templates/sidebar_home.inc.php:90
+#: ../../templates/sidebar_home.inc.php:101
msgid "Songs"
msgstr "Låtar"
-#: ../../lib/class/browse.class.php:149 ../../lib/ui.lib.php:154
-#: ../../server/search.ajax.php:83 ../../templates/browse_filters.inc.php:58
-#: ../../templates/show_artists.inc.php:38
+#: ../../lib/class/browse.class.php:153 ../../lib/ui.lib.php:154
+#: ../../server/search.ajax.php:88 ../../templates/browse_filters.inc.php:63
+#: ../../templates/show_artist.inc.php:136
+#: ../../templates/show_artists.inc.php:36
#: ../../templates/show_artists.inc.php:75
#: ../../templates/show_random.inc.php:28
-#: ../../templates/show_recommended_artists.inc.php:34
-#: ../../templates/show_recommended_artists.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:33
+#: ../../templates/show_recommended_artists.inc.php:82
#: ../../templates/show_search.inc.php:29
#: ../../templates/show_stats.inc.php:32
-#: ../../templates/sidebar_home.inc.php:34
-#: ../../templates/sidebar_home.inc.php:91
+#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:102
msgid "Albums"
msgstr "Album"
-#: ../../lib/class/browse.class.php:154
+#: ../../lib/class/browse.class.php:159
msgid "Manage Users"
msgstr "Hantera användare"
-#: ../../lib/class/browse.class.php:164
-#: ../../templates/sidebar_home.inc.php:39
+#: ../../lib/class/browse.class.php:169
+#: ../../templates/sidebar_home.inc.php:42
msgid "Radio Stations"
msgstr "Radiostationer"
-#: ../../lib/class/browse.class.php:169
-#: ../../templates/sidebar_home.inc.php:37
+#: ../../lib/class/browse.class.php:174 ../../server/search.ajax.php:146
+#: ../../templates/header.inc.php:291 ../../templates/sidebar_home.inc.php:36
+#: ../../templates/sidebar_home.inc.php:104
msgid "Playlists"
msgstr "Spellistor"
-#: ../../lib/class/browse.class.php:173
+#: ../../lib/class/browse.class.php:178
msgid "Playlist Songs"
msgstr "Låtar i spellista"
-#: ../../lib/class/browse.class.php:177
+#: ../../lib/class/browse.class.php:182
msgid "Current Playlist"
msgstr "Aktuell spellista"
-#: ../../lib/class/browse.class.php:182
-#: ../../templates/sidebar_home.inc.php:38
+#: ../../lib/class/browse.class.php:187
+#: ../../templates/sidebar_home.inc.php:37
#, fuzzy
msgid "Smart Playlists"
msgstr "Importera spellista"
-#: ../../lib/class/browse.class.php:186 ../../templates/show_stats.inc.php:27
+#: ../../lib/class/browse.class.php:191 ../../templates/show_stats.inc.php:27
#: ../../templates/sidebar_admin.inc.php:24
msgid "Catalogs"
msgstr "Kataloger"
-#: ../../lib/class/browse.class.php:190
+#: ../../lib/class/browse.class.php:195
msgid "Shoutbox Records"
msgstr "Chattinlägg"
-#: ../../lib/class/browse.class.php:200 ../../templates/show_search.inc.php:31
+#: ../../lib/class/browse.class.php:205 ../../templates/show_search.inc.php:31
#: ../../templates/show_stats.inc.php:35 ../../templates/show_stats.inc.php:71
-#: ../../templates/sidebar_home.inc.php:40
-#: ../../templates/sidebar_home.inc.php:93
+#: ../../templates/sidebar_home.inc.php:43
+#: ../../templates/sidebar_home.inc.php:105
msgid "Videos"
msgstr "Videor"
-#: ../../lib/class/browse.class.php:204
+#: ../../lib/class/browse.class.php:209
#: ../../templates/show_democratic.inc.php:23
msgid "Democratic Playlist"
msgstr "Demokratisk spellista"
-#: ../../lib/class/browse.class.php:208
+#: ../../lib/class/browse.class.php:213
#, fuzzy
msgid "Wanted Albums"
msgstr "Relaterat album"
-#: ../../lib/class/browse.class.php:254 ../../templates/rightbar.inc.php:112
-#: ../../templates/show_recently_played.inc.php:143
+#: ../../lib/class/browse.class.php:217
+#: ../../templates/sidebar_home.inc.php:93
+#, fuzzy
+msgid "Shared Objects"
+msgstr "Objekt"
+
+#: ../../lib/class/browse.class.php:225
+#: ../../templates/sidebar_home.inc.php:38
+#, fuzzy
+msgid "Channels"
+msgstr "Spara ändringar"
+
+#: ../../lib/class/browse.class.php:229
+#: ../../templates/sidebar_home.inc.php:40
+msgid "Broadcasts"
+msgstr ""
+
+#: ../../lib/class/browse.class.php:271 ../../templates/rightbar.inc.php:124
+#: ../../templates/show_recently_played.inc.php:157
msgid "More"
msgstr "Mer"
-#: ../../lib/class/catalog.class.php:332 ../../lib/class/catalog.class.php:335
-#: ../../lib/class/catalog.class.php:338 ../../lib/class/user.class.php:744
-#: ../../lib/preferences.php:284 ../../templates/show_user.inc.php:23
-#: ../../templates/show_users.inc.php:54
+#: ../../lib/class/catalog.class.php:334 ../../lib/class/catalog.class.php:337
+#: ../../lib/class/catalog.class.php:340 ../../lib/class/user.class.php:828
+#: ../../lib/preferences.php:296 ../../templates/show_user.inc.php:23
+#: ../../templates/show_users.inc.php:57
msgid "Never"
msgstr "Aldrig"
-#: ../../lib/class/catalog.class.php:420
+#: ../../lib/class/catalog.class.php:385
+msgid "day"
+msgid_plural "days"
+msgstr[0] "dygn"
+msgstr[1] "dygn"
+
+#: ../../lib/class/catalog.class.php:387
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "timme"
+msgstr[1] "timmar"
+
+#: ../../lib/class/catalog.class.php:422
msgid "Catalog Insert Failed check debug logs"
msgstr ""
-#: ../../lib/class/catalog.class.php:812
+#: ../../lib/class/catalog.class.php:881
msgid "No Update Needed"
msgstr "Ingen uppdatering är nödvändig"
-#: ../../lib/class/catalog.class.php:985
+#: ../../lib/class/catalog.class.php:1035
+#, fuzzy, php-format
+msgid "Catalog Clean Done. %d file removed."
+msgid_plural "Catalog Clean Done. %d files removed."
+msgstr[0] "Tömning av katalog färdig"
+msgstr[1] "Tömning av katalog färdig"
+
+#: ../../lib/class/catalog.class.php:1054
#, fuzzy, php-format
msgid "Catalog Verify Done. %d of %d files updated."
msgstr "Tömning av katalog färdig"
+#: ../../lib/class/catalog.class.php:1204
+#, fuzzy
+msgid "Failed to create playlist."
+msgstr "Kunde inte skapa nytt konto"
+
+#: ../../lib/class/catalog.class.php:1221
+msgid "No valid songs found in playlist file."
+msgstr ""
+
+#: ../../lib/class/channel.class.php:154
+#, fuzzy
+msgid "Start Channel"
+msgstr "Spara ändringar"
+
+#: ../../lib/class/channel.class.php:155
+msgid "Stop Channel"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:156
+msgid "Channel edit"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:245
+#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:831
+#: ../../lib/general.lib.php:222
+#: ../../modules/localplay/mpd.controller.php:503
+#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:58
+msgid "Unknown"
+msgstr "Okänd"
+
+#: ../../lib/class/channel.class.php:248
+msgid "Running"
+msgstr ""
+
+#: ../../lib/class/channel.class.php:250
+#: ../../lib/class/localplay.class.php:630
+msgid "Stopped"
+msgstr "Stoppad"
+
#: ../../lib/class/democratic.class.php:147 ../../lib/class/video.class.php:78
#: ../../templates/show_create_democratic.inc.php:36
msgid "minutes"
@@ -1101,34 +1403,23 @@ msgid "Primary"
msgstr "Primär"
#: ../../lib/class/democratic.class.php:158
-#: ../../templates/show_add_user.inc.php:76
-#: ../../templates/show_edit_user.inc.php:79
-#: ../../templates/show_preference_box.inc.php:61
+#: ../../templates/show_add_user.inc.php:84
+#: ../../templates/show_edit_user.inc.php:87
+#: ../../templates/show_preference_box.inc.php:64
msgid "Content Manager"
msgstr "Innehållshanterare"
#: ../../lib/class/democratic.class.php:161
-#: ../../templates/show_add_user.inc.php:77
-#: ../../templates/show_edit_user.inc.php:80
-#: ../../templates/show_preference_box.inc.php:62
+#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_edit_user.inc.php:88
+#: ../../templates/show_preference_box.inc.php:65
msgid "Catalog Manager"
msgstr "Kataloghanterare"
-#: ../../lib/class/localplay.class.php:630
-msgid "Stopped"
-msgstr "Stoppad"
-
#: ../../lib/class/localplay.class.php:633
msgid "Paused"
msgstr "Pausad"
-#: ../../lib/class/localplay.class.php:636 ../../lib/class/user.class.php:747
-#: ../../lib/general.lib.php:222
-#: ../../modules/localplay/mpd.controller.php:503
-#: ../../templates/show_user.inc.php:24 ../../templates/show_users.inc.php:55
-msgid "Unknown"
-msgstr "Okänd"
-
#: ../../lib/class/playlist_object.abstract.php:43
#: ../../templates/show_edit_playlist_row.inc.php:37
#: ../../templates/show_edit_smartplaylist_row.inc.php:37
@@ -1161,22 +1452,6 @@ msgstr ""
msgid "Invalid Catalog"
msgstr "Lägg till katalog"
-#: ../../lib/class/random.class.php:371 ../../templates/rightbar.inc.php:66
-msgid "Related Album"
-msgstr "Relaterat album"
-
-#: ../../lib/class/random.class.php:374
-msgid "Related Genre"
-msgstr "Relaterad genre"
-
-#: ../../lib/class/random.class.php:377 ../../templates/rightbar.inc.php:63
-msgid "Related Artist"
-msgstr "Relaterad artist"
-
-#: ../../lib/class/random.class.php:380 ../../templates/rightbar.inc.php:60
-msgid "Pure Random"
-msgstr "Helt slumpmässigt"
-
#: ../../lib/class/registration.class.php:52
#, php-format
msgid "New User Registration at %s"
@@ -1192,7 +1467,6 @@ msgid ""
"follows:\n"
"----------------------\n"
"Username: %s\n"
-"Password: %s\n"
"----------------------\n"
"\n"
"Your account is currently inactive. You cannot use it until you've visited "
@@ -1218,8 +1492,8 @@ msgstr ""
"\n"
"Tack för att du registrerade dig\n"
-#: ../../lib/class/registration.class.php:75
-#, php-format
+#: ../../lib/class/registration.class.php:74
+#, fuzzy, php-format
msgid ""
"A new user has registered\n"
"The following values were entered.\n"
@@ -1227,6 +1501,7 @@ msgid ""
"Username: %s\n"
"Fullname: %s\n"
"E-mail: %s\n"
+"Website: %s\n"
"\n"
msgstr ""
"En ny användare har registerats\n"
@@ -1309,107 +1584,107 @@ msgstr ""
msgid "Any searchable text"
msgstr ""
-#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:373
-#: ../../templates/show_democratic_playlist.inc.php:58
-#: ../../templates/show_democratic_playlist.inc.php:98
-#: ../../templates/show_disabled_songs.inc.php:28
-#: ../../templates/show_disabled_songs.inc.php:50
+#: ../../lib/class/search.class.php:203 ../../lib/class/search.class.php:380
+#: ../../templates/show_democratic_playlist.inc.php:57
+#: ../../templates/show_democratic_playlist.inc.php:104
+#: ../../templates/show_disabled_songs.inc.php:29
+#: ../../templates/show_disabled_songs.inc.php:55
#: ../../templates/show_duplicate.inc.php:29
#: ../../templates/show_edit_song_row.inc.php:27
#: ../../templates/show_search_bar.inc.php:31
-#: ../../templates/show_song.inc.php:81 ../../templates/show_videos.inc.php:33
-#: ../../templates/show_videos.inc.php:60
+#: ../../templates/show_song.inc.php:85 ../../templates/show_videos.inc.php:30
+#: ../../templates/show_videos.inc.php:59
msgid "Title"
msgstr "Titel"
-#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:37
+#: ../../lib/class/search.class.php:210 ../../templates/show_albums.inc.php:34
#: ../../templates/show_albums.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:59
-#: ../../templates/show_democratic_playlist.inc.php:99
-#: ../../templates/show_disabled_songs.inc.php:29
-#: ../../templates/show_disabled_songs.inc.php:51
+#: ../../templates/show_democratic_playlist.inc.php:58
+#: ../../templates/show_democratic_playlist.inc.php:105
+#: ../../templates/show_disabled_songs.inc.php:30
+#: ../../templates/show_disabled_songs.inc.php:56
#: ../../templates/show_duplicates.inc.php:30
#: ../../templates/show_duplicates.inc.php:69
#: ../../templates/show_edit_song_row.inc.php:40
#: ../../templates/show_get_albumart.inc.php:36
#: ../../templates/show_lyrics.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:26
-#: ../../templates/show_now_playing_row.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:36
-#: ../../templates/show_playlist_songs.inc.php:73
-#: ../../templates/show_recently_played.inc.php:34
-#: ../../templates/show_recently_played.inc.php:130
+#: ../../templates/show_missing_albums.inc.php:27
+#: ../../templates/show_now_playing_row.inc.php:43
+#: ../../templates/show_playlist_songs.inc.php:34
+#: ../../templates/show_playlist_songs.inc.php:71
+#: ../../templates/show_recently_played.inc.php:32
+#: ../../templates/show_recently_played.inc.php:142
#: ../../templates/show_search_bar.inc.php:32
-#: ../../templates/show_song.inc.php:83
-#: ../../templates/show_song_previews.inc.php:33
-#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:83
-#: ../../templates/show_wanted_albums.inc.php:25
-#: ../../templates/sidebar_home.inc.php:65
+#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song_previews.inc.php:34
+#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:78
+#: ../../templates/show_wanted_albums.inc.php:26
+#: ../../templates/sidebar_home.inc.php:71
msgid "Album"
msgstr "Album"
#: ../../lib/class/search.class.php:217
-#: ../../templates/browse_filters.inc.php:61
-#: ../../templates/show_albums.inc.php:38
-#: ../../templates/show_albums.inc.php:77
-#: ../../templates/show_artists.inc.php:36
-#: ../../templates/show_artists.inc.php:73
-#: ../../templates/show_democratic_playlist.inc.php:60
-#: ../../templates/show_democratic_playlist.inc.php:100
-#: ../../templates/show_disabled_songs.inc.php:30
-#: ../../templates/show_disabled_songs.inc.php:52
+#: ../../templates/browse_filters.inc.php:66
+#: ../../templates/show_albums.inc.php:36
+#: ../../templates/show_albums.inc.php:78
+#: ../../templates/show_artists.inc.php:33
+#: ../../templates/show_artists.inc.php:72
+#: ../../templates/show_democratic_playlist.inc.php:59
+#: ../../templates/show_democratic_playlist.inc.php:106
+#: ../../templates/show_disabled_songs.inc.php:31
+#: ../../templates/show_disabled_songs.inc.php:57
#: ../../templates/show_duplicates.inc.php:29
#: ../../templates/show_duplicates.inc.php:68
#: ../../templates/show_edit_album_row.inc.php:31
#: ../../templates/show_edit_song_row.inc.php:31
#: ../../templates/show_get_albumart.inc.php:28
#: ../../templates/show_lyrics.inc.php:58
-#: ../../templates/show_missing_albums.inc.php:27
-#: ../../templates/show_now_playing_row.inc.php:60
-#: ../../templates/show_playlist_songs.inc.php:35
-#: ../../templates/show_playlist_songs.inc.php:72
-#: ../../templates/show_recently_played.inc.php:35
-#: ../../templates/show_recently_played.inc.php:131
-#: ../../templates/show_recommended_artists.inc.php:32
-#: ../../templates/show_recommended_artists.inc.php:70
+#: ../../templates/show_missing_albums.inc.php:28
+#: ../../templates/show_now_playing_row.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:33
+#: ../../templates/show_playlist_songs.inc.php:70
+#: ../../templates/show_recently_played.inc.php:33
+#: ../../templates/show_recently_played.inc.php:143
+#: ../../templates/show_recommended_artists.inc.php:30
+#: ../../templates/show_recommended_artists.inc.php:79
#: ../../templates/show_search_bar.inc.php:33
-#: ../../templates/show_song.inc.php:82
-#: ../../templates/show_song_previews.inc.php:32
-#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:82
-#: ../../templates/show_wanted_albums.inc.php:26
-#: ../../templates/sidebar_home.inc.php:66
+#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song_previews.inc.php:33
+#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:77
+#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/sidebar_home.inc.php:72
msgid "Artist"
msgstr "Artist"
#: ../../lib/class/search.class.php:224
#: ../../templates/show_manage_shoutbox.inc.php:30
#: ../../templates/show_manage_shoutbox.inc.php:54
-#: ../../templates/show_song.inc.php:86
+#: ../../templates/show_song.inc.php:90
msgid "Comment"
msgstr "Kommentar"
-#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:419
-#: ../../lib/class/search.class.php:441
-#: ../../templates/show_search_bar.inc.php:34
+#: ../../lib/class/search.class.php:232 ../../lib/class/search.class.php:426
+#: ../../lib/class/search.class.php:448
+#: ../../templates/show_search_bar.inc.php:35
msgid "Tag"
msgstr "Tagg"
-#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:427
-#: ../../templates/show_disabled_songs.inc.php:31
-#: ../../templates/show_disabled_songs.inc.php:53
+#: ../../lib/class/search.class.php:239 ../../lib/class/search.class.php:434
+#: ../../templates/show_disabled_songs.inc.php:32
+#: ../../templates/show_disabled_songs.inc.php:58
#: ../../templates/show_duplicates.inc.php:34
#: ../../templates/show_duplicates.inc.php:73
#: ../../templates/show_import_playlist.inc.php:28
-#: ../../templates/show_song.inc.php:92
+#: ../../templates/show_song.inc.php:96
msgid "Filename"
msgstr "Filnamn"
-#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:380
-#: ../../templates/show_albums.inc.php:40
-#: ../../templates/show_albums.inc.php:79
+#: ../../lib/class/search.class.php:246 ../../lib/class/search.class.php:387
+#: ../../templates/show_albums.inc.php:38
+#: ../../templates/show_albums.inc.php:80
#: ../../templates/show_edit_album_row.inc.php:43
-#: ../../templates/show_missing_albums.inc.php:28
-#: ../../templates/show_wanted_albums.inc.php:27
+#: ../../templates/show_missing_albums.inc.php:29
+#: ../../templates/show_wanted_albums.inc.php:28
msgid "Year"
msgstr "År"
@@ -1417,40 +1692,43 @@ msgstr "År"
msgid "Length (in minutes)"
msgstr ""
-#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:388
-#: ../../templates/show_albums.inc.php:43
-#: ../../templates/show_albums.inc.php:82
-#: ../../templates/show_artists.inc.php:42
+#: ../../lib/class/search.class.php:261 ../../lib/class/search.class.php:395
+#: ../../templates/show_albums.inc.php:41
+#: ../../templates/show_albums.inc.php:83
+#: ../../templates/show_artists.inc.php:40
#: ../../templates/show_artists.inc.php:79
-#: ../../templates/show_now_playing_row.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:77
-#: ../../templates/show_recommended_artists.inc.php:38
-#: ../../templates/show_recommended_artists.inc.php:76
-#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:44
-#: ../../templates/show_songs.inc.php:88
+#: ../../templates/show_now_playing_row.inc.php:91
+#: ../../templates/show_playlist_songs.inc.php:40
+#: ../../templates/show_playlist_songs.inc.php:75
+#: ../../templates/show_recommended_artists.inc.php:37
+#: ../../templates/show_recommended_artists.inc.php:86
+#: ../../templates/show_song.inc.php:31 ../../templates/show_songs.inc.php:41
+#: ../../templates/show_songs.inc.php:82
msgid "Rating"
msgstr "Betyg"
-#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:99
+#: ../../lib/class/search.class.php:279 ../../templates/show_song.inc.php:103
#, fuzzy
msgid "# Played"
msgstr "Spelad"
#: ../../lib/class/search.class.php:287
+#: ../../templates/show_add_channel.inc.php:102
+#: ../../templates/show_channels.inc.php:37
#: ../../templates/show_duplicates.inc.php:32
#: ../../templates/show_duplicates.inc.php:71
-#: ../../templates/show_song.inc.php:90
+#: ../../templates/show_edit_channel_row.inc.php:67
+#: ../../templates/show_song.inc.php:94
msgid "Bitrate"
msgstr "Bitfrekvens"
-#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
+#: ../../lib/class/search.class.php:312 ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
msgid "Played"
msgstr "Spelad"
-#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:411
-#: ../../templates/browse_filters.inc.php:67
+#: ../../lib/class/search.class.php:339 ../../lib/class/search.class.php:418
+#: ../../templates/browse_filters.inc.php:72
#: ../../templates/show_add_live_stream.inc.php:54
#: ../../templates/show_export.inc.php:32
msgid "Catalog"
@@ -1458,155 +1736,142 @@ msgstr "Katalog"
#: ../../lib/class/search.class.php:352 ../../lib/ui.lib.php:113
#: ../../templates/show_manage_democratic.inc.php:26
-#: ../../templates/sidebar_home.inc.php:45
-#: ../../templates/sidebar_home.inc.php:67
+#: ../../templates/show_search_bar.inc.php:34
+#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:73
msgid "Playlist"
msgstr "Spellista"
-#: ../../lib/class/search.class.php:365
+#: ../../lib/class/search.class.php:359
+#: ../../templates/show_playlists.inc.php:28
+#: ../../templates/show_playlists.inc.php:56
+#: ../../templates/show_smartplaylists.inc.php:29
+#: ../../templates/show_smartplaylists.inc.php:55
+msgid "Playlist Name"
+msgstr "Spellista"
+
+#: ../../lib/class/search.class.php:372
#, fuzzy
msgid "Smart Playlist"
msgstr "Importera spellista"
-#: ../../lib/class/search.class.php:435
-#: ../../templates/show_access_list.inc.php:50
+#: ../../lib/class/search.class.php:442 ../../lib/class/search.class.php:456
+#: ../../templates/show_access_list.inc.php:51
#: ../../templates/show_account.inc.php:29
#: ../../templates/show_add_access.inc.php:27
+#: ../../templates/show_add_channel.inc.php:35
#: ../../templates/show_add_live_stream.inc.php:27
#: ../../templates/show_add_playlist.inc.php:27
-#: ../../templates/show_catalogs.inc.php:26
-#: ../../templates/show_catalogs.inc.php:50
+#: ../../templates/show_broadcasts.inc.php:29
+#: ../../templates/show_catalogs.inc.php:27
+#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_channels.inc.php:30
#: ../../templates/show_create_democratic.inc.php:27
#: ../../templates/show_edit_access.inc.php:27
#: ../../templates/show_edit_album_row.inc.php:27
#: ../../templates/show_edit_artist_row.inc.php:27
+#: ../../templates/show_edit_broadcast_row.inc.php:27
#: ../../templates/show_edit_catalog.inc.php:28
+#: ../../templates/show_edit_channel_row.inc.php:27
#: ../../templates/show_edit_live_stream_row.inc.php:27
#: ../../templates/show_edit_playlist_row.inc.php:27
#: ../../templates/show_edit_smartplaylist_row.inc.php:27
-#: ../../templates/show_live_streams.inc.php:33
-#: ../../templates/show_live_streams.inc.php:57
-#: ../../templates/show_localplay_controllers.inc.php:28
-#: ../../templates/show_localplay_controllers.inc.php:58
-#: ../../templates/show_localplay_playlist.inc.php:31
-#: ../../templates/show_localplay_playlist.inc.php:57
-#: ../../templates/show_plugins.inc.php:28
-#: ../../templates/show_plugins.inc.php:64
+#: ../../templates/show_edit_tag_row.inc.php:27
+#: ../../templates/show_live_streams.inc.php:30
+#: ../../templates/show_live_streams.inc.php:56
+#: ../../templates/show_localplay_controllers.inc.php:29
+#: ../../templates/show_localplay_controllers.inc.php:63
+#: ../../templates/show_localplay_playlist.inc.php:32
+#: ../../templates/show_localplay_playlist.inc.php:62
+#: ../../templates/show_plugins.inc.php:29
+#: ../../templates/show_plugins.inc.php:69
#: ../../templates/show_stats.inc.php:65
msgid "Name"
msgstr "Namn"
-#: ../../lib/class/shoutbox.class.php:260 ../../templates/rightbar.inc.php:25
-#: ../../templates/show_albums.inc.php:31
-#: ../../templates/show_albums.inc.php:70
-#: ../../templates/show_artists.inc.php:33
-#: ../../templates/show_artists.inc.php:70
+#: ../../lib/class/shoutbox.class.php:263 ../../templates/rightbar.inc.php:25
+#: ../../templates/show_album_group_disks.inc.php:54
+#: ../../templates/show_album_group_disks.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:105
+#: ../../templates/show_album.inc.php:75 ../../templates/show_album.inc.php:76
+#: ../../templates/show_album_row.inc.php:27
+#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_broadcast_row.inc.php:27
+#: ../../templates/show_channel_row.inc.php:27
#: ../../templates/show_democratic.inc.php:40
-#: ../../templates/show_live_streams.inc.php:30
-#: ../../templates/show_live_streams.inc.php:54
#: ../../templates/show_localplay_control.inc.php:27
#: ../../templates/show_manage_democratic.inc.php:49
-#: ../../templates/show_playlists.inc.php:27
-#: ../../templates/show_playlists.inc.php:53
-#: ../../templates/show_playlist_songs.inc.php:30
+#: ../../templates/show_missing_album.inc.php:56
+#: ../../templates/show_missing_album.inc.php:57
+#: ../../templates/show_playlist_row.inc.php:27
+#: ../../templates/show_playlist_song_row.inc.php:27
#: ../../templates/show_playlist_songs.inc.php:67
-#: ../../templates/show_recently_played.inc.php:30
-#: ../../templates/show_recently_played.inc.php:125
-#: ../../templates/show_recommended_artists.inc.php:29
-#: ../../templates/show_recommended_artists.inc.php:67
-#: ../../templates/show_smartplaylists.inc.php:30
-#: ../../templates/show_smartplaylists.inc.php:54
-#: ../../templates/show_song_previews.inc.php:27
-#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:78
-#: ../../templates/show_videos.inc.php:30
-#: ../../templates/show_videos.inc.php:57
+#: ../../templates/show_random_albums.inc.php:46
+#: ../../templates/show_recently_played.inc.php:97
+#: ../../templates/show_smartplaylist_row.inc.php:27
+#: ../../templates/show_song.inc.php:59
+#: ../../templates/show_song_preview_row.inc.php:26
+#: ../../templates/show_song_row.inc.php:27
+#: ../../templates/show_video_row.inc.php:27
msgid "Play"
msgstr "Spela"
-#. HINT: Artist Fullname
-#: ../../lib/class/shoutbox.class.php:261
+#: ../../lib/class/shoutbox.class.php:264
#: ../../templates/show_add_live_stream.inc.php:62
-#: ../../templates/show_album.inc.php:79
-#: ../../templates/show_album_row.inc.php:33
-#: ../../templates/show_albums.inc.php:33
-#: ../../templates/show_albums.inc.php:72
-#: ../../templates/show_artist.inc.php:90
-#: ../../templates/show_artist_row.inc.php:32
-#: ../../templates/show_artists.inc.php:35
-#: ../../templates/show_artists.inc.php:72
#: ../../templates/show_catalog_row.inc.php:34
#: ../../templates/show_live_stream.inc.php:27
-#: ../../templates/show_live_stream_row.inc.php:29
-#: ../../templates/show_live_streams.inc.php:32
-#: ../../templates/show_live_streams.inc.php:56
-#: ../../templates/show_playlist_row.inc.php:32
-#: ../../templates/show_playlists.inc.php:29
-#: ../../templates/show_playlists.inc.php:55
-#: ../../templates/show_playlist_song_row.inc.php:31
-#: ../../templates/show_playlist_songs.inc.php:32
-#: ../../templates/show_playlist_songs.inc.php:69
-#: ../../templates/show_recently_played.inc.php:32
-#: ../../templates/show_recently_played.inc.php:100
-#: ../../templates/show_recently_played.inc.php:127
-#: ../../templates/show_recommended_artists.inc.php:31
-#: ../../templates/show_recommended_artists.inc.php:69
-#: ../../templates/show_smartplaylist_row.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:32
-#: ../../templates/show_smartplaylists.inc.php:56
-#: ../../templates/show_song.inc.php:64
-#: ../../templates/show_song_previews.inc.php:29
-#: ../../templates/show_song_row.inc.php:32
-#: ../../templates/show_songs.inc.php:33 ../../templates/show_songs.inc.php:80
-#: ../../templates/show_video_row.inc.php:32
-#: ../../templates/show_videos.inc.php:32
-#: ../../templates/show_videos.inc.php:59
msgid "Add"
msgstr "Lägg till"
-#: ../../lib/class/shoutbox.class.php:263
-#: ../../templates/show_album.inc.php:110
-#: ../../templates/show_album.inc.php:111
-#: ../../templates/show_album_row.inc.php:60
-#: ../../templates/show_html5_player.inc.php:129
-#: ../../templates/show_html5_player.inc.php:134
-#: ../../templates/show_song.inc.php:67
-#: ../../templates/show_song_row.inc.php:50
+#: ../../lib/class/shoutbox.class.php:266
+#: ../../templates/show_album_group_disks.inc.php:118
+#: ../../templates/show_album.inc.php:117
+#: ../../templates/show_album.inc.php:118
+#: ../../templates/show_album_row.inc.php:67
+#: ../../templates/show_html5_player.inc.php:242
+#: ../../templates/show_html5_player.inc.php:248
+#: ../../templates/show_song.inc.php:68
+#: ../../templates/show_song_row.inc.php:61
msgid "Post Shout"
msgstr "Posta inlägg"
-#: ../../lib/class/song.class.php:874
-#: ../../templates/show_html5_player.inc.php:126
+#: ../../lib/class/song.class.php:872
+#: ../../templates/show_html5_player.inc.php:239
msgid "Show Lyrics"
msgstr "Visa låttexter"
-#: ../../lib/class/update.class.php:396
+#: ../../lib/class/update.class.php:438
#, fuzzy
msgid "No updates needed."
msgstr "Ingen uppdatering är nödvändig"
-#: ../../lib/class/user.class.php:767 ../../templates/show_objects.inc.php:44
-#: ../../templates/show_tagcloud.inc.php:34
-#: ../../templates/show_user_recommendations.inc.php:32
-#: ../../templates/show_user_recommendations.inc.php:42
-#: ../../templates/show_user_recommendations.inc.php:52
-#: ../../templates/show_user_stats.inc.php:34
-#: ../../templates/show_user_stats.inc.php:46
-#: ../../templates/show_user_stats.inc.php:58
+#: ../../lib/class/user.class.php:851 ../../templates/show_objects.inc.php:44
+#: ../../templates/show_tagcloud.inc.php:48
msgid "Not Enough Data"
msgstr "Inte tillräckligt med data"
-#: ../../lib/class/wanted.class.php:228
+#: ../../lib/class/user.class.php:1182
+#, fuzzy
+msgid "User avatar"
+msgstr "Användare aktiverad"
+
+#: ../../lib/class/wanted.class.php:145
+#, fuzzy
+msgid "Unknown Artist"
+msgstr "Okänd"
+
+#: ../../lib/class/wanted.class.php:272
#, fuzzy
msgid "Accept"
msgstr "Jag godkänner"
-#: ../../lib/class/wanted.class.php:232
+#: ../../lib/class/wanted.class.php:276
#: ../../lib/javascript/search-data.php:51
-#: ../../templates/show_disabled_songs.inc.php:58
+#: ../../templates/show_disabled_songs.inc.php:64
msgid "Remove"
msgstr "Ta bort"
-#: ../../lib/class/wanted.class.php:235
+#: ../../lib/class/wanted.class.php:279
#, fuzzy
msgid "Add to wanted list"
msgstr "Lägg till i spellista"
@@ -1690,136 +1955,141 @@ msgstr "Databasens teckenuppsättning uppdaterad"
msgid "Administrative user creation failed: %s"
msgstr "Användare aktiverad"
-#: ../../lib/preferences.php:184 ../../lib/preferences.php:292
-#: ../../templates/show_user_row.inc.php:44
+#: ../../lib/login.php:82
+msgid "Error Username or Password incorrect, please try again"
+msgstr "Fel: Användarnamnet eller lösenordet är felaktigt. Försök igen"
+
+#: ../../lib/login.php:102
+msgid "User Disabled please contact Admin"
+msgstr "Användare inaktiverad. Kontakta administratören"
+
+#: ../../lib/login.php:110
+msgid "User Already Logged in"
+msgstr "Användaren redan inloggad"
+
+#: ../../lib/login.php:131
+#, fuzzy
+msgid "Unable to create local account"
+msgstr "Kunde inte skapa nytt konto"
+
+#: ../../lib/preferences.php:191 ../../lib/preferences.php:310
+#: ../../templates/show_user_row.inc.php:49
msgid "Enable"
msgstr "Aktivera"
-#: ../../lib/preferences.php:185 ../../lib/preferences.php:293
-#: ../../templates/show_catalog_types.inc.php:40
+#: ../../lib/preferences.php:192 ../../lib/preferences.php:311
+#: ../../templates/show_catalog_types.inc.php:43
#: ../../templates/show_duplicates.inc.php:27
#: ../../templates/show_duplicates.inc.php:66
-#: ../../templates/show_localplay_controllers.inc.php:40
-#: ../../templates/show_user_row.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:43
+#: ../../templates/show_user_row.inc.php:51
msgid "Disable"
msgstr "Inaktivera"
-#: ../../lib/preferences.php:191 ../../lib/preferences.php:228
+#: ../../lib/preferences.php:210 ../../lib/preferences.php:247
#: ../../lib/ui.lib.php:330 ../../templates/show_adds_catalog.inc.php:27
#: ../../templates/show_gather_art.inc.php:25
#: ../../templates/sidebar_localplay.inc.php:45
msgid "None"
msgstr "Ingen"
-#: ../../lib/preferences.php:193 ../../templates/show_edit_user.inc.php:96
+#: ../../lib/preferences.php:212 ../../templates/show_edit_user.inc.php:122
#: ../../templates/show_playtype_switch.inc.php:33
msgid "Stream"
msgstr "Strömmande"
-#: ../../lib/preferences.php:196
+#: ../../lib/preferences.php:215
#: ../../modules/localplay/httpq.controller.php:471
#: ../../modules/localplay/mpd.controller.php:469
#: ../../modules/localplay/vlc.controller.php:479
-#: ../../templates/show_edit_user.inc.php:93
+#: ../../templates/show_edit_user.inc.php:119
#: ../../templates/show_playtype_switch.inc.php:37
-#: ../../templates/sidebar_home.inc.php:49
+#: ../../templates/sidebar_home.inc.php:53
#: ../../templates/sidebar_modules.inc.php:39
msgid "Democratic"
msgstr "Demokratisk"
-#: ../../lib/preferences.php:199 ../../templates/show_edit_user.inc.php:94
+#: ../../lib/preferences.php:218 ../../templates/show_edit_user.inc.php:120
#: ../../templates/show_playtype_switch.inc.php:35
-#: ../../templates/sidebar_home.inc.php:58 ../../templates/sidebar.inc.php:29
+#: ../../templates/sidebar_home.inc.php:62 ../../templates/sidebar.inc.php:30
#: ../../templates/sidebar_localplay.inc.php:33
msgid "Localplay"
msgstr "Lokal uppspelning"
-#: ../../lib/preferences.php:201
+#: ../../lib/preferences.php:220
#: ../../templates/show_playtype_switch.inc.php:39
#, fuzzy
msgid "Web Player"
msgstr "XSPF-spelare"
-#: ../../lib/preferences.php:208
+#: ../../lib/preferences.php:227
msgid "M3U"
msgstr "M3U"
-#: ../../lib/preferences.php:209
+#: ../../lib/preferences.php:228
msgid "Simple M3U"
msgstr "Enkel M3U"
-#: ../../lib/preferences.php:210
+#: ../../lib/preferences.php:229
msgid "PLS"
msgstr "PLS"
-#: ../../lib/preferences.php:211
+#: ../../lib/preferences.php:230
msgid "Asx"
msgstr "Asx"
-#: ../../lib/preferences.php:212
+#: ../../lib/preferences.php:231
msgid "RAM"
msgstr "RAM"
-#: ../../lib/preferences.php:213
+#: ../../lib/preferences.php:232
msgid "XSPF"
msgstr "XSPF"
-#: ../../lib/preferences.php:240
+#: ../../lib/preferences.php:268
msgid "Disabled"
msgstr "Inaktiverad"
-#: ../../lib/preferences.php:242
+#: ../../lib/preferences.php:270
msgid "Manager"
msgstr "Manager"
-#: ../../lib/preferences.php:259
+#: ../../lib/preferences.php:287
msgid "Send on Add"
msgstr "Skicka vid Lägg till"
-#: ../../lib/preferences.php:260
+#: ../../lib/preferences.php:288
msgid "Send and Clear on Add"
msgstr "Skicka och töm vid Lägg till"
-#: ../../lib/preferences.php:261
+#: ../../lib/preferences.php:289
msgid "Clear on Send"
msgstr "Töm vid sändning"
-#: ../../lib/preferences.php:262 ../../lib/preferences.php:285
-#: ../../lib/preferences.php:300
+#: ../../lib/preferences.php:290 ../../lib/preferences.php:297
+#: ../../lib/preferences.php:333
#: ../../templates/show_manage_democratic.inc.php:30
msgid "Default"
msgstr "Standard"
-#: ../../lib/preferences.php:268 ../../lib/preferences.php:276
-msgid "Low"
-msgstr ""
-
-#: ../../lib/preferences.php:269 ../../lib/preferences.php:277
-msgid "Medium"
-msgstr ""
-
-#: ../../lib/preferences.php:270 ../../lib/preferences.php:278
-msgid "High"
-msgstr ""
-
-#: ../../lib/preferences.php:286
+#: ../../lib/preferences.php:298
msgid "Always"
msgstr "Alltid"
-#: ../../lib/preferences.php:301
+#: ../../lib/preferences.php:334
#, fuzzy
msgid "Year ascending"
msgstr "Omkodning"
-#: ../../lib/preferences.php:302
+#: ../../lib/preferences.php:335
msgid "Year descending"
msgstr ""
-#: ../../lib/preferences.php:303
+#: ../../lib/preferences.php:336
msgid "Name ascending"
msgstr ""
-#: ../../lib/preferences.php:304
+#: ../../lib/preferences.php:337
msgid "Name descending"
msgstr ""
@@ -1851,7 +2121,8 @@ msgstr "Det är sjukt bra"
msgid "Off the Charts!"
msgstr "Helt underbart!"
-#: ../../lib/ui.lib.php:101 ../../templates/sidebar.inc.php:28
+#: ../../lib/ui.lib.php:101 ../../templates/header.inc.php:279
+#: ../../templates/sidebar.inc.php:29
msgid "Home"
msgstr "Hem"
@@ -1867,14 +2138,14 @@ msgstr "Lokal uppspelning"
msgid "Random Play"
msgstr "Slumpmässig uppspelning"
-#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:36
+#: ../../lib/ui.lib.php:116 ../../templates/show_search_bar.inc.php:37
#: ../../templates/show_search.inc.php:53
-#: ../../templates/sidebar_home.inc.php:88
+#: ../../templates/sidebar_home.inc.php:99
msgid "Search"
msgstr "Sök"
-#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:40
-#: ../../templates/sidebar.inc.php:30
+#: ../../lib/ui.lib.php:119 ../../templates/show_user_row.inc.php:45
+#: ../../templates/sidebar.inc.php:31
#: ../../templates/sidebar_preferences.inc.php:30
msgid "Preferences"
msgstr "Inställningar"
@@ -1908,7 +2179,7 @@ msgid "Browse Music"
msgstr "Bläddra musik"
#: ../../lib/ui.lib.php:162 ../../templates/show_stats.inc.php:26
-#: ../../templates/sidebar_home.inc.php:85
+#: ../../templates/sidebar_home.inc.php:95
msgid "Statistics"
msgstr "Statistik"
@@ -1916,31 +2187,14 @@ msgstr "Statistik"
msgid "Add New"
msgstr "Lägg till ny"
-#: ../../lib/ui.lib.php:550
+#: ../../lib/ui.lib.php:555
msgid "On"
msgstr "På"
-#: ../../lib/ui.lib.php:552
+#: ../../lib/ui.lib.php:557
msgid "Off"
msgstr "Av"
-#: ../../login.php:83
-msgid "Error Username or Password incorrect, please try again"
-msgstr "Fel: Användarnamnet eller lösenordet är felaktigt. Försök igen"
-
-#: ../../login.php:90
-msgid "User Disabled please contact Admin"
-msgstr "Användare inaktiverad. Kontakta administratören"
-
-#: ../../login.php:98
-msgid "User Already Logged in"
-msgstr "Användaren redan inloggad"
-
-#: ../../login.php:118
-#, fuzzy
-msgid "Unable to create local account"
-msgstr "Kunde inte skapa nytt konto"
-
#: ../../lostpassword.php:39
#, fuzzy
msgid "Password has been sent"
@@ -1967,11 +2221,13 @@ msgid "The password has been set to: %s"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:122
+#: ../../templates/show_edit_user.inc.php:108
msgid "API Key"
msgstr ""
#: ../../modules/catalog/dropbox.catalog.php:123
#: ../../modules/catalog/soundcloud.catalog.php:114
+#: ../../templates/show_add_share.inc.php:35
msgid "Secret"
msgstr ""
@@ -2040,11 +2296,11 @@ msgstr "E-post"
#: ../../modules/localplay/mpd.controller.php:240
#: ../../modules/localplay/vlc.controller.php:195
#: ../../modules/localplay/xbmc.controller.php:201
-#: ../../templates/show_add_user.inc.php:52
-#: ../../templates/show_edit_user.inc.php:55
-#: ../../templates/show_install_account.inc.php:42
-#: ../../templates/show_login_form.inc.php:79
-#: ../../templates/show_user_registration.inc.php:88
+#: ../../templates/show_add_user.inc.php:60
+#: ../../templates/show_edit_user.inc.php:63
+#: ../../templates/show_install_account.inc.php:57
+#: ../../templates/show_login_form.inc.php:82
+#: ../../templates/show_user_registration.inc.php:94
msgid "Password"
msgstr "Lösenord"
@@ -2111,48 +2367,48 @@ msgid "Error: Unable to change to directory %s"
msgstr "Fel: Kunde inte byta till katalogen"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:316
+#: ../../modules/catalog/local.catalog.php:320
#, php-format
msgid "Error: Unable to get filesize for %s"
msgstr "Fel: Kunde inte få filstorlek för %s"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:323
+#: ../../modules/catalog/local.catalog.php:327
#, php-format
msgid "%s is not readable by ampache"
msgstr "%s är inte läsbar av ampache"
#. HINT: FullFile
-#: ../../modules/catalog/local.catalog.php:332
+#: ../../modules/catalog/local.catalog.php:349
#, php-format
msgid "%s does not match site charset"
msgstr "%s matchar inte systemets teckenuppsättning"
-#: ../../modules/catalog/local.catalog.php:432
+#: ../../modules/catalog/local.catalog.php:451
msgid "N/A"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:436
+#: ../../modules/catalog/local.catalog.php:455
#, php-format
msgid ""
"Catalog Update Finished. Total Time: [%s] Total Songs: [%s] Songs Per "
"Second: [%s]"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:512
+#: ../../modules/catalog/local.catalog.php:531
#, php-format
msgid "%s does not exist or is not readable"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:542
+#: ../../modules/catalog/local.catalog.php:561
msgid "Catalog Root unreadable, stopping clean"
msgstr "Katalogroten inte läsbar, stoppar tömning"
-#: ../../modules/catalog/local.catalog.php:565
+#: ../../modules/catalog/local.catalog.php:584
msgid "All files would be removed. Doing nothing"
msgstr ""
-#: ../../modules/catalog/local.catalog.php:604
+#: ../../modules/catalog/local.catalog.php:623
#, php-format
msgid "Error File Not Found or 0 Bytes: %s"
msgstr ""
@@ -2167,13 +2423,13 @@ msgstr ""
#: ../../modules/localplay/xbmc.controller.php:200
#: ../../templates/show_add_user.inc.php:29
#: ../../templates/show_edit_user.inc.php:32
-#: ../../templates/show_install_account.inc.php:38
-#: ../../templates/show_login_form.inc.php:75
+#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_login_form.inc.php:78
#: ../../templates/show_now_playing_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:36
-#: ../../templates/show_recently_played.inc.php:128
-#: ../../templates/show_user_registration.inc.php:70
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_recently_played.inc.php:34
+#: ../../templates/show_recently_played.inc.php:144
+#: ../../templates/show_user_registration.inc.php:71
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Username"
msgstr "Användarnamn"
@@ -2293,20 +2549,20 @@ msgstr "Värdnamn"
#: ../../modules/localplay/mpd.controller.php:239
#: ../../modules/localplay/vlc.controller.php:194
#: ../../modules/localplay/xbmc.controller.php:199
+#: ../../templates/show_add_channel.inc.php:63
+#: ../../templates/show_channels.inc.php:32
+#: ../../templates/show_edit_channel_row.inc.php:43
msgid "Port"
msgstr "Port"
-#. HINT: Artist Fullname
#: ../../modules/localplay/httpq.controller.php:475
#: ../../modules/localplay/mpd.controller.php:473
#: ../../modules/localplay/vlc.controller.php:483
-#: ../../templates/show_album.inc.php:83
-#: ../../templates/show_album_row.inc.php:34
-#: ../../templates/show_artist.inc.php:95
-#: ../../templates/show_artist_row.inc.php:33
-#: ../../templates/show_localplay_status.inc.php:45
-#: ../../templates/show_playlist_row.inc.php:33
-#: ../../templates/sidebar_home.inc.php:63
+#: ../../templates/show_add_channel.inc.php:76
+#: ../../templates/show_channels.inc.php:34
+#: ../../templates/show_edit_channel_row.inc.php:52
+#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/sidebar_home.inc.php:68
msgid "Random"
msgstr "Slumpmässigt"
@@ -2323,14 +2579,47 @@ msgstr " har skapats"
msgid "Playlist Imported"
msgstr "Spellista importerad"
-#: ../../playlist.php:109
+#: ../../playlist.php:101
+#, php-format
+msgid "Successfully imported playlist with %d song."
+msgid_plural "Successfully imported playlist with %d songs."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../playlist.php:104
msgid "Playlist Not Imported"
msgstr "Spellista inte importerad"
-#: ../../playlist.php:151
+#: ../../playlist.php:153
msgid "Empty Playlists Deleted"
msgstr "Tomma spellistor togs bort"
+#: ../../plex/web/index.php:32
+msgid ""
+"Changing the server UUID could break clients connectivity. Do you confirm?"
+msgstr ""
+
+#: ../../plex/web/index.php:83
+msgid "myPlex authentication completed."
+msgstr ""
+
+#: ../../plex/web/index.php:96
+#, fuzzy
+msgid "Server registration completed."
+msgstr "Registrering färdig"
+
+#: ../../plex/web/index.php:99
+msgid "Cannot register the server on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:105
+msgid "Cannot authenticate on myPlex."
+msgstr ""
+
+#: ../../plex/web/index.php:133
+msgid "Server UUID changed."
+msgstr ""
+
#: ../../preferences.php:42 ../../preferences.php:80
msgid "Server"
msgstr "Server"
@@ -2347,36 +2636,36 @@ msgstr "Ditt konto har uppdaterats"
msgid "Radio Station Added"
msgstr "Radiostation lades till"
-#: ../../register.php:67
+#: ../../register.php:68
msgid "Error Captcha Required"
msgstr "Fel: Captcha krävs"
-#: ../../register.php:73
+#: ../../register.php:74
msgid "Error Captcha Failed"
msgstr "Fel: Captcha misslyckades"
-#: ../../register.php:80
+#: ../../register.php:81
msgid "You must accept the user agreement"
msgstr "Du måste acceptera användarvillkoren"
-#: ../../register.php:85
+#: ../../register.php:86
msgid "You did not enter a username"
msgstr "Du angav inget användarnamn"
-#: ../../register.php:89
+#: ../../register.php:90
msgid "Please fill in your full name (Firstname Lastname)"
msgstr "Ange ditt fullständiga namn (Förnamn Efternamn)"
-#: ../../register.php:94
+#: ../../register.php:95
#, fuzzy
msgid "Invalid email address"
msgstr "Ogiltig begäran"
-#: ../../register.php:98
+#: ../../register.php:99
msgid "You must enter a password"
msgstr "Du måste ange ett lösenord"
-#: ../../register.php:102
+#: ../../register.php:103
msgid "Your passwords do not match"
msgstr "Dina lösenord stämmer inte överens"
@@ -2395,6 +2684,11 @@ msgstr "Genomsökta"
msgid "Your Search has been saved as a track in %s"
msgstr ""
+#: ../../server/player.ajax.php:41
+#: ../../templates/show_html5_player.inc.php:654
+msgid "My Broadcast"
+msgstr ""
+
#: ../../server/xml.server.php:54
msgid "Session Expired"
msgstr ""
@@ -2403,43 +2697,78 @@ msgstr ""
msgid "Unauthorized access attempt to API - ACL Error"
msgstr ""
+#: ../../share.php:76
+msgid "Share created."
+msgstr ""
+
+#: ../../share.php:77
+msgid "You can now start sharing the following url:"
+msgstr ""
+
+#: ../../share.php:82
+msgid ""
+"You can also embed this share as a web player into your website, with the "
+"following html code:"
+msgstr ""
+
+#: ../../share.php:85
+#, fuzzy
+msgid "Object Shared"
+msgstr "Objekt"
+
+#: ../../share.php:96
+#, fuzzy
+msgid "Share Delete"
+msgstr "Användare borttagen"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "Share Deleted"
+msgstr "Användare borttagen"
+
+#: ../../share.php:110
+#, fuzzy
+msgid "The Share has been deleted"
+msgstr " har skapats"
+
#: ../../shout.php:49
msgid "Invalid Object Selected"
msgstr "Ogiltigt objekt markerat"
-#: ../../templates/browse_filters.inc.php:25
+#: ../../templates/browse_filters.inc.php:30
+#: ../../templates/list_header.inc.php:179
msgid "Filters"
msgstr "Filter"
-#: ../../templates/browse_filters.inc.php:29
+#: ../../templates/browse_filters.inc.php:34
msgid "Starts With"
msgstr "Börjar med"
-#: ../../templates/browse_filters.inc.php:35
+#: ../../templates/browse_filters.inc.php:40
msgid "Minimum Count"
msgstr "Minimum antal"
-#: ../../templates/browse_filters.inc.php:40
+#: ../../templates/browse_filters.inc.php:45
msgid "Rated"
msgstr "Betygsatt"
-#: ../../templates/browse_filters.inc.php:45
+#: ../../templates/browse_filters.inc.php:50
msgid "Unplayed"
msgstr "Inte spelad"
-#: ../../templates/browse_filters.inc.php:49
+#: ../../templates/browse_filters.inc.php:54
msgid "All Playlists"
msgstr "Alla spellistor"
-#: ../../templates/browse_filters.inc.php:55
-#: ../../templates/show_playlist_songs.inc.php:34
-#: ../../templates/show_playlist_songs.inc.php:71
-#: ../../templates/show_song_previews.inc.php:31
-#: ../../templates/show_songs.inc.php:34 ../../templates/show_songs.inc.php:81
+#: ../../templates/browse_filters.inc.php:60
+#: ../../templates/show_playlist_songs.inc.php:31
+#: ../../templates/show_playlist_songs.inc.php:68
+#: ../../templates/show_song_previews.inc.php:29
+#: ../../templates/show_songs.inc.php:31 ../../templates/show_songs.inc.php:75
msgid "Song Title"
msgstr "Låttitel"
-#: ../../templates/browse_filters.inc.php:91
+#: ../../templates/browse_filters.inc.php:96
msgid "Toggle Artwork"
msgstr ""
@@ -2448,94 +2777,69 @@ msgstr ""
msgid "Ampache error page"
msgstr "Uppdatera Ampache"
-#: ../../templates/error_page.inc.php:48
+#: ../../templates/error_page.inc.php:43
+#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_mail_users.inc.php:43
+#: ../../templates/show_test.inc.php:37 ../../update.php:58
+#, fuzzy
+msgid "Ampache"
+msgstr "Felsökning för Ampache"
+
+#: ../../templates/error_page.inc.php:50
msgid ""
"The folowing error has occured, you will automaticly be redirected after 10 "
"seconds."
msgstr ""
-#: ../../templates/error_page.inc.php:50
+#: ../../templates/error_page.inc.php:52
msgid "Error messages"
msgstr ""
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:75
msgid "Queries:"
msgstr "Frågor:"
-#: ../../templates/footer.inc.php:29
+#: ../../templates/footer.inc.php:28
#: ../../templates/show_lostpassword_form.inc.php:76
msgid "Cache Hits:"
msgstr "Cacheträffar:"
-#: ../../templates/header.inc.php:78
+#: ../../templates/footer.inc.php:33
+msgid "Load time:"
+msgstr ""
+
+#: ../../templates/header.inc.php:82
msgid "Save"
msgstr ""
-#: ../../templates/header.inc.php:79
+#: ../../templates/header.inc.php:83
#: ../../templates/show_confirmation.inc.php:34
msgid "Cancel"
msgstr "Avbryt"
-#: ../../templates/header.inc.php:169
+#: ../../templates/header.inc.php:259
msgid "Log out"
msgstr "Logga ut"
-#: ../../templates/header.inc.php:194
+#: ../../templates/header.inc.php:297 ../../templates/sidebar_home.inc.php:87
+#, fuzzy
+msgid "Favorites"
+msgstr "Favoritlåtar"
+
+#: ../../templates/header.inc.php:316
msgid "Error Config File Out of Date"
msgstr "Fel: Konfigurationsfilen utdaterad"
-#: ../../templates/header.inc.php:195
+#: ../../templates/header.inc.php:317
msgid "Generate New Config"
msgstr "Generera ny konfiguration"
-#: ../../templates/install_header.inc.php:37
+#: ../../templates/install_header.inc.php:41
+#: ../../templates/show_install_lang.inc.php:27
msgid "Ampache Installation"
msgstr "Installation av Ampache"
-#: ../../templates/install_header.inc.php:42
-msgid "Requirements"
-msgstr "Krav"
-
-#: ../../templates/install_header.inc.php:44
-#, fuzzy
-msgid ""
-"This page handles the installation of the Ampache database and the creation "
-"of the ampache.cfg.php file. Before you continue please make sure that you "
-"have the following prerequisites:"
-msgstr ""
-"Denna sida hanterar installationen av Ampache-databasen och skapandet av "
-"filen ampache.cfg. Innan du fortsätter, se till att du har följande "
-
-#: ../../templates/install_header.inc.php:47
-#, fuzzy
-msgid ""
-"A MySQL server with a username and password that can create/modify databases"
-msgstr ""
-"En MySQL-server med ett användarnamn och lösenord som kan skapa/ändra "
-"databaser"
-
-#: ../../templates/install_header.inc.php:48
-#, fuzzy, php-format
-msgid "Your webserver has read access to the files %s and %s"
-msgstr ""
-"Din webbserver har lästillgång till filen /sql/ampache.sql och filen /config/"
-"ampache.cfg.php.dist"
-
-#: ../../templates/install_header.inc.php:51
-#, fuzzy, php-format
-msgid ""
-"Once you have ensured that the above requirements are met please fill out "
-"the information below. You will only be asked for the required config "
-"values. If you would like to make changes to your Ampache install at a later "
-"date simply edit %s"
-msgstr ""
-"När du har sett till att ovanstående krav uppfylls kan du fyll i "
-"informationen nedan. Du kommer endast att bli frågad efter de "
-"konfigurationsvärden som krävs. Om du vill göra ändringar till din "
-"installation av Ampache vid en senare tidpunkt kan du helt enkelt redigera "
-"filen /config/ampache.cfg.php"
-
#: ../../templates/list_header.inc.php:146
msgid "Prev"
msgstr "Föreg"
@@ -2545,7 +2849,7 @@ msgstr "Föreg"
msgid "Next"
msgstr "Nästa"
-#: ../../templates/list_header.inc.php:185
+#: ../../templates/list_header.inc.php:188
#, fuzzy
msgid "Limit"
msgstr "Storleksgräns"
@@ -2555,27 +2859,28 @@ msgid "Add to Playlist"
msgstr "Lägg till i spellista"
#: ../../templates/rightbar.inc.php:31
+#: ../../templates/show_playlists_dialog.inc.php:27
msgid "Add to New Playlist"
msgstr "Lägg till i ny spellista"
#: ../../templates/rightbar.inc.php:49
-#: ../../templates/show_album_row.inc.php:65
-#: ../../templates/show_artist_row.inc.php:49
-#: ../../templates/show_playlist.inc.php:54
-#: ../../templates/show_playlist.inc.php:55
-#: ../../templates/show_playlist_row.inc.php:42
+#: ../../templates/show_album_row.inc.php:75
+#: ../../templates/show_artist_row.inc.php:57
+#: ../../templates/show_playlist.inc.php:48
+#: ../../templates/show_playlist.inc.php:49
+#: ../../templates/show_playlist_row.inc.php:50
#: ../../templates/show_search_options.inc.php:32
#: ../../templates/show_search_options.inc.php:33
#: ../../templates/show_smartplaylist.inc.php:34
#: ../../templates/show_smartplaylist.inc.php:35
-#: ../../templates/show_smartplaylist_row.inc.php:40
+#: ../../templates/show_smartplaylist_row.inc.php:48
msgid "Batch Download"
msgstr "Hämta flera"
#: ../../templates/rightbar.inc.php:54
#: ../../templates/show_democratic.inc.php:44
#: ../../templates/show_democratic.inc.php:45
-#: ../../templates/show_localplay_status.inc.php:48
+#: ../../templates/show_localplay_status.inc.php:51
msgid "Clear Playlist"
msgstr "Töm spellista"
@@ -2583,29 +2888,27 @@ msgstr "Töm spellista"
msgid "Add Dynamic Items"
msgstr "Lägg till dynamiska objekt"
+#: ../../templates/rightbar.inc.php:60
+#, fuzzy
+msgid "Random Song"
+msgstr "Slumpmässigt"
+
+#: ../../templates/rightbar.inc.php:63
+#, fuzzy
+msgid "Random Artist"
+msgstr "Relaterad artist"
+
+#: ../../templates/rightbar.inc.php:66
+#, fuzzy
+msgid "Random Album"
+msgstr "Lägg till slumpmässigt från album"
+
#: ../../templates/rightbar.inc.php:69
-msgid "Related Tag"
-msgstr "Relaterad tagg"
+#, fuzzy
+msgid "Random Playlist"
+msgstr "Slumpmässig uppspelning"
-#: ../../templates/rightbar.inc.php:105
-#: ../../templates/show_access_list.inc.php:73
-#: ../../templates/show_catalog_row.inc.php:39
-#: ../../templates/show_democratic_playlist.inc.php:88
-#: ../../templates/show_live_stream_row.inc.php:41
-#: ../../templates/show_localplay_instances.inc.php:40
-#: ../../templates/show_localplay_playlist.inc.php:47
-#: ../../templates/show_manage_democratic.inc.php:50
-#: ../../templates/show_playlist.inc.php:83
-#: ../../templates/show_playlist_row.inc.php:49
-#: ../../templates/show_playlist_song_row.inc.php:51
-#: ../../templates/show_shout_row.inc.php:34
-#: ../../templates/show_smartplaylist.inc.php:47
-#: ../../templates/show_smartplaylist_row.inc.php:47
-#: ../../templates/show_user_row.inc.php:49
-msgid "Delete"
-msgstr "Ta bort"
-
-#: ../../templates/rightbar.inc.php:108
+#: ../../templates/rightbar.inc.php:120
msgid "No items"
msgstr ""
@@ -2638,15 +2941,15 @@ msgstr "Lägg till avancerat"
msgid "Access Control Entries"
msgstr "Behörighetskontroll"
-#: ../../templates/show_access_list.inc.php:51
+#: ../../templates/show_access_list.inc.php:52
msgid "Start Address"
msgstr "Startadress"
-#: ../../templates/show_access_list.inc.php:52
+#: ../../templates/show_access_list.inc.php:53
msgid "End Address"
msgstr "Slutadress"
-#: ../../templates/show_access_list.inc.php:53
+#: ../../templates/show_access_list.inc.php:54
#: ../../templates/show_add_access.inc.php:33
#: ../../templates/show_edit_access.inc.php:66
#: ../../templates/show_manage_democratic.inc.php:29
@@ -2655,88 +2958,82 @@ msgstr "Slutadress"
msgid "Level"
msgstr "Nivå"
-#: ../../templates/show_access_list.inc.php:55
+#: ../../templates/show_access_list.inc.php:56
#: ../../templates/show_add_playlist.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:28
-#: ../../templates/show_catalog_types.inc.php:58
+#: ../../templates/show_catalog_types.inc.php:29
+#: ../../templates/show_catalog_types.inc.php:63
#: ../../templates/show_edit_playlist_row.inc.php:31
#: ../../templates/show_edit_smartplaylist_row.inc.php:31
-#: ../../templates/show_playlists.inc.php:31
-#: ../../templates/show_playlists.inc.php:57
-#: ../../templates/show_smartplaylists.inc.php:34
-#: ../../templates/show_smartplaylists.inc.php:58
+#: ../../templates/show_playlists.inc.php:30
+#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_smartplaylists.inc.php:31
+#: ../../templates/show_smartplaylists.inc.php:57
msgid "Type"
msgstr "Typ"
-#: ../../templates/show_access_list.inc.php:56
-#: ../../templates/show_artists.inc.php:47
+#: ../../templates/show_access_list.inc.php:57
+#: ../../templates/show_artists.inc.php:45
#: ../../templates/show_artists.inc.php:84
-#: ../../templates/show_catalog_types.inc.php:31
-#: ../../templates/show_catalog_types.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:56
-#: ../../templates/show_democratic_playlist.inc.php:96
-#: ../../templates/show_live_streams.inc.php:36
+#: ../../templates/show_catalog_types.inc.php:32
+#: ../../templates/show_catalog_types.inc.php:66
+#: ../../templates/show_democratic_playlist.inc.php:55
+#: ../../templates/show_democratic_playlist.inc.php:102
+#: ../../templates/show_live_streams.inc.php:34
#: ../../templates/show_live_streams.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:31
-#: ../../templates/show_localplay_controllers.inc.php:61
+#: ../../templates/show_localplay_controllers.inc.php:32
+#: ../../templates/show_localplay_controllers.inc.php:66
#: ../../templates/show_localplay_instances.inc.php:29
-#: ../../templates/show_localplay_playlist.inc.php:32
-#: ../../templates/show_localplay_playlist.inc.php:58
+#: ../../templates/show_localplay_playlist.inc.php:33
+#: ../../templates/show_localplay_playlist.inc.php:63
#: ../../templates/show_manage_democratic.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:32
#: ../../templates/show_manage_shoutbox.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:49
-#: ../../templates/show_playlist_songs.inc.php:82
-#: ../../templates/show_plugins.inc.php:32
-#: ../../templates/show_plugins.inc.php:68
-#: ../../templates/show_recommended_artists.inc.php:43
-#: ../../templates/show_recommended_artists.inc.php:81
-#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:52
-#: ../../templates/show_songs.inc.php:93 ../../templates/show_users.inc.php:47
-#: ../../templates/show_users.inc.php:69
-#: ../../templates/show_videos.inc.php:38
+#: ../../templates/show_playlist_songs.inc.php:47
+#: ../../templates/show_playlist_songs.inc.php:80
+#: ../../templates/show_plugins.inc.php:33
+#: ../../templates/show_plugins.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:42
+#: ../../templates/show_recommended_artists.inc.php:91
+#: ../../templates/show_song.inc.php:56 ../../templates/show_songs.inc.php:49
+#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:74
+#: ../../templates/show_videos.inc.php:36
#: ../../templates/show_videos.inc.php:65
msgid "Action"
msgstr "Åtgärd"
-#: ../../templates/show_access_list.inc.php:72
-#: ../../templates/show_album_row.inc.php:70
-#: ../../templates/show_artist_row.inc.php:54
-#: ../../templates/show_live_stream_row.inc.php:37
-#: ../../templates/show_playlist_row.inc.php:47
-#: ../../templates/show_shout_row.inc.php:31
-#: ../../templates/show_smartplaylist_row.inc.php:45
-#: ../../templates/show_song_row.inc.php:57
-#: ../../templates/show_user_row.inc.php:39
-msgid "Edit"
-msgstr "Redigera"
-
#: ../../templates/show_account.inc.php:35
#: ../../templates/show_add_user.inc.php:44
#: ../../templates/show_edit_user.inc.php:47
-#: ../../templates/show_user_registration.inc.php:82
+#: ../../templates/show_user_registration.inc.php:83
msgid "E-mail"
msgstr "E-post"
#: ../../templates/show_account.inc.php:41
+#: ../../templates/show_add_user.inc.php:52
+#: ../../templates/show_edit_user.inc.php:55
+#: ../../templates/show_user_registration.inc.php:88
+msgid "Website"
+msgstr ""
+
+#: ../../templates/show_account.inc.php:47
msgid "New Password"
msgstr "Nytt lösenord"
-#: ../../templates/show_account.inc.php:48
-#: ../../templates/show_add_user.inc.php:61
-#: ../../templates/show_edit_user.inc.php:64
-#: ../../templates/show_install_account.inc.php:46
-#: ../../templates/show_user_registration.inc.php:94
+#: ../../templates/show_account.inc.php:54
+#: ../../templates/show_add_user.inc.php:69
+#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/show_user_registration.inc.php:100
msgid "Confirm Password"
msgstr "Bekräfta lösenord"
-#: ../../templates/show_account.inc.php:54
-#: ../../templates/show_edit_user.inc.php:107
+#: ../../templates/show_account.inc.php:60
+#: ../../templates/show_edit_user.inc.php:133
#: ../../templates/show_manage_catalogs.inc.php:31
msgid "Clear Stats"
msgstr "Töm statistik"
-#: ../../templates/show_account.inc.php:64
+#: ../../templates/show_account.inc.php:70
msgid "Update Account"
msgstr "Uppdatera konto"
@@ -2858,13 +3155,80 @@ msgid "Gather Album Art"
msgstr "Samla albumomslag"
#: ../../templates/show_add_catalog.inc.php:63
-msgid "Build Playlists from m3u Files"
+#, fuzzy
+msgid "Build Playlists from playlist Files (m3u, asx, pls, xspf)"
msgstr "Bygg spellistor från m3u-filer"
#: ../../templates/show_add_catalog.inc.php:72
msgid "Add Catalog"
msgstr "Lägg till katalog"
+#: ../../templates/show_add_channel.inc.php:23
+#, fuzzy
+msgid "Create Channel"
+msgstr "Skapad"
+
+#: ../../templates/show_add_channel.inc.php:29
+#: ../../templates/show_channels.inc.php:33
+#, fuzzy
+msgid "Stream Source"
+msgstr "Strömmande åtkomst"
+
+#: ../../templates/show_add_channel.inc.php:42
+#: ../../templates/show_catalog_types.inc.php:30
+#: ../../templates/show_catalog_types.inc.php:64
+#: ../../templates/show_edit_broadcast_row.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:30
+#: ../../templates/show_localplay_controllers.inc.php:64
+#: ../../templates/show_plugins.inc.php:30
+#: ../../templates/show_plugins.inc.php:70
+msgid "Description"
+msgstr "Beskrivning"
+
+#: ../../templates/show_add_channel.inc.php:49
+#: ../../templates/show_edit_channel_row.inc.php:35
+msgid "Url"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:56
+#: ../../templates/show_channels.inc.php:31
+#: ../../templates/show_edit_channel_row.inc.php:39
+msgid "Interface"
+msgstr "Gränssnitt"
+
+#: ../../templates/show_add_channel.inc.php:70
+#: ../../templates/show_channel_row.inc.php:44
+#: ../../templates/show_edit_broadcast_row.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:48
+msgid "Authentication Required"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:82
+#: ../../templates/show_channels.inc.php:35
+#: ../../templates/show_edit_channel_row.inc.php:56
+msgid "Loop"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:88
+#: ../../templates/show_edit_channel_row.inc.php:59
+msgid "Max Listeners"
+msgstr ""
+
+#: ../../templates/show_add_channel.inc.php:95
+#: ../../templates/show_channels.inc.php:36
+#: ../../templates/show_edit_channel_row.inc.php:63
+#, fuzzy
+msgid "Stream Type"
+msgstr "Söktyp"
+
+#: ../../templates/show_add_channel.inc.php:111
+#: ../../templates/show_add_playlist.inc.php:41
+#: ../../templates/show_add_share.inc.php:71
+#: ../../templates/show_add_shout.inc.php:53
+msgid "Create"
+msgstr "Skapa"
+
#: ../../templates/show_add_live_stream.inc.php:23
#: ../../templates/show_live_stream.inc.php:27
msgid "Add Radio Station"
@@ -2877,16 +3241,16 @@ msgstr "Hemsida"
#: ../../templates/show_add_live_stream.inc.php:41
#: ../../templates/show_edit_live_stream_row.inc.php:31
-#: ../../templates/show_live_streams.inc.php:34
+#: ../../templates/show_live_streams.inc.php:32
#: ../../templates/show_live_streams.inc.php:58
msgid "Stream URL"
msgstr "URL för ström"
#: ../../templates/show_add_live_stream.inc.php:48
#: ../../templates/show_edit_live_stream_row.inc.php:39
-#: ../../templates/show_live_streams.inc.php:35
+#: ../../templates/show_live_streams.inc.php:33
#: ../../templates/show_live_streams.inc.php:59
-#: ../../templates/show_videos.inc.php:34
+#: ../../templates/show_videos.inc.php:32
#: ../../templates/show_videos.inc.php:61
msgid "Codec"
msgstr "Kodek"
@@ -2895,11 +3259,6 @@ msgstr "Kodek"
msgid "Create a new playlist"
msgstr "Skapa en ny spellista"
-#: ../../templates/show_add_playlist.inc.php:41
-#: ../../templates/show_add_shout.inc.php:53
-msgid "Create"
-msgstr "Skapa"
-
#: ../../templates/show_adds_catalog.inc.php:23
#, fuzzy
msgid "Starting New Song Search"
@@ -2924,6 +3283,38 @@ msgstr "Hittade"
msgid "Reading"
msgstr "Läser"
+#: ../../templates/show_add_share.inc.php:23
+#, fuzzy
+msgid "Create Share"
+msgstr "Skapad"
+
+#: ../../templates/show_add_share.inc.php:29
+#, fuzzy
+msgid "Shared Object"
+msgstr "Objekt"
+
+#: ../../templates/show_add_share.inc.php:42
+#: ../../templates/show_shared_objects.inc.php:32
+msgid "Max Counter"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:49
+#: ../../templates/show_shared_objects.inc.php:35
+msgid "Expire Days"
+msgstr ""
+
+#: ../../templates/show_add_share.inc.php:55
+#: ../../templates/show_shared_objects.inc.php:33
+#, fuzzy
+msgid "Allow Stream"
+msgstr "Tillåt strömmande"
+
+#: ../../templates/show_add_share.inc.php:62
+#: ../../templates/show_shared_objects.inc.php:34
+#, fuzzy
+msgid "Allow Download"
+msgstr "Tillåt hämtningar"
+
#: ../../templates/show_add_shout.inc.php:28
msgid "Post to Shoutbox"
msgstr "Posta till chattruta"
@@ -2950,17 +3341,22 @@ msgstr "Lägger till en ny användare"
#: ../../templates/show_add_user.inc.php:37
#: ../../templates/show_edit_user.inc.php:40
-#: ../../templates/show_user.inc.php:30
-#: ../../templates/show_user_registration.inc.php:76
+#: ../../templates/show_user.inc.php:35
+#: ../../templates/show_user_registration.inc.php:77
msgid "Full Name"
msgstr "Fullständigt namn"
-#: ../../templates/show_add_user.inc.php:69
-#: ../../templates/show_edit_user.inc.php:72
+#: ../../templates/show_add_user.inc.php:77
+#: ../../templates/show_edit_user.inc.php:80
msgid "User Access Level"
msgstr "Behörighetsnivå"
-#: ../../templates/show_add_user.inc.php:85
+#: ../../templates/show_add_user.inc.php:92
+#: ../../templates/show_edit_user.inc.php:95
+msgid "Avatar"
+msgstr ""
+
+#: ../../templates/show_add_user.inc.php:102
#: ../../templates/sidebar_admin.inc.php:33
msgid "Add User"
msgstr "Lägg till användare"
@@ -2980,259 +3376,346 @@ msgid "Invalid"
msgstr "Ogiltig"
#: ../../templates/show_album_art.inc.php:49
-#: ../../templates/show_disabled_songs.inc.php:27
-#: ../../templates/show_disabled_songs.inc.php:49
+#: ../../templates/show_disabled_songs.inc.php:28
+#: ../../templates/show_disabled_songs.inc.php:54
msgid "Select"
msgstr "Välj"
-#: ../../templates/show_album.inc.php:59
-#: ../../templates/show_artist.inc.php:56
-msgid "times"
+#: ../../templates/show_album_group_disks.inc.php:32
+#: ../../templates/show_album.inc.php:35
+#: ../../templates/show_artist.inc.php:37
+msgid "Search on Google ..."
msgstr ""
-#: ../../templates/show_album.inc.php:64
-#: ../../templates/show_albums.inc.php:48
-#: ../../templates/show_albums.inc.php:87
-#: ../../templates/show_artist.inc.php:61
-#: ../../templates/show_catalogs.inc.php:31
-#: ../../templates/show_catalogs.inc.php:55
+#: ../../templates/show_album_group_disks.inc.php:33
+#: ../../templates/show_album.inc.php:36
+#: ../../templates/show_artist.inc.php:38
+msgid "Search on Wikipedia ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:34
+#: ../../templates/show_album.inc.php:37
+#: ../../templates/show_artist.inc.php:39
+msgid "Search on Last.fm ..."
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:50
+#: ../../templates/show_album.inc.php:71
+#: ../../templates/show_albums.inc.php:46
+#: ../../templates/show_albums.inc.php:88
+#: ../../templates/show_artist.inc.php:68
+#: ../../templates/show_broadcasts.inc.php:33
+#: ../../templates/show_catalogs.inc.php:32
+#: ../../templates/show_catalogs.inc.php:60
+#: ../../templates/show_channels.inc.php:42
#: ../../templates/show_missing_album.inc.php:51
-#: ../../templates/show_missing_albums.inc.php:30
-#: ../../templates/show_playlists.inc.php:34
-#: ../../templates/show_playlists.inc.php:60
-#: ../../templates/show_smartplaylists.inc.php:36
-#: ../../templates/show_smartplaylists.inc.php:60
-#: ../../templates/show_wanted_albums.inc.php:29
+#: ../../templates/show_missing_albums.inc.php:31
+#: ../../templates/show_playlists.inc.php:33
+#: ../../templates/show_playlists.inc.php:61
+#: ../../templates/show_shared_objects.inc.php:37
+#: ../../templates/show_smartplaylists.inc.php:33
+#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_wanted_albums.inc.php:30
msgid "Actions"
msgstr "Åtgärder"
-#: ../../templates/show_album.inc.php:68
-#: ../../templates/show_album_row.inc.php:26
+#: ../../templates/show_album_group_disks.inc.php:60
+#: ../../templates/show_album_group_disks.inc.php:61
+#: ../../templates/show_album_group_disks.inc.php:108
+#: ../../templates/show_album.inc.php:81 ../../templates/show_album.inc.php:82
+#: ../../templates/show_album_row.inc.php:29
+#: ../../templates/show_artist_row.inc.php:29
+#: ../../templates/show_missing_album.inc.php:62
+#: ../../templates/show_missing_album.inc.php:63
+#: ../../templates/show_playlist_row.inc.php:29
+#: ../../templates/show_playlist_song_row.inc.php:29
+#: ../../templates/show_random_albums.inc.php:48
+#: ../../templates/show_recently_played.inc.php:99
+#: ../../templates/show_smartplaylist_row.inc.php:29
+#: ../../templates/show_song.inc.php:61
+#: ../../templates/show_song_preview_row.inc.php:28
+#: ../../templates/show_song_row.inc.php:29
+#: ../../templates/show_video_row.inc.php:29
#, fuzzy
-msgid "Play album"
-msgstr "Spela upp album"
+msgid "Play last"
+msgstr "Spellista"
-#: ../../templates/show_album.inc.php:69
-#: ../../templates/show_random_albums.inc.php:49
-msgid "Play Album"
-msgstr "Spela upp album"
-
-#: ../../templates/show_album.inc.php:74 ../../templates/show_album.inc.php:75
+#: ../../templates/show_album_group_disks.inc.php:65
+#: ../../templates/show_album_group_disks.inc.php:66
+#: ../../templates/show_album_group_disks.inc.php:110
+#: ../../templates/show_album.inc.php:86 ../../templates/show_album.inc.php:87
+#: ../../templates/show_album_row.inc.php:47
+#: ../../templates/show_artist_row.inc.php:37
+#: ../../templates/show_live_stream_row.inc.php:34
+#: ../../templates/show_missing_album.inc.php:67
+#: ../../templates/show_missing_album.inc.php:68
+#: ../../templates/show_playlist_row.inc.php:37
+#: ../../templates/show_playlist_song_row.inc.php:37
+#: ../../templates/show_random_albums.inc.php:51
+#: ../../templates/show_recently_played.inc.php:107
+#: ../../templates/show_smartplaylist_row.inc.php:37
+#: ../../templates/show_song.inc.php:65
+#: ../../templates/show_song_preview_row.inc.php:38
+#: ../../templates/show_song_row.inc.php:37
+#: ../../templates/show_video_row.inc.php:37
#, fuzzy
-msgid "Play Add Album"
-msgstr "Spela upp album"
+msgid "Add to temporary playlist"
+msgstr "Lägg till i ny spellista"
-#: ../../templates/show_album.inc.php:80
-msgid "Add Album"
-msgstr "Lägg till album"
+#: ../../templates/show_album_group_disks.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:70
+#: ../../templates/show_album_group_disks.inc.php:111
+#: ../../templates/show_album.inc.php:90 ../../templates/show_album.inc.php:91
+#: ../../templates/show_album_row.inc.php:48
+#: ../../templates/show_artist_row.inc.php:38
+#: ../../templates/show_playlist_row.inc.php:38
+msgid "Random to temporary playlist"
+msgstr ""
-#: ../../templates/show_album.inc.php:84
-msgid "Add Random from Album"
-msgstr "Lägg till slumpmässigt från album"
-
-#: ../../templates/show_album.inc.php:89 ../../templates/show_album.inc.php:90
-#: ../../templates/show_playlist.inc.php:47
-#: ../../templates/show_playlist.inc.php:48
-#, fuzzy
-msgid "Save Tracks Order"
-msgstr "Ställ in spårnummer"
-
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
#, fuzzy
msgid "Do you really want to reset album art?"
msgstr "Vill du verkligen ta bort denna katalog?"
-#: ../../templates/show_album.inc.php:95 ../../templates/show_album.inc.php:96
+#: ../../templates/show_album_group_disks.inc.php:74
+#: ../../templates/show_album_group_disks.inc.php:75
+#: ../../templates/show_album.inc.php:102
+#: ../../templates/show_album.inc.php:103
msgid "Reset Album Art"
msgstr "Återställ albumomslag"
-#: ../../templates/show_album.inc.php:100
-#: ../../templates/show_album.inc.php:101
+#: ../../templates/show_album_group_disks.inc.php:79
+#: ../../templates/show_album_group_disks.inc.php:80
+#: ../../templates/show_album.inc.php:107
+#: ../../templates/show_album.inc.php:108
msgid "Find Album Art"
msgstr "Hitta albumomslag"
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-#, fuzzy
-msgid "Do you really want to update from tags?"
-msgstr "Vill du verkligen ta bort denna katalog?"
-
-#: ../../templates/show_album.inc.php:105
-#: ../../templates/show_album.inc.php:106
-#: ../../templates/show_artist.inc.php:100
-#: ../../templates/show_artist.inc.php:101
-msgid "Update from tags"
-msgstr "Uppdatera från taggar"
-
-#: ../../templates/show_album.inc.php:115
-#: ../../templates/show_album.inc.php:116
-#: ../../templates/show_artist.inc.php:106
-#: ../../templates/show_artist.inc.php:107
-#: ../../templates/show_install_config.inc.php:69
-#: ../../templates/show_playlist_song_row.inc.php:47
-#: ../../templates/show_song.inc.php:72
-#: ../../templates/show_song_row.inc.php:54
-#: ../../templates/show_video_row.inc.php:41
+#: ../../templates/show_album_group_disks.inc.php:84
+#: ../../templates/show_album_group_disks.inc.php:85
+#: ../../templates/show_album_group_disks.inc.php:124
+#: ../../templates/show_album.inc.php:138
+#: ../../templates/show_album.inc.php:139
+#: ../../templates/show_artist.inc.php:114
+#: ../../templates/show_artist.inc.php:115
+#: ../../templates/show_install_config.inc.php:95
+#: ../../templates/show_playlist_song_row.inc.php:56
+#: ../../templates/show_share.inc.php:32 ../../templates/show_share.inc.php:33
+#: ../../templates/show_song.inc.php:76
+#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_video_row.inc.php:46
msgid "Download"
msgstr "Hämta"
-#: ../../templates/show_album_row.inc.php:28
+#: ../../templates/show_album_group_disks.inc.php:115
+#: ../../templates/show_album.inc.php:96 ../../templates/show_album.inc.php:97
+#: ../../templates/show_playlist.inc.php:41
+#: ../../templates/show_playlist.inc.php:42
#, fuzzy
-msgid "Play add album"
-msgstr "Spela upp album"
+msgid "Save Tracks Order"
+msgstr "Ställ in spårnummer"
-#: ../../templates/show_album_row.inc.php:69
+#: ../../templates/show_album_group_disks.inc.php:121
+#: ../../templates/show_album.inc.php:122
+#: ../../templates/show_album.inc.php:123
+#: ../../templates/show_album_row.inc.php:71
+#: ../../templates/show_playlist_row.inc.php:54
+#: ../../templates/show_playlist_song_row.inc.php:60
+#: ../../templates/show_shares.inc.php:23 ../../templates/show_song.inc.php:72
+#: ../../templates/show_song_row.inc.php:65
+msgid "Share"
+msgstr ""
+
+#: ../../templates/show_album_group_disks.inc.php:127
+#: ../../templates/show_album.inc.php:128
+#: ../../templates/show_album.inc.php:131
+#: ../../templates/show_album_row.inc.php:79
#, fuzzy
msgid "Album edit"
msgstr "Albumomslag"
-#: ../../templates/show_albums.inc.php:35
+#: ../../templates/show_album.inc.php:66
+#: ../../templates/show_artist.inc.php:63
+msgid "times"
+msgstr ""
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+#, fuzzy
+msgid "Do you really want to update from tags?"
+msgstr "Vill du verkligen ta bort denna katalog?"
+
+#: ../../templates/show_album.inc.php:112
+#: ../../templates/show_album.inc.php:113
+#: ../../templates/show_artist.inc.php:108
+#: ../../templates/show_artist.inc.php:109
+msgid "Update from tags"
+msgstr "Uppdatera från taggar"
+
+#: ../../templates/show_album.inc.php:132
+msgid "Edit Album"
+msgstr "Redigera album"
+
+#: ../../templates/show_album_row.inc.php:50
+#: ../../templates/show_artist_row.inc.php:40
+#: ../../templates/show_playlist_row.inc.php:40
+#: ../../templates/show_playlist_song_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:109
+#: ../../templates/show_smartplaylist_row.inc.php:39
+#: ../../templates/show_song_preview_row.inc.php:40
+#: ../../templates/show_song_row.inc.php:39
+#, fuzzy
+msgid "Add to existing playlist"
+msgstr "Lägg till i ny spellista"
+
+#: ../../templates/show_albums.inc.php:32
#: ../../templates/show_albums.inc.php:74
msgid "Cover"
msgstr "Omslag"
-#: ../../templates/show_albums.inc.php:41
-#: ../../templates/show_albums.inc.php:80
-#: ../../templates/show_artists.inc.php:40
+#: ../../templates/show_albums.inc.php:39
+#: ../../templates/show_albums.inc.php:81
+#: ../../templates/show_artists.inc.php:38
#: ../../templates/show_artists.inc.php:77
#: ../../templates/show_edit_album_row.inc.php:55
#: ../../templates/show_edit_artist_row.inc.php:35
#: ../../templates/show_edit_song_row.inc.php:57
-#: ../../templates/show_now_playing_row.inc.php:64
-#: ../../templates/show_recommended_artists.inc.php:36
-#: ../../templates/show_recommended_artists.inc.php:74
-#: ../../templates/show_songs.inc.php:37 ../../templates/show_songs.inc.php:84
+#: ../../templates/show_now_playing_row.inc.php:51
+#: ../../templates/show_playlist_songs.inc.php:35
+#: ../../templates/show_playlist_songs.inc.php:72
+#: ../../templates/show_recommended_artists.inc.php:35
+#: ../../templates/show_recommended_artists.inc.php:84
+#: ../../templates/show_songs.inc.php:35 ../../templates/show_songs.inc.php:79
#: ../../templates/show_stats.inc.php:36
-#: ../../templates/show_videos.inc.php:37
+#: ../../templates/show_videos.inc.php:35
#: ../../templates/show_videos.inc.php:64
msgid "Tags"
msgstr "Taggar"
-#: ../../templates/show_albums.inc.php:46
-#: ../../templates/show_albums.inc.php:85
-#: ../../templates/show_artists.inc.php:45
+#: ../../templates/show_albums.inc.php:44
+#: ../../templates/show_albums.inc.php:86
+#: ../../templates/show_artists.inc.php:43
#: ../../templates/show_artists.inc.php:82
-#: ../../templates/show_now_playing_row.inc.php:42
-#: ../../templates/show_playlist_songs.inc.php:47
-#: ../../templates/show_playlist_songs.inc.php:80
-#: ../../templates/show_recommended_artists.inc.php:41
-#: ../../templates/show_recommended_artists.inc.php:79
-#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:50
-#: ../../templates/show_songs.inc.php:91
-msgid "Flag"
-msgstr "Flagga"
+#: ../../templates/show_now_playing_row.inc.php:97
+#: ../../templates/show_playlist_songs.inc.php:45
+#: ../../templates/show_playlist_songs.inc.php:78
+#: ../../templates/show_recommended_artists.inc.php:40
+#: ../../templates/show_recommended_artists.inc.php:89
+#: ../../templates/show_song.inc.php:40 ../../templates/show_songs.inc.php:47
+msgid "Fav."
+msgstr ""
-#: ../../templates/show_albums.inc.php:65
+#: ../../templates/show_albums.inc.php:66
#, fuzzy
msgid "No album found"
msgstr "Inga inaktiverade låtar hittades"
-#: ../../templates/show_all_popular.inc.php:26
-#: ../../templates/show_stats_popular.inc.php:32
-msgid "Most Popular Artists"
-msgstr "Mest populära artister"
-
-#: ../../templates/show_all_popular.inc.php:29
-#: ../../templates/show_stats_popular.inc.php:26
-msgid "Most Popular Albums"
-msgstr "Mest populära album"
-
-#: ../../templates/show_all_popular.inc.php:32
-msgid "Most Popular Genres"
-msgstr "Mest populära genre"
-
-#: ../../templates/show_all_popular.inc.php:40
-msgid "Most Popular Songs"
-msgstr "Mest populära låtar"
-
-#: ../../templates/show_all_popular.inc.php:43
-msgid "Most Popular Live Streams"
-msgstr "Mest populära live-strömmar"
-
-#: ../../templates/show_all_popular.inc.php:46
-msgid "Most Popular Tags"
-msgstr "Mest populära taggar"
-
-#: ../../templates/show_artist.inc.php:36
-#: ../../templates/show_artist.inc.php:132
+#: ../../templates/show_artist.inc.php:42
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_artist.inc.php:176
#: ../../templates/show_index.inc.php:32
-#: ../../templates/show_now_playing_row.inc.php:84
-#: ../../templates/show_now_playing_row.inc.php:90
+#: ../../templates/show_missing_artist.inc.php:33
+#: ../../templates/show_now_playing_row.inc.php:71
+#: ../../templates/show_now_playing_row.inc.php:77
msgid "Loading..."
msgstr "Läser in..."
-#: ../../templates/show_artist.inc.php:66
-#: ../../templates/show_artist.inc.php:68
-#, php-format
-msgid "Show All Songs By %s"
-msgstr "Visa alla låtar av %s"
-
-#: ../../templates/show_artist.inc.php:71
#: ../../templates/show_artist.inc.php:73
-#, fuzzy, php-format
-msgid "Show Albums By %s"
-msgstr "Album av %s"
-
-#: ../../templates/show_artist.inc.php:78
-#: ../../templates/show_artist_row.inc.php:25
+#: ../../templates/show_artist.inc.php:75
#, fuzzy
-msgid "Play artist"
-msgstr "Spellista"
+msgid "Show all"
+msgstr "Visa alla"
#: ../../templates/show_artist.inc.php:79
-#, fuzzy, php-format
-msgid "Play All Songs By %s"
-msgstr "Lägg till alla låtar av %s"
-
-#: ../../templates/show_artist.inc.php:84
-#: ../../templates/show_artist_row.inc.php:27
+#: ../../templates/show_artist.inc.php:81
#, fuzzy
-msgid "Play add artist"
+msgid "Show albums"
+msgstr "Album av %s"
+
+#: ../../templates/show_artist.inc.php:86
+#: ../../templates/show_artist.inc.php:87
+#: ../../templates/show_playlist.inc.php:55
+#: ../../templates/show_playlist.inc.php:56
+#, fuzzy
+msgid "Play all"
+msgstr "Spela upp album"
+
+#: ../../templates/show_artist.inc.php:92
+#: ../../templates/show_artist.inc.php:93
+#: ../../templates/show_playlist.inc.php:61
+#: ../../templates/show_playlist.inc.php:62
+#, fuzzy
+msgid "Play all last"
msgstr "Spellista"
-#: ../../templates/show_artist.inc.php:85
-#, fuzzy, php-format
-msgid "Play Add All Songs By %s"
-msgstr "Lägg till alla låtar av %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:98
+#: ../../templates/show_artist.inc.php:99
+#: ../../templates/show_playlist.inc.php:66
+#: ../../templates/show_playlist.inc.php:67
+#, fuzzy
+msgid "Add all to temporary playlist"
+msgstr "Lägg till i ny spellista"
-#: ../../templates/show_artist.inc.php:91
-#, php-format
-msgid "Add All Songs By %s"
-msgstr "Lägg till alla låtar av %s"
+#. HINT: Artist Fullname
+#: ../../templates/show_artist.inc.php:103
+#: ../../templates/show_artist.inc.php:104
+#: ../../templates/show_playlist.inc.php:70
+#: ../../templates/show_playlist.inc.php:71
+msgid "Random all to temporary playlist"
+msgstr ""
-#: ../../templates/show_artist.inc.php:96
-#, php-format
-msgid "Add Random Songs By %s"
-msgstr "Lägg till slumpmässiga låtar av %s"
+#: ../../templates/show_artist.inc.php:119
+#: ../../templates/show_artist.inc.php:122
+#: ../../templates/show_artist_row.inc.php:61
+#, fuzzy
+msgid "Artist edit"
+msgstr "Artist och titel"
-#: ../../templates/show_artist.inc.php:111
+#: ../../templates/show_artist.inc.php:123
+msgid "Edit Artist"
+msgstr "Redigera artist"
+
+#: ../../templates/show_artist.inc.php:127
msgid "Show Art"
msgstr "Visa omslagsbild"
-#: ../../templates/show_artist.inc.php:132
-#: ../../templates/show_now_playing_row.inc.php:83
+#: ../../templates/show_artist.inc.php:138
+#: ../../templates/show_artist.inc.php:160
+#: ../../templates/show_missing_albums.inc.php:23
+#, fuzzy
+msgid "Missing Albums"
+msgstr "Album"
+
+#: ../../templates/show_artist.inc.php:141
+#: ../../templates/show_artist.inc.php:168
+#: ../../templates/show_now_playing_row.inc.php:70
#: ../../templates/show_now_playing_similar.inc.php:27
#: ../../templates/show_recommended_artists.inc.php:25
msgid "Similar Artists"
msgstr "Liknande artister"
-#: ../../templates/show_artist_row.inc.php:53
-#, fuzzy
-msgid "Artist edit"
-msgstr "Artist och titel"
+#: ../../templates/show_artist.inc.php:144
+#: ../../templates/show_artist.inc.php:176
+msgid "Events"
+msgstr ""
-#: ../../templates/show_artists.inc.php:39
+#: ../../templates/show_artists.inc.php:37
#: ../../templates/show_artists.inc.php:76
-#: ../../templates/show_democratic_playlist.inc.php:61
-#: ../../templates/show_democratic_playlist.inc.php:101
-#: ../../templates/show_playlist_songs.inc.php:38
-#: ../../templates/show_playlist_songs.inc.php:75
-#: ../../templates/show_recommended_artists.inc.php:35
-#: ../../templates/show_recommended_artists.inc.php:73
-#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:86
-#: ../../templates/show_videos.inc.php:36
+#: ../../templates/show_democratic_playlist.inc.php:60
+#: ../../templates/show_democratic_playlist.inc.php:107
+#: ../../templates/show_playlist_songs.inc.php:36
+#: ../../templates/show_playlist_songs.inc.php:73
+#: ../../templates/show_recommended_artists.inc.php:34
+#: ../../templates/show_recommended_artists.inc.php:83
+#: ../../templates/show_songs.inc.php:36 ../../templates/show_songs.inc.php:80
+#: ../../templates/show_videos.inc.php:34
#: ../../templates/show_videos.inc.php:63
msgid "Time"
msgstr "Tid"
@@ -3246,6 +3729,44 @@ msgstr "Inga liknande artister hittades"
msgid "Click to close window"
msgstr "Klicka för att stänga fönster"
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../templates/show_broadcast_row.inc.php:33
+#: ../../templates/show_channel_row.inc.php:36
+#: ../../templates/show_channel_row.inc.php:37
+msgid "No"
+msgstr "Nej"
+
+#: ../../templates/show_broadcasts_dialog.inc.php:39
+msgid "New broadcast"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:30
+#: ../../templates/show_edit_broadcast_row.inc.php:39
+#: ../../templates/show_edit_channel_row.inc.php:71
+#: ../../templates/show_song.inc.php:88
+msgid "Genre"
+msgstr "Genre"
+
+#: ../../templates/show_broadcasts.inc.php:31
+#, fuzzy
+msgid "Started"
+msgstr "Start"
+
+#: ../../templates/show_broadcasts.inc.php:32
+#: ../../templates/show_channels.inc.php:39
+msgid "Listeners"
+msgstr ""
+
+#: ../../templates/show_broadcasts.inc.php:48
+#, fuzzy
+msgid "No broadcast found"
+msgstr "Inga liknande artister hittades"
+
#: ../../templates/show_catalog_row.inc.php:35
msgid "Verify"
msgstr "Verifiera"
@@ -3263,67 +3784,82 @@ msgstr "Töm"
msgid "Update"
msgstr "Uppdatera"
-#: ../../templates/show_catalogs.inc.php:27
-#: ../../templates/show_catalogs.inc.php:51
+#: ../../templates/show_catalogs.inc.php:28
+#: ../../templates/show_catalogs.inc.php:56
msgid "Info"
msgstr ""
-#: ../../templates/show_catalogs.inc.php:28
-#: ../../templates/show_catalogs.inc.php:52
+#: ../../templates/show_catalogs.inc.php:29
+#: ../../templates/show_catalogs.inc.php:57
#: ../../templates/show_stats.inc.php:67
msgid "Last Verify"
msgstr "Senast verifierad"
-#: ../../templates/show_catalogs.inc.php:29
-#: ../../templates/show_catalogs.inc.php:53
+#: ../../templates/show_catalogs.inc.php:30
+#: ../../templates/show_catalogs.inc.php:58
#: ../../templates/show_stats.inc.php:68
msgid "Last Add"
msgstr "Senast tillagd"
-#: ../../templates/show_catalogs.inc.php:30
-#: ../../templates/show_catalogs.inc.php:54
+#: ../../templates/show_catalogs.inc.php:31
+#: ../../templates/show_catalogs.inc.php:59
#: ../../templates/show_stats.inc.php:69
msgid "Last Clean"
msgstr "Senast rensad"
-#: ../../templates/show_catalogs.inc.php:45
+#: ../../templates/show_catalogs.inc.php:48
#, fuzzy
msgid "No catalog found"
msgstr "Inga kataloger hittades"
-#: ../../templates/show_catalog_types.inc.php:29
-#: ../../templates/show_catalog_types.inc.php:59
-#: ../../templates/show_localplay_controllers.inc.php:29
-#: ../../templates/show_localplay_controllers.inc.php:59
-#: ../../templates/show_plugins.inc.php:29
-#: ../../templates/show_plugins.inc.php:65
-msgid "Description"
-msgstr "Beskrivning"
-
-#: ../../templates/show_catalog_types.inc.php:30
-#: ../../templates/show_catalog_types.inc.php:60
-#: ../../templates/show_localplay_controllers.inc.php:30
-#: ../../templates/show_localplay_controllers.inc.php:60
-#: ../../templates/show_plugins.inc.php:30
-#: ../../templates/show_plugins.inc.php:66
+#: ../../templates/show_catalog_types.inc.php:31
+#: ../../templates/show_catalog_types.inc.php:65
+#: ../../templates/show_localplay_controllers.inc.php:31
+#: ../../templates/show_localplay_controllers.inc.php:65
+#: ../../templates/show_plugins.inc.php:31
+#: ../../templates/show_plugins.inc.php:71
msgid "Version"
msgstr "Version"
-#: ../../templates/show_catalog_types.inc.php:43
-#: ../../templates/show_localplay_controllers.inc.php:43
-#: ../../templates/show_plugins.inc.php:40
+#: ../../templates/show_catalog_types.inc.php:46
+#: ../../templates/show_localplay_controllers.inc.php:46
+#: ../../templates/show_plugins.inc.php:43
msgid "Activate"
msgstr "Aktivera"
-#: ../../templates/show_catalog_types.inc.php:54
-#: ../../templates/show_disabled_songs.inc.php:45
-#: ../../templates/show_localplay_controllers.inc.php:54
-#: ../../templates/show_localplay_playlist.inc.php:52
+#: ../../templates/show_catalog_types.inc.php:57
+#: ../../templates/show_disabled_songs.inc.php:48
+#: ../../templates/show_localplay_controllers.inc.php:57
+#: ../../templates/show_localplay_playlist.inc.php:55
#: ../../templates/show_manage_shoutbox.inc.php:47
-#: ../../templates/show_plugins.inc.php:60
+#: ../../templates/show_plugins.inc.php:63
msgid "No Records Found"
msgstr "Inga poster hittades"
+#: ../../templates/show_channels.inc.php:29
+msgid "#"
+msgstr ""
+
+#: ../../templates/show_channels.inc.php:38
+#, fuzzy
+msgid "Start Date"
+msgstr "Börjar med"
+
+#: ../../templates/show_channels.inc.php:40
+#, fuzzy
+msgid "Stream Url"
+msgstr "URL för ström"
+
+#: ../../templates/show_channels.inc.php:41
+#, fuzzy
+msgid "State"
+msgstr "Status"
+
+#: ../../templates/show_channels.inc.php:57
+#, fuzzy
+msgid "No channel found"
+msgstr "Inga kataloger hittades"
+
#. HINT: Catalog Name
#: ../../templates/show_clean_catalog.inc.php:25
#, php-format
@@ -3334,7 +3870,45 @@ msgstr "Tömmer katalogen %s"
msgid "Checking"
msgstr "Kontrollerar"
+#: ../../templates/show_concerts.inc.php:23
+msgid "Coming Events"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:27
+#: ../../templates/show_concerts.inc.php:52
+#: ../../templates/show_ip_history.inc.php:45
+#: ../../templates/show_ip_history.inc.php:59
+msgid "Date"
+msgstr "Datum"
+
+#: ../../templates/show_concerts.inc.php:28
+#: ../../templates/show_concerts.inc.php:53
+msgid "Place"
+msgstr ""
+
+#: ../../templates/show_concerts.inc.php:29
+#: ../../templates/show_concerts.inc.php:54
+#, fuzzy
+msgid "Location"
+msgstr "Åtgärd"
+
+#: ../../templates/show_concerts.inc.php:42
+#, fuzzy
+msgid "No coming events found"
+msgstr "Inga inaktiverade låtar hittades"
+
+#: ../../templates/show_concerts.inc.php:48
+#, fuzzy
+msgid "Past Events"
+msgstr "Sågs senast"
+
+#: ../../templates/show_concerts.inc.php:67
+#, fuzzy
+msgid "No past events found"
+msgstr "Inga liknande artister hittades"
+
#: ../../templates/show_confirmation.inc.php:29
+#: ../../templates/show_install_check.inc.php:65
#: ../../templates/show_update_items.inc.php:28
msgid "Continue"
msgstr "Fortsätt"
@@ -3374,87 +3948,86 @@ msgstr "Ange teckenuppsättning för databas"
msgid "PHP Settings"
msgstr "PHP-inställningar"
-#: ../../templates/show_debug.inc.php:44
+#: ../../templates/show_debug.inc.php:45
msgid "Setting"
msgstr "Inställning"
-#: ../../templates/show_debug.inc.php:45 ../../templates/show_debug.inc.php:94
+#: ../../templates/show_debug.inc.php:46 ../../templates/show_debug.inc.php:99
#: ../../templates/show_dynamic.inc.php:28
-#: ../../templates/show_preference_box.inc.php:42
-#: ../../templates/show_preference_box.inc.php:72
+#: ../../templates/show_preference_box.inc.php:43
+#: ../../templates/show_preference_box.inc.php:77
#: ../../templates/show_user_preferences.inc.php:38
msgid "Value"
msgstr "Värde"
-#: ../../templates/show_debug.inc.php:48
+#: ../../templates/show_debug.inc.php:51
msgid "Memory Limit"
msgstr "Minnesgräns"
-#: ../../templates/show_debug.inc.php:52
+#: ../../templates/show_debug.inc.php:55
msgid "Maximum Execution Time"
msgstr "Maximal exekveringstid"
-#: ../../templates/show_debug.inc.php:56
+#: ../../templates/show_debug.inc.php:59
msgid "Override Execution Time"
msgstr "Åsidosätt exekveringstid"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Failed"
msgstr "Misslyckades"
-#: ../../templates/show_debug.inc.php:57
+#: ../../templates/show_debug.inc.php:60
msgid "Succeeded"
msgstr "Lyckades"
-#: ../../templates/show_debug.inc.php:60
+#: ../../templates/show_debug.inc.php:63
msgid "Safe Mode"
msgstr "Säkert läge"
-#: ../../templates/show_debug.inc.php:68
+#: ../../templates/show_debug.inc.php:71
msgid "Zlib Support"
msgstr "Zlib-stöd"
-#: ../../templates/show_debug.inc.php:72
+#: ../../templates/show_debug.inc.php:75
msgid "GD Support"
msgstr "GD-stöd"
-#: ../../templates/show_debug.inc.php:76
+#: ../../templates/show_debug.inc.php:79
msgid "Iconv Support"
msgstr "Iconv-stöd"
-#: ../../templates/show_debug.inc.php:80
+#: ../../templates/show_debug.inc.php:83
msgid "Gettext Support"
msgstr "Gettext-stöd"
-#: ../../templates/show_debug.inc.php:86
+#: ../../templates/show_debug.inc.php:90
msgid "Current Configuration"
msgstr "Aktuell konfiguration"
-#: ../../templates/show_debug.inc.php:93
+#: ../../templates/show_debug.inc.php:98
#: ../../templates/show_preference_admin.inc.php:32
#: ../../templates/show_preference_admin.inc.php:51
-#: ../../templates/show_preference_box.inc.php:41
-#: ../../templates/show_preference_box.inc.php:71
+#: ../../templates/show_preference_box.inc.php:42
+#: ../../templates/show_preference_box.inc.php:76
#: ../../templates/show_user_preferences.inc.php:37
msgid "Preference"
msgstr "Inställning"
-#: ../../templates/show_debug.inc.php:117 ../../update.php:50
-#: ../../update.php:54
+#: ../../templates/show_debug.inc.php:125 ../../update.php:64
msgid "Ampache Update"
msgstr "Uppdatera Ampache"
-#: ../../templates/show_debug.inc.php:118
+#: ../../templates/show_debug.inc.php:126
#, fuzzy
msgid "Installed Ampache version"
msgstr "Version"
-#: ../../templates/show_debug.inc.php:119
+#: ../../templates/show_debug.inc.php:127
#, fuzzy
msgid "Latest Ampache version"
msgstr "Installation av Ampache"
-#: ../../templates/show_debug.inc.php:120
+#: ../../templates/show_debug.inc.php:128
msgid "Force check"
msgstr ""
@@ -3476,31 +4049,31 @@ msgstr "Spela upp demokratisk spellista"
msgid "Playing from base Playlist"
msgstr "Spelar upp från grundspellista"
-#: ../../templates/show_democratic_playlist.inc.php:57
-#: ../../templates/show_democratic_playlist.inc.php:97
+#: ../../templates/show_democratic_playlist.inc.php:56
+#: ../../templates/show_democratic_playlist.inc.php:103
msgid "Votes"
msgstr "Röster"
-#: ../../templates/show_democratic_playlist.inc.php:76
+#: ../../templates/show_democratic_playlist.inc.php:80
msgid "Remove Vote"
msgstr "Ta bort röst"
-#: ../../templates/show_democratic_playlist.inc.php:78
+#: ../../templates/show_democratic_playlist.inc.php:82
msgid "Add Vote"
msgstr "Lägg till röst"
-#: ../../templates/show_denied.inc.php:32
+#: ../../templates/show_denied.inc.php:44
#: ../../templates/sidebar_localplay.inc.php:67
msgid "Access Denied"
msgstr "Åtkomst nekad"
-#: ../../templates/show_denied.inc.php:33
-#: ../../templates/show_denied.inc.php:39
+#: ../../templates/show_denied.inc.php:45
+#: ../../templates/show_denied.inc.php:51
#, fuzzy
msgid "This event has been logged."
msgstr "Denna händelse har loggats"
-#: ../../templates/show_denied.inc.php:37
+#: ../../templates/show_denied.inc.php:49
#, fuzzy
msgid ""
"You have been redirected to this page because you do not have access to this "
@@ -3509,12 +4082,12 @@ msgstr ""
"Du har omdirigerats till denna sida därför att du inte har åtkomst till "
"denna funktion."
-#: ../../templates/show_denied.inc.php:38
+#: ../../templates/show_denied.inc.php:50
msgid ""
"If you believe this is an error please contact an Ampache administrator."
msgstr "Kontakta en Ampache-administratör om du tror att detta är ett fel."
-#: ../../templates/show_denied.inc.php:41
+#: ../../templates/show_denied.inc.php:53
#, fuzzy
msgid ""
"You have been redirected to this page because you attempted to access a "
@@ -3523,8 +4096,8 @@ msgstr ""
"Du har omdirigerats till denna sida därför att du har försökt att komma åt "
"en funktion som är inaktiverad i demonstrationen."
-#: ../../templates/show_disabled_songs.inc.php:32
-#: ../../templates/show_disabled_songs.inc.php:54
+#: ../../templates/show_disabled_songs.inc.php:33
+#: ../../templates/show_disabled_songs.inc.php:59
msgid "Addition Time"
msgstr "Lades till"
@@ -3553,15 +4126,16 @@ msgstr "Dubblerade låtar"
#: ../../templates/show_duplicates.inc.php:28
#: ../../templates/show_duplicates.inc.php:67
#: ../../templates/show_lyrics.inc.php:44
-#: ../../templates/show_now_playing_row.inc.php:52
-#: ../../templates/show_recently_played.inc.php:33
-#: ../../templates/show_recently_played.inc.php:129
+#: ../../templates/show_now_playing_row.inc.php:39
+#: ../../templates/show_recently_played.inc.php:30
+#: ../../templates/show_recently_played.inc.php:140
+#: ../../templates/sidebar_home.inc.php:70
msgid "Song"
msgstr "Låt"
#: ../../templates/show_duplicates.inc.php:31
#: ../../templates/show_duplicates.inc.php:70
-#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:85
+#: ../../templates/show_random.inc.php:54 ../../templates/show_song.inc.php:89
msgid "Length"
msgstr "Speltid"
@@ -3659,12 +4233,9 @@ msgid "Created by: %s for %s"
msgstr "Skapad av: %s för %s"
#: ../../templates/show_edit_song_row.inc.php:49
-#: ../../templates/show_localplay_playlist.inc.php:30
-#: ../../templates/show_localplay_playlist.inc.php:56
-#: ../../templates/show_playlist_songs.inc.php:33
-#: ../../templates/show_playlist_songs.inc.php:70
-#: ../../templates/show_song_previews.inc.php:34
-#: ../../templates/show_songs.inc.php:38 ../../templates/show_songs.inc.php:85
+#: ../../templates/show_localplay_playlist.inc.php:31
+#: ../../templates/show_localplay_playlist.inc.php:61
+#: ../../templates/show_song_previews.inc.php:35
msgid "Track"
msgstr "Spår"
@@ -3676,27 +4247,27 @@ msgstr "Redigerar befintlig användare"
msgid "User Properties"
msgstr "Användaregenskaper"
-#: ../../templates/show_edit_user.inc.php:86
+#: ../../templates/show_edit_user.inc.php:104
msgid "Other Options"
msgstr "Övriga inställningar"
-#: ../../templates/show_edit_user.inc.php:89
+#: ../../templates/show_edit_user.inc.php:115
msgid "Config Preset"
msgstr "Konfigurationsförval"
-#: ../../templates/show_edit_user.inc.php:95
+#: ../../templates/show_edit_user.inc.php:121
msgid "Flash"
msgstr "Flash"
-#: ../../templates/show_edit_user.inc.php:101
+#: ../../templates/show_edit_user.inc.php:127
msgid "Prevent Preset Override"
msgstr "Förhindra åsidosättning av förval"
-#: ../../templates/show_edit_user.inc.php:103
+#: ../../templates/show_edit_user.inc.php:129
msgid "This Affects all non-Admin accounts"
msgstr "Detta påverkar alla icke-administratörskonton"
-#: ../../templates/show_edit_user.inc.php:115
+#: ../../templates/show_edit_user.inc.php:141
msgid "Update User"
msgstr "Uppdatera användare"
@@ -3742,23 +4313,35 @@ msgstr "Hämta omslag"
#: ../../templates/show_newest.inc.php:23
#: ../../templates/show_popular.inc.php:23
#: ../../templates/show_recent.inc.php:23
-#: ../../templates/sidebar_home.inc.php:71
+#: ../../templates/sidebar_home.inc.php:78
msgid "Information"
msgstr "Information"
-#: ../../templates/show_html5_player.inc.php:252
+#: ../../templates/show_html5_player.inc.php:511
msgid "Media is currently playing. Are you sure you want to close"
msgstr ""
+#: ../../templates/show_html5_player.inc.php:671
+msgid "Slideshow"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:674
+msgid "Equalizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:677
+msgid "Visualizer"
+msgstr ""
+
+#: ../../templates/show_html5_player.inc.php:680
+msgid "Visualizer Full-Screen"
+msgstr ""
+
#: ../../templates/show_import_playlist.inc.php:23
msgid "Importing a Playlist from a File"
msgstr "Importerar en spellista från en fil"
-#: ../../templates/show_import_playlist.inc.php:34
-msgid "Playlist Type"
-msgstr "Typ av spellista"
-
-#: ../../templates/show_import_playlist.inc.php:46
+#: ../../templates/show_import_playlist.inc.php:35
msgid "Import Playlist"
msgstr "Importera spellista"
@@ -3771,24 +4354,31 @@ msgstr "Album för stunden"
#: ../../templates/show_install_config.inc.php:29
#: ../../templates/show_install.inc.php:26
#, fuzzy
+msgid "Install progress"
+msgstr "Version"
+
+#: ../../templates/show_install_account.inc.php:38
+#: ../../templates/show_install_config.inc.php:40
+#: ../../templates/show_install.inc.php:37
+#, fuzzy
msgid "Step 1 - Create the Ampache database"
msgstr "Steg 1 - Skapa Ampache-databasen och lägg in data"
-#: ../../templates/show_install_account.inc.php:27
-#: ../../templates/show_install_config.inc.php:30
-#: ../../templates/show_install.inc.php:30
+#: ../../templates/show_install_account.inc.php:39
+#: ../../templates/show_install_config.inc.php:41
+#: ../../templates/show_install.inc.php:42
#, fuzzy
msgid "Step 2 - Create ampache.cfg.php"
msgstr "Steg 2 - Skapa filen ampache.cfg.php"
-#: ../../templates/show_install_account.inc.php:28
-#: ../../templates/show_install_config.inc.php:34
-#: ../../templates/show_install.inc.php:31
+#: ../../templates/show_install_account.inc.php:41
+#: ../../templates/show_install_config.inc.php:46
+#: ../../templates/show_install.inc.php:43
#, fuzzy
msgid "Step 3 - Set up the initial account"
msgstr "Steg 3 - Ställ in första kontot"
-#: ../../templates/show_install_account.inc.php:30
+#: ../../templates/show_install_account.inc.php:43
#, fuzzy
msgid ""
"This step creates your initial Ampache admin account. Once your admin "
@@ -3798,57 +4388,100 @@ msgstr ""
"administrationskonto har skapats kommer du att bli omdirigerad till "
"inloggningssidan"
-#: ../../templates/show_install_account.inc.php:34
+#: ../../templates/show_install_account.inc.php:47
msgid "Create Admin Account"
msgstr "Skapa administrationskonto"
-#: ../../templates/show_install_account.inc.php:51
+#: ../../templates/show_install_account.inc.php:69
msgid "Create Account"
msgstr "Skapa konto"
#: ../../templates/show_install_check.inc.php:26
-#: ../../templates/show_test.inc.php:38
+msgid "Requirements"
+msgstr "Krav"
+
+#: ../../templates/show_install_check.inc.php:30
+#, fuzzy
+msgid ""
+"This page handles the installation of the Ampache database and the creation "
+"of the ampache.cfg.php file. Before you continue please make sure that you "
+"have the following prerequisites:"
+msgstr ""
+"Denna sida hanterar installationen av Ampache-databasen och skapandet av "
+"filen ampache.cfg. Innan du fortsätter, se till att du har följande "
+
+#: ../../templates/show_install_check.inc.php:33
+#, fuzzy
+msgid ""
+"A MySQL server with a username and password that can create/modify databases"
+msgstr ""
+"En MySQL-server med ett användarnamn och lösenord som kan skapa/ändra "
+"databaser"
+
+#: ../../templates/show_install_check.inc.php:34
+#, fuzzy, php-format
+msgid "Your webserver has read access to the files %s and %s"
+msgstr ""
+"Din webbserver har lästillgång till filen /sql/ampache.sql och filen /config/"
+"ampache.cfg.php.dist"
+
+#: ../../templates/show_install_check.inc.php:37
+#, fuzzy, php-format
+msgid ""
+"Once you have ensured that the above requirements are met please fill out "
+"the information below. You will only be asked for the required config "
+"values. If you would like to make changes to your Ampache install at a later "
+"date simply edit %s"
+msgstr ""
+"När du har sett till att ovanstående krav uppfylls kan du fyll i "
+"informationen nedan. Du kommer endast att bli frågad efter de "
+"konfigurationsvärden som krävs. Om du vill göra ändringar till din "
+"installation av Ampache vid en senare tidpunkt kan du helt enkelt redigera "
+"filen /config/ampache.cfg.php"
+
+#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_test.inc.php:51
msgid "CHECK"
msgstr "KONTROLL"
-#: ../../templates/show_install_check.inc.php:27
-#: ../../templates/show_test.inc.php:40
+#: ../../templates/show_install_check.inc.php:43
+#: ../../templates/show_test.inc.php:52
msgid "STATUS"
msgstr "STATUS"
-#: ../../templates/show_install_check.inc.php:28
-#: ../../templates/show_test.inc.php:42
+#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_test.inc.php:53
msgid "DESCRIPTION"
msgstr "BESKRIVNING"
-#: ../../templates/show_install_check.inc.php:32
-#: ../../templates/show_install_check.inc.php:37
+#: ../../templates/show_install_check.inc.php:48
+#: ../../templates/show_install_check.inc.php:53
#, fuzzy, php-format
msgid "%s is readable"
msgstr "%s är inte läsbar av ampache"
-#: ../../templates/show_install_check.inc.php:34
+#: ../../templates/show_install_check.inc.php:50
msgid "This tests whether the configuration template can be read."
msgstr ""
-#: ../../templates/show_install_check.inc.php:39
+#: ../../templates/show_install_check.inc.php:55
msgid ""
"This tests whether the file needed to initialise the database structure is "
"available."
msgstr ""
-#: ../../templates/show_install_check.inc.php:42
+#: ../../templates/show_install_check.inc.php:58
#, fuzzy
msgid "ampache.cfg.php is writable"
msgstr "Ampache.cfg.php finns redan"
-#: ../../templates/show_install_check.inc.php:44
+#: ../../templates/show_install_check.inc.php:60
msgid ""
"This tests whether PHP can write to config/. This is not strictly necessary, "
"but will help streamline the installation process."
msgstr ""
-#: ../../templates/show_install_config.inc.php:32
+#: ../../templates/show_install_config.inc.php:43
#, fuzzy, php-format
msgid ""
"This step takes the basic config values and generates the config file. If "
@@ -3861,62 +4494,62 @@ msgstr ""
"konfigurationsfilen. Det kommer att tillfråga dig om att hämta ner "
"konfigurationsfilen. Lägg den hämtade konfigurationsfilen i katalogen /config"
-#: ../../templates/show_install_config.inc.php:38
+#: ../../templates/show_install_config.inc.php:51
msgid "Generate Config File"
msgstr "Generera konfigurationsfil"
-#: ../../templates/show_install_config.inc.php:43
+#: ../../templates/show_install_config.inc.php:55
msgid "Web Path"
msgstr "Webbsökväg"
-#: ../../templates/show_install_config.inc.php:47
+#: ../../templates/show_install_config.inc.php:61
#, fuzzy
msgid "Database Name"
msgstr "Önskat databasnamn"
-#: ../../templates/show_install_config.inc.php:51
-#: ../../templates/show_install.inc.php:43
+#: ../../templates/show_install_config.inc.php:67
+#: ../../templates/show_install.inc.php:56
msgid "MySQL Hostname"
msgstr "MySQL-värdnamn"
-#: ../../templates/show_install_config.inc.php:55
-#: ../../templates/show_install.inc.php:47
+#: ../../templates/show_install_config.inc.php:73
+#: ../../templates/show_install.inc.php:62
msgid "MySQL port (optional)"
msgstr ""
-#: ../../templates/show_install_config.inc.php:59
+#: ../../templates/show_install_config.inc.php:79
msgid "MySQL Username"
msgstr "MySQL-användarnamn"
-#: ../../templates/show_install_config.inc.php:63
+#: ../../templates/show_install_config.inc.php:85
msgid "MySQL Password"
msgstr "MySQL-lösenord"
-#: ../../templates/show_install_config.inc.php:70
+#: ../../templates/show_install_config.inc.php:97
#, fuzzy
msgid "Write"
msgstr "Läs/Skriv"
-#: ../../templates/show_install_config.inc.php:80
+#: ../../templates/show_install_config.inc.php:102
#, fuzzy
msgid "ampache.cfg.php exists?"
msgstr "Ampache.cfg.php finns redan"
-#: ../../templates/show_install_config.inc.php:87
+#: ../../templates/show_install_config.inc.php:104
#, fuzzy
msgid "ampache.cfg.php configured?"
msgstr "Ampache.cfg.php konfigurerad?"
-#: ../../templates/show_install_config.inc.php:100
+#: ../../templates/show_install_config.inc.php:109
#, fuzzy
msgid "Recheck Config"
msgstr "Leta efter konfiguration"
-#: ../../templates/show_install_config.inc.php:106
+#: ../../templates/show_install_config.inc.php:116
msgid "Continue to Step 3"
msgstr "Fortsätt till steg 3"
-#: ../../templates/show_install.inc.php:28
+#: ../../templates/show_install.inc.php:39
#, fuzzy
msgid ""
"This step creates and inserts the Ampache database, so please provide a "
@@ -3927,57 +4560,57 @@ msgstr ""
"tillhandahålla ett MySQL-konto med behörighet att skapa databaser. Detta "
"steg kan ta lite tid beroende på hastigheten på din dator"
-#: ../../templates/show_install.inc.php:35
+#: ../../templates/show_install.inc.php:47
msgid "Insert Ampache Database"
msgstr "Infoga Ampache-databas"
-#: ../../templates/show_install.inc.php:39
+#: ../../templates/show_install.inc.php:50
msgid "Desired Database Name"
msgstr "Önskat databasnamn"
-#: ../../templates/show_install.inc.php:51
+#: ../../templates/show_install.inc.php:68
msgid "MySQL Administrative Username"
msgstr "Administrativ MySQL-användare"
-#: ../../templates/show_install.inc.php:55
+#: ../../templates/show_install.inc.php:74
msgid "MySQL Administrative Password"
msgstr "Lösenord för administrativ MySQL-användare"
-#: ../../templates/show_install.inc.php:59
+#: ../../templates/show_install.inc.php:80
#, fuzzy
-msgid "Create Database User for New Database?"
+msgid "Create Database User (for New Database)?"
msgstr "Skapa databasanvändare för ny databas"
-#: ../../templates/show_install.inc.php:63
+#: ../../templates/show_install.inc.php:89
msgid "Ampache Database Username"
msgstr "Användare för Ampache-databas"
-#: ../../templates/show_install.inc.php:67
+#: ../../templates/show_install.inc.php:95
msgid "Ampache Database User Password"
msgstr "Lösenord för Ampache-databas"
-#: ../../templates/show_install.inc.php:71
+#: ../../templates/show_install.inc.php:101
msgid "Overwrite Existing"
msgstr "Skriv över befintlig"
-#: ../../templates/show_install.inc.php:75
+#: ../../templates/show_install.inc.php:110
msgid "Use Existing Database"
msgstr "Använd befintlig databas"
-#: ../../templates/show_install.inc.php:79
+#: ../../templates/show_install.inc.php:119
msgid "Skip"
msgstr ""
-#: ../../templates/show_install.inc.php:80
+#: ../../templates/show_install.inc.php:122
msgid "Insert Database"
msgstr "Lägg till databas"
-#: ../../templates/show_install_lang.inc.php:28
+#: ../../templates/show_install_lang.inc.php:30
#, fuzzy
msgid "Choose Installation Language"
msgstr "Välj installationsspråk."
-#: ../../templates/show_install_lang.inc.php:49
+#: ../../templates/show_install_lang.inc.php:50
msgid "Start configuration"
msgstr "Påbörja konfiguration"
@@ -3995,11 +4628,6 @@ msgstr "Visa unika"
msgid "Show All"
msgstr "Visa alla"
-#: ../../templates/show_ip_history.inc.php:45
-#: ../../templates/show_ip_history.inc.php:59
-msgid "Date"
-msgstr "Datum"
-
#: ../../templates/show_ip_history.inc.php:46
#: ../../templates/show_ip_history.inc.php:60
msgid "IP Address"
@@ -4009,12 +4637,12 @@ msgstr "IP-adress"
msgid "Manage Radio Stations"
msgstr "Hantera radiostationer"
-#: ../../templates/show_live_stream_row.inc.php:25
+#: ../../templates/show_live_stream_row.inc.php:27
#, fuzzy
msgid "Play live stream"
msgstr "Spellista"
-#: ../../templates/show_live_stream_row.inc.php:36
+#: ../../templates/show_live_stream_row.inc.php:41
msgid "Live Stream edit"
msgstr ""
@@ -4060,48 +4688,48 @@ msgstr "Visa instanser för lokal uppspelning"
msgid "Edit Instance"
msgstr "Redigera instans"
-#: ../../templates/show_localplay_status.inc.php:27
+#: ../../templates/show_localplay_status.inc.php:30
msgid "Localplay Control"
msgstr "Kontroll av lokal uppspelning"
-#: ../../templates/show_localplay_status.inc.php:32
+#: ../../templates/show_localplay_status.inc.php:35
msgid "Mute"
msgstr "Tyst"
-#: ../../templates/show_localplay_status.inc.php:33
+#: ../../templates/show_localplay_status.inc.php:36
msgid "Decrease Volume"
msgstr "Sänk volymen"
-#: ../../templates/show_localplay_status.inc.php:34
+#: ../../templates/show_localplay_status.inc.php:37
msgid "Increase Volume"
msgstr "Öka volymen"
-#: ../../templates/show_localplay_status.inc.php:35
+#: ../../templates/show_localplay_status.inc.php:38
msgid "Volume"
msgstr "Volym"
-#: ../../templates/show_localplay_status.inc.php:40
+#: ../../templates/show_localplay_status.inc.php:43
msgid "Repeat"
msgstr "Upprepa"
-#: ../../templates/show_login_form.inc.php:83
+#: ../../templates/show_login_form.inc.php:86
msgid "Remember Me"
msgstr "Kom ihåg mig"
-#: ../../templates/show_login_form.inc.php:90
+#: ../../templates/show_login_form.inc.php:93
#, fuzzy
msgid "Lost password"
msgstr "Lösenord"
-#: ../../templates/show_login_form.inc.php:91
+#: ../../templates/show_login_form.inc.php:94
msgid "Login"
msgstr "Logga in"
-#: ../../templates/show_login_form.inc.php:96
+#: ../../templates/show_login_form.inc.php:99
msgid "Register"
msgstr "Registrera"
-#: ../../templates/show_login_form.inc.php:107
+#: ../../templates/show_login_form.inc.php:110
msgid "Message of the Day"
msgstr "Dagens meddelande"
@@ -4140,11 +4768,6 @@ msgstr ""
msgid "Yourself"
msgstr ""
-#: ../../templates/show_mail_users.inc.php:43
-#, fuzzy
-msgid "Ampache"
-msgstr "Felsökning för Ampache"
-
#: ../../templates/show_mail_users.inc.php:48
msgid "Subject"
msgstr "Ämne"
@@ -4209,6 +4832,7 @@ msgstr "Skapa ny spellista"
#: ../../templates/show_manage_shoutbox.inc.php:27
#: ../../templates/show_manage_shoutbox.inc.php:51
+#: ../../templates/show_shared_objects.inc.php:26
msgid "Object"
msgstr "Objekt"
@@ -4222,36 +4846,18 @@ msgstr "Klistrig"
msgid "Date Added"
msgstr "Lades till"
-#: ../../templates/show_missing_album.inc.php:56
-#: ../../templates/show_missing_album.inc.php:57
-#, fuzzy
-msgid "Play Album Preview"
-msgstr "Spela upp album"
-
-#: ../../templates/show_missing_album.inc.php:62
-#: ../../templates/show_missing_album.inc.php:63
-#, fuzzy
-msgid "Play Add Album Preview"
-msgstr "Spela upp album"
-
-#: ../../templates/show_missing_album.inc.php:67
-#: ../../templates/show_missing_album.inc.php:68
-#, fuzzy
-msgid "Add Album Preview"
-msgstr "Lägg till album"
-
#: ../../templates/show_missing_album.inc.php:72
#, fuzzy
msgid "Wanted actions"
msgstr "Avancerade inställningar"
-#: ../../templates/show_missing_albums.inc.php:23
+#: ../../templates/show_missing_albums.inc.php:44
#, fuzzy
-msgid "Missing Albums"
-msgstr "Album"
+msgid "No missing album found"
+msgstr "Inga inaktiverade låtar hittades"
-#: ../../templates/show_now_playing_row.inc.php:89
-#: ../../templates/show_now_playing_similar.inc.php:48
+#: ../../templates/show_now_playing_row.inc.php:76
+#: ../../templates/show_now_playing_similar.inc.php:52
#, fuzzy
msgid "Similar Songs"
msgstr "Liknande artister"
@@ -4269,125 +4875,60 @@ msgstr "inte betygsatt än"
msgid "%s of 5"
msgstr "%s av 5"
-#: ../../templates/show_playlist.inc.php:40
-#: ../../templates/show_playlist.inc.php:41
-msgid "Normalize Tracks"
-msgstr "Normalisera spår"
-
-#: ../../templates/show_playlist.inc.php:61
-#: ../../templates/show_playlist.inc.php:62
-#, fuzzy
-msgid "Play All"
-msgstr "Spela upp album"
-
-#: ../../templates/show_playlist.inc.php:67
-#: ../../templates/show_playlist.inc.php:68
-#, fuzzy
-msgid "Play Add Playlist"
-msgstr "Spellista"
-
-#: ../../templates/show_playlist.inc.php:72
-#: ../../templates/show_playlist.inc.php:73
-#: ../../templates/show_smartplaylist.inc.php:39
-#: ../../templates/show_smartplaylist.inc.php:40
-msgid "Add All"
-msgstr "Lägg till alla"
-
-#: ../../templates/show_playlist.inc.php:76
#: ../../templates/show_playlist.inc.php:77
-msgid "Add Random"
-msgstr "Lägg till slumpmässigt"
+#, fuzzy
+msgid "Create channel"
+msgstr "Skapad"
-#: ../../templates/show_playlist.inc.php:81
-#: ../../templates/show_playlist_row.inc.php:49
+#: ../../templates/show_playlist.inc.php:83
+#: ../../templates/show_playlist_row.inc.php:60
#, fuzzy
msgid "Do you really want to delete the playlist?"
msgstr "Vill du verkligen ta bort denna katalog?"
-#: ../../templates/show_playlist_row.inc.php:25
-#: ../../templates/show_smartplaylist_row.inc.php:25
-#, fuzzy
-msgid "Play playlist"
-msgstr "Spellista"
-
-#: ../../templates/show_playlist_row.inc.php:27
-#: ../../templates/show_smartplaylist_row.inc.php:27
-#, fuzzy
-msgid "Play add playlist"
-msgstr "Spellista"
-
-#: ../../templates/show_playlist_row.inc.php:46
+#: ../../templates/show_playlist_row.inc.php:57
#, fuzzy
msgid "Playlist edit"
msgstr "Spellistmetod"
-#: ../../templates/show_playlists.inc.php:30
-#: ../../templates/show_playlists.inc.php:56
-#: ../../templates/show_smartplaylists.inc.php:33
-#: ../../templates/show_smartplaylists.inc.php:57
-msgid "Playlist Name"
-msgstr "Spellista"
-
-#: ../../templates/show_playlists.inc.php:32
-#: ../../templates/show_playlists.inc.php:58
+#: ../../templates/show_playlists.inc.php:31
+#: ../../templates/show_playlists.inc.php:59
msgid "# Songs"
msgstr "# Låtar"
-#: ../../templates/show_playlists.inc.php:33
-#: ../../templates/show_playlists.inc.php:59
-#: ../../templates/show_smartplaylists.inc.php:35
-#: ../../templates/show_smartplaylists.inc.php:59
+#: ../../templates/show_playlists.inc.php:32
+#: ../../templates/show_playlists.inc.php:60
+#: ../../templates/show_smartplaylists.inc.php:32
+#: ../../templates/show_smartplaylists.inc.php:58
msgid "Owner"
msgstr "Ägare"
-#: ../../templates/show_playlists.inc.php:48
+#: ../../templates/show_playlists.inc.php:49
#, fuzzy
msgid "No playlist found"
msgstr "Inga liknande artister hittades"
-#: ../../templates/show_playlist_song_row.inc.php:25
-#: ../../templates/show_recently_played.inc.php:93
-#: ../../templates/show_song.inc.php:59
-#: ../../templates/show_song_row.inc.php:25
-#, fuzzy
-msgid "Play song"
-msgstr "Låtar i spellista"
-
-#: ../../templates/show_playlist_song_row.inc.php:27
-#: ../../templates/show_recently_played.inc.php:95
-#: ../../templates/show_song.inc.php:62
-#: ../../templates/show_song_row.inc.php:27
-#, fuzzy
-msgid "Play add song"
-msgstr "Låtar i spellista"
-
-#: ../../templates/show_playlist_song_row.inc.php:55
-#: ../../templates/show_song_row.inc.php:68
+#: ../../templates/show_playlist_song_row.inc.php:67
+#: ../../templates/show_song_row.inc.php:82
msgid "Reorder"
msgstr ""
-#: ../../templates/show_playlist_songs.inc.php:37
-#: ../../templates/show_playlist_songs.inc.php:74
-#: ../../templates/show_song.inc.php:84
-msgid "Genre"
-msgstr "Genre"
-
#: ../../templates/show_playlist_title.inc.php:23
#, fuzzy, php-format
msgid "%s %s (Playlist)"
msgstr "Spellistan %s %s"
-#: ../../templates/show_plugins.inc.php:31
-#: ../../templates/show_plugins.inc.php:67
+#: ../../templates/show_plugins.inc.php:32
+#: ../../templates/show_plugins.inc.php:72
#, fuzzy
msgid "Installed Version"
msgstr "Version"
-#: ../../templates/show_plugins.inc.php:43
+#: ../../templates/show_plugins.inc.php:46
msgid "Deactivate"
msgstr "Inaktivera"
-#: ../../templates/show_plugins.inc.php:47
+#: ../../templates/show_plugins.inc.php:50
msgid "Upgrade"
msgstr ""
@@ -4395,13 +4936,13 @@ msgstr ""
msgid "Preference Administration"
msgstr "Administrera inställningar"
-#: ../../templates/show_preference_box.inc.php:44
-#: ../../templates/show_preference_box.inc.php:74
+#: ../../templates/show_preference_box.inc.php:45
+#: ../../templates/show_preference_box.inc.php:79
msgid "Apply to All"
msgstr "Utför för alla"
-#: ../../templates/show_preference_box.inc.php:45
-#: ../../templates/show_preference_box.inc.php:75
+#: ../../templates/show_preference_box.inc.php:46
+#: ../../templates/show_preference_box.inc.php:80
msgid "Access Level"
msgstr "Behörighetsnivå"
@@ -4436,6 +4977,20 @@ msgstr "Antal objekt"
msgid "Unlimited"
msgstr "Obegränsat"
+#: ../../templates/show_random.inc.php:68
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minut"
+msgstr[1] "%d minuter"
+
+#: ../../templates/show_random.inc.php:70
+#, php-format
+msgid "%d hour"
+msgid_plural "%d hours"
+msgstr[0] "%d timme"
+msgstr[1] "%d timmar"
+
#: ../../templates/show_random.inc.php:79
msgid "Size Limit"
msgstr "Storleksgräns"
@@ -4444,22 +4999,78 @@ msgstr "Storleksgräns"
msgid "Enqueue"
msgstr "Kölägg"
-#: ../../templates/show_recently_played.inc.php:37
-#: ../../templates/show_recently_played.inc.php:132
+#: ../../templates/show_recently_played.inc.php:35
+#: ../../templates/show_recently_played.inc.php:145
msgid "Last Played"
msgstr "Senast spelad"
-#: ../../templates/show_recently_played.inc.php:38
-#: ../../templates/show_recently_played.inc.php:133
+#: ../../templates/show_recently_played.inc.php:36
+#: ../../templates/show_recently_played.inc.php:146
msgid "Agent"
msgstr ""
-#: ../../templates/show_recently_played.inc.php:120
+#: ../../templates/show_recently_played.inc.php:63
+#, fuzzy
+msgid "second ago"
+msgid_plural "seconds ago"
+msgstr[0] "sekunder sedan"
+msgstr[1] "sekunder sedan"
+
+#: ../../templates/show_recently_played.inc.php:66
+#, fuzzy
+msgid "minute ago"
+msgid_plural "minutes ago"
+msgstr[0] "minuter sedan"
+msgstr[1] "minuter sedan"
+
+#: ../../templates/show_recently_played.inc.php:69
+#, fuzzy
+msgid "hour ago"
+msgid_plural "hours ago"
+msgstr[0] "timmar sedan"
+msgstr[1] "timmar sedan"
+
+#: ../../templates/show_recently_played.inc.php:72
+#, fuzzy
+msgid "day ago"
+msgid_plural "days ago"
+msgstr[0] "dygn sedan"
+msgstr[1] "dygn sedan"
+
+#: ../../templates/show_recently_played.inc.php:75
+#, fuzzy
+msgid "week ago"
+msgid_plural "weeks ago"
+msgstr[0] "veckor sedan"
+msgstr[1] "veckor sedan"
+
+#: ../../templates/show_recently_played.inc.php:78
+#, fuzzy
+msgid "month ago"
+msgid_plural "months ago"
+msgstr[0] "månader sedan"
+msgstr[1] "månader sedan"
+
+#: ../../templates/show_recently_played.inc.php:81
+#, fuzzy
+msgid "year ago"
+msgid_plural "years ago"
+msgstr[0] "år sedan"
+msgstr[1] "år sedan"
+
+#: ../../templates/show_recently_played.inc.php:84
+#, fuzzy
+msgid "decade ago"
+msgid_plural "decades ago"
+msgstr[0] "sekunder sedan"
+msgstr[1] "sekunder sedan"
+
+#: ../../templates/show_recently_played.inc.php:133
#, fuzzy
msgid "No recently item found"
msgstr "Inga inaktiverade låtar hittades"
-#: ../../templates/show_recommended_artists.inc.php:62
+#: ../../templates/show_recommended_artists.inc.php:72
#, fuzzy
msgid "No similar artist found"
msgstr "Inga liknande artister hittades"
@@ -4532,7 +5143,7 @@ msgstr "Lägg till regel"
msgid "Anywhere"
msgstr ""
-#: ../../templates/show_search_bar.inc.php:37
+#: ../../templates/show_search_bar.inc.php:38
msgid "Advanced Search"
msgstr "Avancerad sökning"
@@ -4558,16 +5169,54 @@ msgstr "Inställningar"
msgid "Add Search Results"
msgstr "Lägg till sökresultat"
+#: ../../templates/show_shared_objects.inc.php:27
+#, fuzzy
+msgid "Object Type"
+msgstr "Objekt"
+
+#: ../../templates/show_shared_objects.inc.php:29
+#, fuzzy
+msgid "Creation Date"
+msgstr "Skapad"
+
+#: ../../templates/show_shared_objects.inc.php:30
+#, fuzzy
+msgid "Last Visit"
+msgstr "Senast verifierad"
+
+#: ../../templates/show_shared_objects.inc.php:31
+msgid "Counter"
+msgstr ""
+
+#: ../../templates/show_shared_objects.inc.php:36
+#, fuzzy
+msgid "Public Url"
+msgstr "Publik"
+
+#: ../../templates/show_share.inc.php:26
+#, fuzzy
+msgid "Shared on"
+msgstr "Skicka vid Lägg till"
+
+#: ../../templates/show_share.inc.php:27
+msgid "by"
+msgstr ""
+
+#: ../../templates/show_smartplaylist.inc.php:39
+#: ../../templates/show_smartplaylist.inc.php:40
+msgid "Add All"
+msgstr "Lägg till alla"
+
#: ../../templates/show_smartplaylist.inc.php:56
msgid "Save Changes"
msgstr "Spara ändringar"
-#: ../../templates/show_smartplaylist_row.inc.php:44
+#: ../../templates/show_smartplaylist_row.inc.php:52
#, fuzzy
msgid "Smart Playlist edit"
msgstr "Importera spellista"
-#: ../../templates/show_smartplaylists.inc.php:49
+#: ../../templates/show_smartplaylists.inc.php:48
#, fuzzy
msgid "No smart playlist found"
msgstr "Inga liknande artister hittades"
@@ -4586,59 +5235,46 @@ msgid "Waveform"
msgstr ""
# FIXME: Osäker
-#: ../../templates/show_song.inc.php:71
+#: ../../templates/show_song.inc.php:75
#, fuzzy
msgid "Link"
msgstr "Liknande"
-#: ../../templates/show_song.inc.php:87
+#: ../../templates/show_song.inc.php:91
#, fuzzy
msgid "Label"
msgstr "Nivå"
-#: ../../templates/show_song.inc.php:88
+#: ../../templates/show_song.inc.php:92
#, fuzzy
msgid "Song Language"
msgstr "Språk"
-#: ../../templates/show_song.inc.php:89
+#: ../../templates/show_song.inc.php:93
#, fuzzy
msgid "Catalog Number"
msgstr "Katalognamn"
-#: ../../templates/show_song.inc.php:95
+#: ../../templates/show_song.inc.php:99
#, fuzzy
msgid "Last Updated"
msgstr "Flaggorr uppdaterade"
-#: ../../templates/show_song.inc.php:103
+#: ../../templates/show_song.inc.php:107
#, fuzzy
msgid "Lyrics"
msgstr "%s låttexter"
-#: ../../templates/show_song_preview_row.inc.php:27
-#, fuzzy
-msgid "Play song Preview"
-msgstr "Låtar i spellista"
-
-#: ../../templates/show_song_preview_row.inc.php:29
-msgid "Play Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_preview_row.inc.php:36
-msgid "Add Song Preview"
-msgstr ""
-
-#: ../../templates/show_song_row.inc.php:47
+#: ../../templates/show_song_row.inc.php:58
msgid "Song Information"
msgstr "Låtinformation"
-#: ../../templates/show_song_row.inc.php:56
+#: ../../templates/show_song_row.inc.php:70
#, fuzzy
msgid "Song edit"
msgstr "Låttitel"
-#: ../../templates/show_songs.inc.php:72
+#: ../../templates/show_songs.inc.php:68
#, fuzzy
msgid "No song found"
msgstr "Inga inaktiverade låtar hittades"
@@ -4659,13 +5295,31 @@ msgstr "Katalogstorlek"
msgid "Catalog Time"
msgstr "Totalt tid för katalog"
+#: ../../templates/show_stats_popular.inc.php:26
+msgid "Most Popular Albums"
+msgstr "Mest populära album"
+
+#: ../../templates/show_stats_popular.inc.php:32
+msgid "Most Popular Artists"
+msgstr "Mest populära artister"
+
+#: ../../templates/show_tagcloud.inc.php:35
+#, fuzzy
+msgid "Tag edit"
+msgstr "Låttitel"
+
+#: ../../templates/show_tagcloud.inc.php:40
+#, fuzzy
+msgid "Do you really want to delete the tag?"
+msgstr "Vill du verkligen ta bort denna katalog?"
+
#: ../../templates/show_test_config.inc.php:40
-#: ../../templates/show_test.inc.php:32
+#: ../../templates/show_test.inc.php:43
#: ../../templates/sidebar_admin.inc.php:45
msgid "Ampache Debug"
msgstr "Felsökning för Ampache"
-#: ../../templates/show_test.inc.php:33
+#: ../../templates/show_test.inc.php:46
#, fuzzy
msgid ""
"You may have reached this page because a configuration error has occured. "
@@ -4787,10 +5441,24 @@ msgstr ""
#: ../../templates/show_test_table.inc.php:96
#, fuzzy
+msgid "PHP curl extension"
+msgstr "PHP-sessionstöd"
+
+#: ../../templates/show_test_table.inc.php:101
+#, fuzzy
+msgid ""
+"This tests whether you have the curl extension enabled. This is not "
+"strictly necessary, but may result in a better experience."
+msgstr ""
+"Detta test kontrollerar om du har MySQL-utökningen inläst för PHP. Detta "
+"krävs för att Ampache ska fungera."
+
+#: ../../templates/show_test_table.inc.php:105
+#, fuzzy
msgid "PHP safe mode disabled"
msgstr "Säkert läge"
-#: ../../templates/show_test_table.inc.php:101
+#: ../../templates/show_test_table.inc.php:110
#, fuzzy
msgid ""
"This test makes sure that PHP is not running in safe mode. Some features of "
@@ -4800,33 +5468,33 @@ msgstr ""
"minnesgränserna. Det krävs inte men utan dessa förmågor kommer kanske vissa "
"funktioner i Ampache inte att fungera korrekt"
-#: ../../templates/show_test_table.inc.php:105
+#: ../../templates/show_test_table.inc.php:114
#, fuzzy
msgid "PHP memory limit override"
msgstr "Minnesgräns"
-#: ../../templates/show_test_table.inc.php:110
+#: ../../templates/show_test_table.inc.php:119
msgid ""
"This tests whether Ampache can override the memory limit. This is not "
"strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:114
+#: ../../templates/show_test_table.inc.php:123
#, fuzzy
msgid "PHP execution time override"
msgstr "Maximal exekveringstid"
-#: ../../templates/show_test_table.inc.php:119
+#: ../../templates/show_test_table.inc.php:128
msgid ""
"This tests whether Ampache can override the limit on maximum execution "
"time. This is not strictly necessary, but may result in a better experience."
msgstr ""
-#: ../../templates/show_test_table.inc.php:126
+#: ../../templates/show_test_table.inc.php:135
msgid "Configuration file readability"
msgstr ""
-#: ../../templates/show_test_table.inc.php:131
+#: ../../templates/show_test_table.inc.php:140
#, fuzzy
msgid ""
"This test attempts to read config/ampache.cfg.php. If this fails the file "
@@ -4836,12 +5504,12 @@ msgstr ""
"antingen ampache.cfg.php inte på rätt\n"
"\tplats eller är för närvarande inte läsbar av din webbserver."
-#: ../../templates/show_test_table.inc.php:136
+#: ../../templates/show_test_table.inc.php:145
#, fuzzy
msgid "Configuration file validity"
msgstr "Konfigurera demokratisk spellista"
-#: ../../templates/show_test_table.inc.php:146
+#: ../../templates/show_test_table.inc.php:155
#, fuzzy
msgid ""
"This test makes sure that you have set all of the required configuration "
@@ -4851,12 +5519,12 @@ msgstr ""
"konfigurationsvariabler och att vi kan fullständigt tolka din "
"konfigurationsfil"
-#: ../../templates/show_test_table.inc.php:150
+#: ../../templates/show_test_table.inc.php:159
#, fuzzy
msgid "Database connection"
msgstr "Databasens teckenuppsättning uppdaterad"
-#: ../../templates/show_test_table.inc.php:155
+#: ../../templates/show_test_table.inc.php:164
#, fuzzy
msgid ""
"This attempts to connect to your database using the values read from your "
@@ -4865,12 +5533,12 @@ msgstr ""
"Detta försöker att ansluta till din databas med värden från din ampache.cfg."
"php"
-#: ../../templates/show_test_table.inc.php:159
+#: ../../templates/show_test_table.inc.php:168
#, fuzzy
msgid "Database tables"
msgstr "Önskat databasnamn"
-#: ../../templates/show_test_table.inc.php:164
+#: ../../templates/show_test_table.inc.php:173
#, fuzzy
msgid ""
"This checks a few key tables to make sure that you have successfully "
@@ -4880,12 +5548,12 @@ msgstr ""
"har infogat ampache-databasen korrekt och att användaren har åtkomst till "
"databasen"
-#: ../../templates/show_test_table.inc.php:169
+#: ../../templates/show_test_table.inc.php:178
#, fuzzy
msgid "Web path"
msgstr "Webbsökväg"
-#: ../../templates/show_test_table.inc.php:186
+#: ../../templates/show_test_table.inc.php:190
msgid ""
"This test makes sure that your web_path variable is set correctly and that "
"we are able to get to the index page. If you do not see a check mark here "
@@ -4923,100 +5591,76 @@ msgstr "Valideringsnyckeln som användes är inte korrekt"
#: ../../templates/show_userflag.inc.php:23
#, fuzzy
-msgid "User Flags"
-msgstr "Användarverktyg"
+msgid "User Favorites"
+msgstr "Användaregenskaper"
-#: ../../templates/show_user.inc.php:33
+#: ../../templates/show_user.inc.php:38
msgid "Create Date"
msgstr "Skapad"
-#: ../../templates/show_user.inc.php:36 ../../templates/show_users.inc.php:41
-#: ../../templates/show_users.inc.php:63
+#: ../../templates/show_user.inc.php:41 ../../templates/show_users.inc.php:42
+#: ../../templates/show_users.inc.php:68
msgid "Last Seen"
msgstr "Sågs senast"
-#: ../../templates/show_user.inc.php:39 ../../templates/show_users.inc.php:43
-#: ../../templates/show_users.inc.php:65
+#: ../../templates/show_user.inc.php:44 ../../templates/show_users.inc.php:44
+#: ../../templates/show_users.inc.php:70
msgid "Activity"
msgstr "Aktivitet"
-#: ../../templates/show_user.inc.php:42
+#: ../../templates/show_user.inc.php:47
msgid "Status"
msgstr "Status"
-#: ../../templates/show_user.inc.php:45
+#: ../../templates/show_user.inc.php:50
msgid "User is Online Now"
msgstr "Användaren än nu ansluten"
-#: ../../templates/show_user.inc.php:47
+#: ../../templates/show_user.inc.php:52
msgid "User is Offline Now"
msgstr "Användaren är nu frånkopplad"
-#: ../../templates/show_user.inc.php:52
+#: ../../templates/show_user.inc.php:57
msgid "Active Playlist"
msgstr "Aktiv spellista"
-#: ../../templates/show_user_recommendations.inc.php:30
-msgid "Recommended Artists"
-msgstr "Rekommenderade artister"
-
-#: ../../templates/show_user_recommendations.inc.php:40
-msgid "Recommended Albums"
-msgstr "Rekommenderade album"
-
-#: ../../templates/show_user_recommendations.inc.php:50
-msgid "Recommended Songs"
-msgstr "Rekommenderade låtar"
-
-#: ../../templates/show_user_registration.inc.php:56
+#: ../../templates/show_user_registration.inc.php:57
msgid "User Agreement"
msgstr "Användarvillkor"
-#: ../../templates/show_user_registration.inc.php:63
+#: ../../templates/show_user_registration.inc.php:64
msgid "I Accept"
msgstr "Jag godkänner"
-#: ../../templates/show_user_registration.inc.php:68
+#: ../../templates/show_user_registration.inc.php:69
msgid "User Information"
msgstr "Användarinformation"
-#: ../../templates/show_user_registration.inc.php:99
+#: ../../templates/show_user_registration.inc.php:105
#, fuzzy
msgid "* Required fields"
msgstr "Krav"
-#: ../../templates/show_user_registration.inc.php:109
+#: ../../templates/show_user_registration.inc.php:115
msgid "Register User"
msgstr "Registrera användare"
-#: ../../templates/show_users.inc.php:40 ../../templates/show_users.inc.php:62
+#: ../../templates/show_users.inc.php:41 ../../templates/show_users.inc.php:67
msgid "Fullname"
msgstr "Fullständigt namn"
-#: ../../templates/show_users.inc.php:42 ../../templates/show_users.inc.php:64
+#: ../../templates/show_users.inc.php:43 ../../templates/show_users.inc.php:69
msgid "Registration Date"
msgstr "Registreringsdatum"
-#: ../../templates/show_users.inc.php:45 ../../templates/show_users.inc.php:67
+#: ../../templates/show_users.inc.php:46 ../../templates/show_users.inc.php:72
msgid "Last Ip"
msgstr "Senaste Ip"
-#: ../../templates/show_users.inc.php:48 ../../templates/show_users.inc.php:70
+#: ../../templates/show_users.inc.php:49 ../../templates/show_users.inc.php:75
msgid "On-line"
msgstr "Ansluten"
-#: ../../templates/show_user_stats.inc.php:31
-msgid "Favorite Artists"
-msgstr "Favoritartister"
-
-#: ../../templates/show_user_stats.inc.php:43
-msgid "Favorite Albums"
-msgstr "Favoritalbum"
-
-#: ../../templates/show_user_stats.inc.php:55
-msgid "Favorite Songs"
-msgstr "Favoritlåtar"
-
#: ../../templates/show_verify_catalog.inc.php:23
#, fuzzy
msgid "Verify Catalog"
@@ -5028,21 +5672,19 @@ msgstr "Kataloger"
msgid "Updating the %s catalog"
msgstr "Uppdaterar %s-katalogen"
+#: ../../templates/show_verify_catalog.inc.php:27
+#, php-format
+msgid "%d item found checking tag information"
+msgid_plural "%d items found checking tag information"
+msgstr[0] "%d objekt hittades, kontrollerar tagginformation"
+msgstr[1] "%d objekt hittades, kontrollerar tagginformation"
+
#: ../../templates/show_verify_catalog.inc.php:29
#, fuzzy
msgid "Verified"
msgstr "Verifierade"
-#: ../../templates/show_video_row.inc.php:25
-#, fuzzy
-msgid "Play video"
-msgstr "Låtar i spellista"
-
-#: ../../templates/show_video_row.inc.php:27
-msgid "Play add video"
-msgstr ""
-
-#: ../../templates/show_videos.inc.php:35
+#: ../../templates/show_videos.inc.php:33
#: ../../templates/show_videos.inc.php:62
msgid "Resolution"
msgstr "Upplösning"
@@ -5053,7 +5695,7 @@ msgid "No video found"
msgstr "Inga poster hittades"
#: ../../templates/show_wanted.inc.php:23
-#: ../../templates/sidebar_home.inc.php:83
+#: ../../templates/sidebar_home.inc.php:90
#, fuzzy
msgid "Wanted List"
msgstr "Relaterad artist"
@@ -5095,51 +5737,46 @@ msgstr "Serverkonfiguration"
msgid "Browse"
msgstr "Bläddra"
-#: ../../templates/sidebar_home.inc.php:33
+#: ../../templates/sidebar_home.inc.php:32
#, fuzzy
msgid "Song Titles"
msgstr "Låttitel"
-#: ../../templates/sidebar_home.inc.php:47
+#: ../../templates/sidebar_home.inc.php:51
msgid "Currently Playing"
msgstr "Spelar just nu"
-#: ../../templates/sidebar_home.inc.php:60
+#: ../../templates/sidebar_home.inc.php:64
msgid "Import"
msgstr "Importera"
-#: ../../templates/sidebar_home.inc.php:68
+#: ../../templates/sidebar_home.inc.php:74
msgid "Advanced"
msgstr "Avancerat"
-#: ../../templates/sidebar_home.inc.php:73
+#: ../../templates/sidebar_home.inc.php:80
msgid "Recent"
msgstr ""
-#: ../../templates/sidebar_home.inc.php:74
+#: ../../templates/sidebar_home.inc.php:81
msgid "Newest"
msgstr "Senaste"
-#: ../../templates/sidebar_home.inc.php:75
+#: ../../templates/sidebar_home.inc.php:82
msgid "Popular"
msgstr "Populära"
-#: ../../templates/sidebar_home.inc.php:77
+#: ../../templates/sidebar_home.inc.php:84
#, fuzzy
msgid "Top Rated"
msgstr "Betygsatt"
-#: ../../templates/sidebar_home.inc.php:80
-#, fuzzy
-msgid "My Flags"
-msgstr "Flagga"
-
-#: ../../templates/sidebar.inc.php:31
+#: ../../templates/sidebar.inc.php:32
#: ../../templates/sidebar_modules.inc.php:24
msgid "Modules"
msgstr "Moduler"
-#: ../../templates/sidebar.inc.php:61
+#: ../../templates/sidebar.inc.php:64
msgid "Logout"
msgstr "Logga ut"
@@ -5192,7 +5829,7 @@ msgstr "Hantera spellista"
msgid "Account"
msgstr "Konto"
-#: ../../update.php:59
+#: ../../update.php:67
#, php-format
msgid ""
"This page handles all database updates to Ampache starting with "
@@ -5203,18 +5840,15 @@ msgstr ""
"3.3.3.5. Enligt din databas så är din aktuella version: "
"%s."
-#: ../../update.php:60
-msgid "the following updates need to be performed"
+#: ../../update.php:68
+#, fuzzy
+msgid "The following updates need to be performed"
msgstr "följande uppdateringar behöver genomföras"
-#: ../../update.php:67
+#: ../../update.php:76
msgid "Update Now!"
msgstr "Uppdatera nu!"
-#: ../../update.php:71
-msgid "Ampache Installation."
-msgstr "Installation av Ampache."
-
#: Database words
msgid "Allow Downloads"
msgstr "Tillåt hämtningar"
@@ -5315,14 +5949,154 @@ msgstr "Användare att spåra"
msgid "Streaming"
msgstr "Strömmande"
-#: Database words
-msgid "Interface"
-msgstr "Gränssnitt"
-
#: Database words
msgid "System"
msgstr "System"
+#~ msgid "Related Album"
+#~ msgstr "Relaterat album"
+
+#~ msgid "Related Genre"
+#~ msgstr "Relaterad genre"
+
+#~ msgid "Pure Random"
+#~ msgstr "Helt slumpmässigt"
+
+#~ msgid "Related Tag"
+#~ msgstr "Relaterad tagg"
+
+#, fuzzy
+#~ msgid "Play album"
+#~ msgstr "Spela upp album"
+
+#~ msgid "Play Album"
+#~ msgstr "Spela upp album"
+
+#, fuzzy
+#~ msgid "Play Add Album"
+#~ msgstr "Spela upp album"
+
+#~ msgid "Add Album"
+#~ msgstr "Lägg till album"
+
+#, fuzzy
+#~ msgid "Play add album"
+#~ msgstr "Spela upp album"
+
+#~ msgid "Flag"
+#~ msgstr "Flagga"
+
+#~ msgid "Most Popular Genres"
+#~ msgstr "Mest populära genre"
+
+#~ msgid "Most Popular Songs"
+#~ msgstr "Mest populära låtar"
+
+#~ msgid "Most Popular Live Streams"
+#~ msgstr "Mest populära live-strömmar"
+
+#~ msgid "Most Popular Tags"
+#~ msgstr "Mest populära taggar"
+
+#~ msgid "Show All Songs By %s"
+#~ msgstr "Visa alla låtar av %s"
+
+#, fuzzy
+#~ msgid "Play artist"
+#~ msgstr "Spellista"
+
+#, fuzzy
+#~ msgid "Play All Songs By %s"
+#~ msgstr "Lägg till alla låtar av %s"
+
+#, fuzzy
+#~ msgid "Play add artist"
+#~ msgstr "Spellista"
+
+#, fuzzy
+#~ msgid "Play Add All Songs By %s"
+#~ msgstr "Lägg till alla låtar av %s"
+
+#~ msgid "Add All Songs By %s"
+#~ msgstr "Lägg till alla låtar av %s"
+
+#~ msgid "Add Random Songs By %s"
+#~ msgstr "Lägg till slumpmässiga låtar av %s"
+
+#~ msgid "Playlist Type"
+#~ msgstr "Typ av spellista"
+
+#, fuzzy
+#~ msgid "Play Album Preview"
+#~ msgstr "Spela upp album"
+
+#, fuzzy
+#~ msgid "Play Add Album Preview"
+#~ msgstr "Spela upp album"
+
+#, fuzzy
+#~ msgid "Add Album Preview"
+#~ msgstr "Lägg till album"
+
+#~ msgid "Normalize Tracks"
+#~ msgstr "Normalisera spår"
+
+#, fuzzy
+#~ msgid "Play Add Playlist"
+#~ msgstr "Spellista"
+
+#~ msgid "Add Random"
+#~ msgstr "Lägg till slumpmässigt"
+
+#, fuzzy
+#~ msgid "Play playlist"
+#~ msgstr "Spellista"
+
+#, fuzzy
+#~ msgid "Play song"
+#~ msgstr "Låtar i spellista"
+
+#, fuzzy
+#~ msgid "Play add song"
+#~ msgstr "Låtar i spellista"
+
+#, fuzzy
+#~ msgid "Play song Preview"
+#~ msgstr "Låtar i spellista"
+
+#, fuzzy
+#~ msgid "User Flags"
+#~ msgstr "Användarverktyg"
+
+#~ msgid "Recommended Artists"
+#~ msgstr "Rekommenderade artister"
+
+#~ msgid "Recommended Albums"
+#~ msgstr "Rekommenderade album"
+
+#~ msgid "Recommended Songs"
+#~ msgstr "Rekommenderade låtar"
+
+#~ msgid "Favorite Artists"
+#~ msgstr "Favoritartister"
+
+#~ msgid "Favorite Albums"
+#~ msgstr "Favoritalbum"
+
+#, fuzzy
+#~ msgid "Play video"
+#~ msgstr "Låtar i spellista"
+
+#, fuzzy
+#~ msgid "My Flags"
+#~ msgstr "Flagga"
+
+#~ msgid "the following updates need to be performed"
+#~ msgstr "följande uppdateringar behöver genomföras"
+
+#~ msgid "Ampache Installation."
+#~ msgstr "Installation av Ampache."
+
#~ msgid "Make Sticky"
#~ msgstr "Gör klistrig"
@@ -5493,18 +6267,12 @@ msgstr "System"
#~ msgid "Search Disabled Songs"
#~ msgstr "Sök efter inaktiverade låtar"
-#~ msgid "Edit Album"
-#~ msgstr "Redigera album"
-
#~ msgid "Flag for Retagging"
#~ msgstr "Flagga för omtaggning"
#~ msgid "Update Album"
#~ msgstr "Uppdatera album"
-#~ msgid "Edit Artist"
-#~ msgstr "Redigera artist"
-
#~ msgid "Update Artist"
#~ msgstr "Uppdatera artist"
@@ -5647,16 +6415,6 @@ msgstr "System"
#~ msgid "DB Inserted"
#~ msgstr "Databas infogad"
-#~ msgid "day"
-#~ msgid_plural "days"
-#~ msgstr[0] "dygn"
-#~ msgstr[1] "dygn"
-
-#~ msgid "hour"
-#~ msgid_plural "hours"
-#~ msgstr[0] "timme"
-#~ msgstr[1] "timmar"
-
#~ msgid "Unable to load pear XMLRPC library, make sure XML-RPC is enabled"
#~ msgstr ""
#~ "Kunde inte läsa in pear XMLRPC-biblioteket. Försäkra dig om att XML-RPC "
@@ -5677,12 +6435,6 @@ msgstr "System"
#~ msgid "images synchronized: "
#~ msgstr "bilder synkroniserade: "
-#, fuzzy
-#~ msgid "Catalog Clean Done. %d file removed."
-#~ msgid_plural "Catalog Clean Done. %d files removed."
-#~ msgstr[0] "Tömning av katalog färdig"
-#~ msgstr[1] "Tömning av katalog färdig"
-
#, fuzzy
#~ msgid "Playlist Import and Recreate Successful. Total: %d Song"
#~ msgid_plural "Playlist Import and Recreate Successful. Total: %d Songs"
@@ -5730,21 +6482,6 @@ msgstr "System"
#~ "Funktioner är inaktiverade i demonstrationen därför att tidigare "
#~ "användare har använt funktionen för att posta olämpligt material"
-#~ msgid "%d item found checking tag information"
-#~ msgid_plural "%d items found checking tag information"
-#~ msgstr[0] "%d objekt hittades, kontrollerar tagginformation"
-#~ msgstr[1] "%d objekt hittades, kontrollerar tagginformation"
-
-#~ msgid "%d minute"
-#~ msgid_plural "%d minutes"
-#~ msgstr[0] "%d minut"
-#~ msgstr[1] "%d minuter"
-
-#~ msgid "%d hour"
-#~ msgid_plural "%d hours"
-#~ msgstr[0] "%d timme"
-#~ msgstr[1] "%d timmar"
-
#~ msgid "file"
#~ msgstr "fil"
@@ -5770,18 +6507,6 @@ msgstr "System"
#~ msgstr ""
#~ "Det inträffade ett problem med filsändningen: %s blev endast delvis sänd."
-#, fuzzy
-#~ msgid "Song Removed"
-#~ msgid_plural "Songs Removed"
-#~ msgstr[0] "Låtar borttagna"
-#~ msgstr[1] "Låtar borttagna"
-
-#, fuzzy
-#~ msgid "Disabled Song Processed"
-#~ msgid_plural "Disabled Songs Processed"
-#~ msgstr[0] "Inaktiverade låtar behandlade"
-#~ msgstr[1] "Inaktiverade låtar behandlade"
-
#, fuzzy
#~ msgid "No probrem found."
#~ msgstr "Inga poster hittades"
@@ -5812,12 +6537,6 @@ msgstr "System"
#~ msgid "Keywords"
#~ msgstr "Nyckelord"
-#~ msgid "Yes"
-#~ msgstr "Ja"
-
-#~ msgid "No"
-#~ msgstr "Nej"
-
#~ msgid "Min Bitrate"
#~ msgstr "Min bitfrekvens"
diff --git a/playlist.php b/playlist.php
index 41a1714f..0b75326e 100644
--- a/playlist.php
+++ b/playlist.php
@@ -98,12 +98,7 @@ switch ($_REQUEST['action']) {
$title = T_('Playlist Imported');
$body = basename($_FILES['filename']['name']);
$body .= '
' .
- sprintf(
- T_ngettext(
- 'Successfully imported playlist with %d song.',
- 'Successfully imported playlist with %d songs.',
- $result['count']),
- $result['count']);
+ sprintf(ngettext('Successfully imported playlist with %d song.', 'Successfully imported playlist with %d songs.', $result['count']), $result['count']);
} else {
$url = 'show_import_playlist';
$title = T_('Playlist Not Imported');
diff --git a/templates/show_random.inc.php b/templates/show_random.inc.php
index e3eb2dbc..d783c7e3 100644
--- a/templates/show_random.inc.php
+++ b/templates/show_random.inc.php
@@ -65,9 +65,9 @@
($_POST['length'] == $i
? 'selected="selected"' : '') . '>';
if ($i < 60) {
- printf(T_ngettext('%d minute', '%d minutes', $i), $i);
+ printf(ngettext('%d minute', '%d minutes', $i), $i);
} else {
- printf(T_ngettext('%d hour', '%d hours', $i / 60), $i / 60);
+ printf(ngettext('%d hour', '%d hours', $i / 60), $i / 60);
}
echo "\n";
}
diff --git a/templates/show_recently_played.inc.php b/templates/show_recently_played.inc.php
index f55ef386..d614d439 100644
--- a/templates/show_recently_played.inc.php
+++ b/templates/show_recently_played.inc.php
@@ -58,34 +58,34 @@ foreach ($data as $row) {
if ($is_allowed || $has_allowed_time) {
$interval = intval(time() - $row['date']);
-
+
if ($interval < 60) {
- $unit = 'seconds';
+ $unit = ngettext('second ago', 'seconds ago', $interval);
} else if ($interval < 3600) {
$interval = floor($interval / 60);
- $unit = 'minutes';
+ $unit = ngettext('minute ago', 'minutes ago', $interval);
} else if ($interval < 86400) {
$interval = floor($interval / 3600);
- $unit = 'hours';
+ $unit = ngettext('hour ago', 'hours ago', $interval);
} else if ($interval < 604800) {
$interval = floor($interval / 86400);
- $unit = 'days';
+ $unit = ngettext('day ago', 'days ago', $interval);
} else if ($interval < 2592000) {
$interval = floor($interval / 604800);
- $unit = 'weeks';
+ $unit = ngettext('week ago', 'weeks ago', $interval);
} else if ($interval < 31556926) {
$interval = floor($interval / 2592000);
- $unit = 'months';
+ $unit = ngettext('month ago', 'months ago', $interval);
} else if ($interval < 631138519) {
$interval = floor($interval / 31556926);
- $unit = 'years';
+ $unit = ngettext('year ago', 'years ago', $interval);
} else {
$interval = floor($interval / 315569260);
- $unit = 'decades';
+ $unit = ngettext('decade ago', 'decades ago', $interval);
}
// I wonder how smart gettext is?
- $time_string = sprintf(T_ngettext('%d ' . rtrim($unit, 's') . ' ago', '%d ' . $unit . ' ago', $interval), $interval);
+ $time_string = sprintf('%d ' . (T_ngettext($unit, $unit, $interval)), $interval);
}
$song->format();
?>
diff --git a/templates/show_verify_catalog.inc.php b/templates/show_verify_catalog.inc.php
index 169da5d3..a86cdfd4 100644
--- a/templates/show_verify_catalog.inc.php
+++ b/templates/show_verify_catalog.inc.php
@@ -24,7 +24,7 @@ UI::show_box_top(T_('Verify Catalog'), 'box box_verify_catalog');
/* HINT: Catalog Name */
printf(T_('Updating the %s catalog'), "[ $this->name ]");
echo "
\n";
-printf(T_ngettext('%d item found checking tag information', '%d items found checking tag information', $number), $number);
+printf(ngettext('%d item found checking tag information', '%d items found checking tag information', $number), $number);
echo "
\n\n";
echo T_('Verified') . ': ' . $catalog_verify_found . '
';
echo T_('Reading') . ': ' . $catalog_verify_directory . '
';