diff options
-rwxr-xr-x | docs/CHANGELOG | 3 | ||||
-rw-r--r-- | lib/class/vauth.class.php | 41 | ||||
-rw-r--r-- | lib/init.php | 2 | ||||
-rw-r--r-- | lib/install.php | 2 | ||||
-rw-r--r-- | locale/base/messages.po | 3823 | ||||
-rw-r--r-- | locale/de_DE/LC_MESSAGES/messages.po | 4740 | ||||
-rw-r--r-- | locale/en_GB/LC_MESSAGES/messages.po | 4696 | ||||
-rw-r--r-- | locale/es_ES/LC_MESSAGES/messages.po | 4496 | ||||
-rw-r--r-- | locale/fr_FR/LC_MESSAGES/messages.po | 4740 | ||||
-rw-r--r-- | locale/is_IS/LC_MESSAGES/messages.po | 3823 | ||||
-rw-r--r-- | locale/it_IT/LC_MESSAGES/messages.po | 4738 | ||||
-rw-r--r-- | locale/nl_NL/LC_MESSAGES/messages.po | 4792 | ||||
-rw-r--r-- | locale/ru_RU/LC_MESSAGES/messages.po | 4700 | ||||
-rw-r--r-- | locale/tr_TR/LC_MESSAGES/messages.po | 3996 | ||||
-rw-r--r-- | locale/zh_CN/LC_MESSAGES/messages.po | 3843 | ||||
-rw-r--r-- | login.php | 6 |
16 files changed, 24827 insertions, 23614 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 9eadb2a5..c2304789 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -3,7 +3,8 @@ -------------------------------------------------------------------------- -------------------------------------------------------------------------- - v.3.4-Alpha4 + v.3.4-Beta1 + - Fixed multiple login check - Fixed filters applying incorrectly to non-browse displays - Fixed Flash Player issue when Playlist Method wasn't default - Fixed XML-RPC, now uses handshake method properly diff --git a/lib/class/vauth.class.php b/lib/class/vauth.class.php index 94210381..cc9b23e2 100644 --- a/lib/class/vauth.class.php +++ b/lib/class/vauth.class.php @@ -98,7 +98,7 @@ class vauth { $sql = "UPDATE `session` SET `value`='$value', `expire`='$expire' WHERE `id`='$key'"; $db_results = Dba::query($sql); - debug_event('SESSION','Writing to ' . $key . ' with expire ' . $expire,'1'); + debug_event('SESSION','Writing to ' . $key . ' with expire ' . $expire . ' DBError:' . Dba::error(),'5'); return $db_results; @@ -116,6 +116,8 @@ class vauth { $sql = "DELETE FROM `session` WHERE `id`='$key'"; $db_results = Dba::query($sql); + debug_event('SESSION','Deleting Session with key:' . $key,'5'); + // Destory our cookie! setcookie(Config::get('session_name'),'',time() - 86400); @@ -141,7 +143,10 @@ class vauth { * This is called when you want to log out and nuke your session * //FIXME: move all logout logic here */ - public static function logout($key) { + public static function logout($key='') { + + // If no key is passed try to find the session id + $key = $key ? $key : session_id(); // Do a quick check to see if this is an AJAX'd logout request // if so use the iframe to redirect @@ -251,12 +256,12 @@ class vauth { case 'mysql': default: // Create our cookie! - self::create_cookie(); session_regenerate_id(); // Before refresh we don't have the cookie so we have to use session ID $key = session_id(); + self::create_cookie(); break; } // end switch on data type @@ -280,7 +285,7 @@ class vauth { return false; } - debug_event('SESSION','Session Created:' . $key,'1'); + debug_event('SESSION','Session Created:' . $key,'5'); return $key; @@ -470,26 +475,12 @@ class vauth { $password_check_sql = "PASSWORD('$password')"; - $sql = "SELECT `user`.`password`,`session`.`ip`,`user`.`id` FROM `user` " . - "LEFT JOIN `session` ON `session`.`username`=`user`.`username` " . - "WHERE `user`.`username`='$username'"; - $db_results = Dba::query($sql); - $row = Dba::fetch_assoc($db_results); - // If they don't have a password kick em ou - if (!$row['password']) { + if (!strlen($password)) { Error::add('general','Error Username or Password incorrect, please try again'); return false; } - if (Config::get('prevent_multiple_logins')) { - $client = new User($row['id']); - $ip = $client->is_logged_in(); - if ($current_ip != ip2int($_SERVER['REMOTE_ADDR'])) { - Error::add('general','User Already Logged in'); - return false; - } - } // if prevent_multiple_logins $sql = "SELECT version()"; $db_results = Dba::query($sql); @@ -500,7 +491,7 @@ class vauth { $password_check_sql = "OLD_PASSWORD('$password')"; } - $sql = "SELECT username FROM user WHERE username='$username' AND password=$password_check_sql"; + $sql = "SELECT `username`,`id` FROM `user` WHERE `username`='$username' AND `password`=$password_check_sql"; $db_results = Dba::query($sql); $results = Dba::fetch_assoc($db_results); @@ -510,6 +501,16 @@ class vauth { return false; } + if (Config::get('prevent_multiple_logins')) { + $client = new User($results['id']); + $current_ip = $client->is_logged_in(); + if ($current_ip != ip2int($_SERVER['REMOTE_ADDR'])) { + Error::add('general','User Already Logged in'); + return false; + } + } // if prevent_multiple_logins + + $results['type'] = 'mysql'; $results['success'] = true; diff --git a/lib/init.php b/lib/init.php index 669be5f4..c4ca7a6f 100644 --- a/lib/init.php +++ b/lib/init.php @@ -81,7 +81,7 @@ if (!count($results)) { } /** This is the version.... fluf nothing more... **/ -$results['version'] = '3.4-Alpha4 Build (005)'; +$results['version'] = '3.4-Beta1 Build (001)'; $results['int_config_version'] = '6'; $results['raw_web_path'] = $results['web_path']; diff --git a/lib/install.php b/lib/install.php index 3afd8aee..1c5a7317 100644 --- a/lib/install.php +++ b/lib/install.php @@ -157,7 +157,7 @@ function install_insert_db($username,$password,$hostname,$database) { $db_results = @mysql_query($sql,$dbh); $data = mysql_fetch_assoc($db_results,$dbh); - $mysql_version = substr(preg_replace("/(\d+)\.(\d+)\.(\d+).*/","$1$2$3",$version[0]),0,3); + $mysql_version = substr(preg_replace("/(\d+)\.(\d+)\.(\d+).*/","$1$2$3",$data[0]),0,3); $sql_file = ($mysql_version < '500') ? 'sql/ampache40.sql' : 'sql/ampache.sql'; diff --git a/locale/base/messages.po b/locale/base/messages.po index 722d1250..34f9ecf2 100644 --- a/locale/base/messages.po +++ b/locale/base/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,694 +16,1167 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" msgstr "" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/album.class.php:217 +msgid "Disk" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" msgstr "" -#: ../../register.php:131 -msgid "You must enter a password" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" msgstr "" -#: ../../register.php:135 -msgid "Your passwords do not match" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" msgstr "" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" msgstr "" -#: ../../register.php:157 -msgid "Error: Insert Failed" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:174 -msgid "Registration Complete" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../update.php:51 -msgid "Ampache Update" +#: ../../lib/class/catalog.class.php:176 +msgid "day" msgstr "" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" +#: ../../lib/class/catalog.class.php:176 +msgid "days" msgstr "" -#: ../../ratings.php:32 -msgid "Rating Updated" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" msgstr "" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" msgstr "" -#: ../../admin/flag.php:97 -msgid "Song Updated" +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" msgstr "" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" msgstr "" -#: ../../admin/flag.php:139 -msgid "Album Updated" +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" msgstr "" -#: ../../admin/flag.php:181 -msgid "Artist Updated" +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" msgstr "" -#: ../../admin/flag.php:246 -msgid "Songs Updated" +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" msgstr "" -#: ../../admin/flag.php:254 -msgid "Flag Removed" +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" msgstr "" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" msgstr "" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" msgstr "" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" msgstr "" -#: ../../admin/flag.php:305 -msgid "Flagged Records" +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" msgstr "" -#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 -msgid "Catalog Updated" +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" msgstr "" -#: ../../admin/catalog.php:106 -msgid "Catalog Deleted" +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" msgstr "" -#: ../../admin/catalog.php:106 -msgid "The Catalog and all associated records have been deleted" +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" msgstr "" -#: ../../admin/catalog.php:115 -msgid "Songs Removed" +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" msgstr "" -#: ../../admin/catalog.php:118 -msgid "No Songs Removed" +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" msgstr "" -#: ../../admin/catalog.php:121 -msgid "Disabled Songs Processed" +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" -#: ../../admin/catalog.php:141 -msgid "Catalog Cleaned" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" msgstr "" -#: ../../admin/catalog.php:191 -msgid "Catalog Created" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" msgstr "" -#: ../../admin/catalog.php:208 -msgid "Catalog statistics cleared" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" msgstr "" -#: ../../admin/catalog.php:223 -msgid "Now Playing Cleared" +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" msgstr "" -#: ../../admin/catalog.php:223 -msgid "All now playing data has been cleared" +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" msgstr "" -#: ../../admin/catalog.php:233 -msgid "No Disabled songs found" +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Delete Catalog" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Do you really want to delete this catalog?" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" msgstr "" -#: ../../admin/catalog.php:261 -msgid "Album Art Search Finished" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" + +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Update Finished." +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "" + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" msgstr "" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" +msgstr "" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" +msgstr "" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 msgid "Error Username Required" msgstr "" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 msgid "Error Passwords don't match" msgstr "" -#: ../../admin/users.php:79 -msgid "User Updated" +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" msgstr "" -#: ../../admin/users.php:79 -msgid "updated" +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 -#: ../../templates/show_preference_admin.inc.php:41 -#: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 -msgid "Guest" +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" msgstr "" -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" msgstr "" -#: ../../admin/users.php:119 -msgid "New User Added" +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" msgstr "" -#: ../../admin/users.php:124 -msgid "User Enabled" +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" msgstr "" -#: ../../admin/users.php:129 -msgid "User Disabled" +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +msgid "Catalogs" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" msgstr "" -#: ../../admin/users.php:132 -msgid "Unable to Disabled last Administrator" +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" msgstr "" -#: ../../admin/users.php:154 -msgid "User Deleted" +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" msgstr "" -#: ../../admin/users.php:157 -msgid "Delete Error" +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" msgstr "" -#: ../../admin/users.php:157 -msgid "Unable to delete last Admin User" +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" msgstr "" -#: ../../admin/users.php:163 -msgid "Deletion Request" +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" msgstr "" -#: ../../admin/users.php:164 -msgid "Are you sure you want to permanently delete" +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" msgstr "" -#: ../../admin/modules.php:38 -msgid "Install Failed, Controller Error" +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" msgstr "" -#: ../../admin/modules.php:54 ../../admin/modules.php:92 -msgid "Are you sure you want to remove this plugin?" +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" msgstr "" -#: ../../admin/modules.php:66 ../../admin/modules.php:111 -msgid "Plugin Deactivated" +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" msgstr "" -#: ../../admin/modules.php:85 -msgid "Plugin Activated" +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" msgstr "" -#: ../../admin/modules.php:120 -msgid "Plugins" +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" msgstr "" -#: ../../admin/modules.php:126 -msgid "Localplay Controllers" +#: ../../lib/preferences.php:160 +msgid "Enable" msgstr "" -#: ../../admin/access.php:35 -msgid "Deleted" +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" msgstr "" -#: ../../admin/access.php:35 -msgid "Your Access List Entry has been removed" +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" msgstr "" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" msgstr "" -#: ../../admin/access.php:40 -msgid "Your new Access List Entry has been created" +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" msgstr "" -#: ../../admin/access.php:45 -msgid "Access List Entry updated" +#: ../../lib/preferences.php:187 +msgid "M3U" msgstr "" -#: ../../admin/system.php:64 -msgid "Export Failed" +#: ../../lib/preferences.php:188 +msgid "Simple M3U" msgstr "" -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" +#: ../../lib/preferences.php:189 +msgid "PLS" msgstr "" -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" +#: ../../lib/preferences.php:190 +msgid "Asx" msgstr "" -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" +#: ../../lib/preferences.php:191 +msgid "RAM" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" +#: ../../lib/preferences.php:192 +msgid "XSPF" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" +#: ../../lib/preferences.php:226 +msgid "Disabled" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" +#: ../../lib/preferences.php:228 +msgid "Manager" msgstr "" -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" msgstr "" -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" +#: ../../lib/preferences.php:249 +msgid "Send on Add" msgstr "" -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" msgstr "" -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" +#: ../../lib/preferences.php:251 +msgid "Clear on Send" msgstr "" -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" msgstr "" -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" +#: ../../lib/preferences.php:260 +msgid "Always" msgstr "" -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" msgstr "" -#: ../../admin/mail.php:260 -msgid "E-mail Sent" +#: ../../lib/general.lib.php:436 +msgid "British English" msgstr "" -#: ../../admin/mail.php:261 -msgid "Your E-mail was successfully sent." +#: ../../lib/general.lib.php:442 +msgid "Turkish" msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" msgstr "" -#: ../../preferences.php:86 -msgid "Error Update Failed" +#: ../../lib/general.lib.php:504 +msgid "On" msgstr "" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../lib/general.lib.php:507 +msgid "Off" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" msgstr "" -#: ../../flag.php:45 -msgid "The specified item has been flagged" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" msgstr "" -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -msgid "Catalogs" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" msgstr "" +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" +msgstr "" + +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" +msgstr "" + +#: ../../lib/ui.lib.php:515 +msgid "Admin-Manage Access Lists" +msgstr "" + +#: ../../lib/ui.lib.php:519 +msgid "Admin-Site Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" + +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_admin_tools.inc.php:33 #: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 #: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_edit_access.inc.php:26 #: ../../templates/show_plugins.inc.php:32 #: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 #: ../../templates/show_live_streams.inc.php:36 #: ../../templates/show_live_streams.inc.php:53 #: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 msgid "Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" msgstr "" -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" msgstr "" -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" msgstr "" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" msgstr "" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../modules/horde/Browser.php:867 +msgid "file" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." msgstr "" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" msgstr "" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." msgstr "" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." msgstr "" -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -msgid "Update All" +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." msgstr "" -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" +#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 +msgid "Catalog Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" +#: ../../admin/catalog.php:103 +msgid "Catalog Deleted" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../admin/catalog.php:103 +msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" +#: ../../admin/catalog.php:112 +msgid "Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" +#: ../../admin/catalog.php:115 +msgid "No Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" +#: ../../admin/catalog.php:118 +msgid "Disabled Songs Processed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" +#: ../../admin/catalog.php:138 +msgid "Catalog Cleaned" msgstr "" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../admin/catalog.php:188 +msgid "Catalog Created" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../admin/catalog.php:205 +msgid "Catalog statistics cleared" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" +#: ../../admin/catalog.php:220 +msgid "Now Playing Cleared" msgstr "" -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" +#: ../../admin/catalog.php:220 +msgid "All now playing data has been cleared" msgstr "" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" +#: ../../admin/catalog.php:230 +msgid "No Disabled songs found" msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" +#: ../../admin/catalog.php:239 +msgid "Delete Catalog" msgstr "" -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" +#: ../../admin/catalog.php:239 +msgid "Do you really want to delete this catalog?" msgstr "" -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" +#: ../../admin/catalog.php:258 +msgid "Album Art Search Finished" msgstr "" -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -msgid "No Records Found" +#: ../../admin/flag.php:97 +msgid "Song Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" msgstr "" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../admin/flag.php:139 +msgid "Album Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -msgid "Update" +#: ../../admin/flag.php:181 +msgid "Artist Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -msgid "Show All" +#: ../../admin/flag.php:246 +msgid "Songs Updated" +msgstr "" + +#: ../../admin/flag.php:254 +msgid "Flag Removed" +msgstr "" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "" + +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "" + +#: ../../admin/flag.php:305 +msgid "Flagged Records" +msgstr "" + +#: ../../admin/users.php:78 +msgid "User Updated" +msgstr "" + +#: ../../admin/users.php:78 +msgid "updated" +msgstr "" + +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 +#: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 +#: ../../templates/show_add_user.inc.php:74 +msgid "Guest" +msgstr "" + +#: ../../admin/users.php:118 +msgid "New User Added" +msgstr "" + +#: ../../admin/users.php:123 +msgid "User Enabled" +msgstr "" + +#: ../../admin/users.php:128 +msgid "User Disabled" +msgstr "" + +#: ../../admin/users.php:131 +msgid "Unable to Disabled last Administrator" +msgstr "" + +#: ../../admin/users.php:153 +msgid "User Deleted" +msgstr "" + +#: ../../admin/users.php:156 +msgid "Delete Error" +msgstr "" + +#: ../../admin/users.php:156 +msgid "Unable to delete last Admin User" +msgstr "" + +#: ../../admin/users.php:162 +msgid "Deletion Request" +msgstr "" + +#: ../../admin/users.php:163 +msgid "Are you sure you want to permanently delete" +msgstr "" + +#: ../../admin/modules.php:38 +msgid "Install Failed, Controller Error" +msgstr "" + +#: ../../admin/modules.php:54 ../../admin/modules.php:92 +msgid "Are you sure you want to remove this plugin?" +msgstr "" + +#: ../../admin/modules.php:66 ../../admin/modules.php:111 +msgid "Plugin Deactivated" +msgstr "" + +#: ../../admin/modules.php:85 +msgid "Plugin Activated" +msgstr "" + +#: ../../admin/modules.php:120 +msgid "Plugins" +msgstr "" + +#: ../../admin/modules.php:126 +msgid "Localplay Controllers" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Deleted" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Your Access List Entry has been removed" +msgstr "" + +#: ../../admin/access.php:40 +msgid "Your new Access List Entry has been created" +msgstr "" + +#: ../../admin/access.php:45 +msgid "Access List Entry updated" +msgstr "" + +#: ../../admin/mail.php:57 +msgid "E-mail Sent" +msgstr "" + +#: ../../admin/mail.php:58 +msgid "Your E-mail was successfully sent." +msgstr "" + +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "" + +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "" + +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" + +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +msgid "Clear Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "" + +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "" + +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -711,9 +1184,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -725,9 +1198,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -736,8 +1209,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" @@ -746,8 +1219,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "" @@ -762,835 +1235,722 @@ msgid "Create Admin Account" msgstr "" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "" -#: ../../templates/show_catalogs.inc.php:33 -#: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 -msgid "Path" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_localplay.inc.php:30 -#: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 -msgid "Actions" +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" msgstr "" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" msgstr "" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" msgstr "" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" msgstr "" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" msgstr "" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" msgstr "" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" msgstr "" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" msgstr "" -#: ../../templates/sidebar_browse.inc.php:3 -msgid "Browse By" +#: ../../templates/show_add_catalog.inc.php:48 +#: ../../templates/show_catalogs.inc.php:33 +#: ../../templates/show_catalogs.inc.php:61 +msgid "Path" msgstr "" -#: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:42 -#: ../../templates/show_playlist_songs.inc.php:63 -msgid "Song Title" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" msgstr "" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" msgstr "" -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" msgstr "" -#: ../../templates/sidebar_browse.inc.php:18 -msgid "Filters" +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/sidebar_browse.inc.php:23 -msgid "Minimum Count" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/sidebar_browse.inc.php:25 -msgid "Rated" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 -msgid "Unplayed" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 -msgid "Show Art" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" msgstr "" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" msgstr "" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" msgstr "" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" msgstr "" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" msgstr "" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" msgstr "" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" msgstr "" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" msgstr "" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" msgstr "" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_album.inc.php:43 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 +msgid "Actions" msgstr "" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_album_row.inc.php:49 #: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 #: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 +#: ../../templates/show_live_stream_row.inc.php:31 #: ../../templates/show_playlist_row.inc.php:36 msgid "Edit" msgstr "" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "" - -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -msgid "File" -msgstr "" - -#: ../../templates/show_flag.inc.php:49 -msgid "Item" -msgstr "" - -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" msgstr "" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" msgstr "" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" msgstr "" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_browse.inc.php:3 +msgid "Browse By" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" +#: ../../templates/sidebar_browse.inc.php:10 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 +#: ../../templates/show_playlist_songs.inc.php:42 +#: ../../templates/show_playlist_songs.inc.php:63 +msgid "Song Title" msgstr "" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_browse.inc.php:18 +msgid "Filters" msgstr "" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/sidebar_browse.inc.php:23 +msgid "Minimum Count" msgstr "" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/sidebar_browse.inc.php:25 +msgid "Rated" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" +#: ../../templates/sidebar_browse.inc.php:27 +msgid "Unplayed" msgstr "" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" +#: ../../templates/sidebar_browse.inc.php:30 +msgid "Show Art" msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" msgstr "" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" msgstr "" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" msgstr "" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" msgstr "" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_random.inc.php:62 #: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 msgid "Type" msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "" - -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "" - -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" -msgstr "" - -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "" - -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" -msgstr "" - -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 -msgid "Rating" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" msgstr "" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" +#: ../../templates/show_random.inc.php:76 +msgid "From catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" msgstr "" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +msgid "Update" msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" msgstr "" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" msgstr "" -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" msgstr "" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +msgid "Clean" msgstr "" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" msgstr "" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +msgid "Update All" msgstr "" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" msgstr "" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" msgstr "" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" msgstr "" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" msgstr "" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" msgstr "" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -msgid "Current Playlist" +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +msgid "File" msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/show_flag.inc.php:49 +msgid "Item" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_install.inc.php:54 -msgid "" -"This step creates and inserts the Ampache database, as such please provide a " -"mysql account with database creation rights. This step may take a while " -"depending upon the speed of your computer" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_install.inc.php:61 -msgid "Insert Ampache Database" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_install.inc.php:73 -msgid "MySQL Administrative Username" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" msgstr "" -#: ../../templates/show_install.inc.php:77 -msgid "MySQL Administrative Password" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_install.inc.php:81 -msgid "Create Database User for New Database" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" msgstr "" -#: ../../templates/show_install.inc.php:85 -msgid "Ampache Database Username" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" msgstr "" -#: ../../templates/show_install.inc.php:89 -msgid "Ampache Database User Password" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" msgstr "" -#: ../../templates/show_install.inc.php:93 -msgid "Overwrite Existing" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" msgstr "" -#: ../../templates/show_install.inc.php:98 -msgid "Insert Database" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" msgstr "" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" msgstr "" -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" msgstr "" -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" msgstr "" -#: ../../templates/show_add_playlist.inc.php:24 -msgid "Create a new playlist" +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 +msgid "Rating" msgstr "" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" msgstr "" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 -#: ../../templates/show_edit_song.inc.php:40 -#: ../../templates/show_edit_song.inc.php:48 -#: ../../templates/show_edit_song.inc.php:56 -msgid "OR" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +msgid "No Records Found" msgstr "" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" msgstr "" -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" msgstr "" -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" msgstr "" -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" msgstr "" -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" msgstr "" #: ../../templates/header.inc.php:71 @@ -1601,165 +1961,164 @@ msgstr "" msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "" - -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" msgstr "" -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" msgstr "" -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" msgstr "" -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" -#: ../../templates/show_search.inc.php:72 -msgid "Played" +#: ../../templates/show_install.inc.php:54 +msgid "" +"This step creates and inserts the Ampache database, as such please provide a " +"mysql account with database creation rights. This step may take a while " +"depending upon the speed of your computer" msgstr "" -#: ../../templates/show_search.inc.php:76 -msgid "Yes" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" msgstr "" -#: ../../templates/show_search.inc.php:77 -msgid "No" +#: ../../templates/show_install.inc.php:61 +msgid "Insert Ampache Database" msgstr "" -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" msgstr "" -#: ../../templates/show_search.inc.php:95 -msgid "One Star" +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" msgstr "" -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" +#: ../../templates/show_install.inc.php:73 +msgid "MySQL Administrative Username" msgstr "" -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" +#: ../../templates/show_install.inc.php:77 +msgid "MySQL Administrative Password" msgstr "" -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" +#: ../../templates/show_install.inc.php:81 +msgid "Create Database User for New Database" msgstr "" -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" +#: ../../templates/show_install.inc.php:85 +msgid "Ampache Database Username" msgstr "" -#: ../../templates/show_search.inc.php:102 -msgid "Operator" +#: ../../templates/show_install.inc.php:89 +msgid "Ampache Database User Password" msgstr "" -#: ../../templates/show_search.inc.php:105 -msgid "AND" +#: ../../templates/show_install.inc.php:93 +msgid "Overwrite Existing" msgstr "" -#: ../../templates/show_search.inc.php:111 -msgid "Method" +#: ../../templates/show_install.inc.php:98 +msgid "Insert Database" msgstr "" -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_search.inc.php:115 -msgid "Exact" +#: ../../templates/show_add_playlist.inc.php:24 +msgid "Create a new playlist" msgstr "" -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" msgstr "" -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" +#: ../../templates/show_edit_song.inc.php:40 +#: ../../templates/show_edit_song.inc.php:48 +#: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 +msgid "OR" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" msgstr "" #: ../../templates/show_edit_access.inc.php:22 @@ -1767,27 +2126,28 @@ msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1795,394 +2155,362 @@ msgstr "" msgid "Start IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" msgstr "" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" msgstr "" -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" msgstr "" -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" msgstr "" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +msgid "Show All" msgstr "" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" msgstr "" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" msgstr "" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" +#: ../../templates/show_mail_users.inc.php:23 +msgid "Send E-mail to Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" +#: ../../templates/show_mail_users.inc.php:27 +msgid "Mail to" msgstr "" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" msgstr "" -#: ../../templates/show_mail_users.inc.php:24 -msgid "Send E-mail to Users" +#: ../../templates/show_mail_users.inc.php:53 +msgid "Latest Artist Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:28 -msgid "Mail to" +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" msgstr "" -#: ../../templates/show_mail_users.inc.php:54 -msgid "Latest Artist Additions" +#: ../../templates/show_mail_users.inc.php:64 +msgid "Latest Album Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:65 -msgid "Latest Album Additions" +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 msgid "Most Popular Threshold in days" msgstr "" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" -msgstr "" - -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" -msgstr "" - -#: ../../templates/show_add_access.inc.php:82 -msgid "Create ACL" -msgstr "" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" msgstr "" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" msgstr "" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" msgstr "" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" msgstr "" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" msgstr "" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" msgstr "" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" msgstr "" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" msgstr "" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" msgstr "" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" msgstr "" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" +#: ../../templates/show_song.inc.php:49 +msgid "Label" msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" +#: ../../templates/show_song.inc.php:53 +msgid "Language" msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" msgstr "" -#: ../../templates/show_random.inc.php:59 -msgid "From catalog" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" msgstr "" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" msgstr "" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" msgstr "" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" msgstr "" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" msgstr "" #: ../../templates/show_get_albumart.inc.php:23 @@ -2201,86 +2529,27 @@ msgstr "" msgid "Get Art" msgstr "" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" msgstr "" #: ../../templates/show_democratic_playlist.inc.php:38 @@ -2300,6 +2569,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "" + #: ../../templates/show_edit_artist.inc.php:23 msgid "Edit Artist" msgstr "" @@ -2308,226 +2590,239 @@ msgstr "" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" +#: ../../templates/show_play_selected.inc.php:28 +msgid "Play Selected" msgstr "" -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" +#: ../../templates/show_play_selected.inc.php:31 +msgid "Download Selected" msgstr "" -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_play_selected.inc.php:40 +msgid "Set Track Numbers" msgstr "" -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" +#: ../../templates/show_play_selected.inc.php:41 +msgid "Remove Selected Tracks" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" +#: ../../templates/show_play_selected.inc.php:47 +msgid "Add to" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" msgstr "" -#: ../../templates/show_play_selected.inc.php:28 -msgid "Play Selected" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_play_selected.inc.php:31 -msgid "Download Selected" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" msgstr "" -#: ../../templates/show_play_selected.inc.php:40 -msgid "Set Track Numbers" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:41 -msgid "Remove Selected Tracks" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Add to" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" msgstr "" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" msgstr "" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" msgstr "" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" msgstr "" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" +#: ../../templates/sidebar_preferences.inc.php:34 +msgid "Localplay Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:96 -msgid "Disable Songs" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_account.inc.php:40 +msgid "New Password" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" msgstr "" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" msgstr "" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2538,14 +2833,6 @@ msgstr "" msgid "Checking" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2625,6 +2912,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2632,6 +2924,11 @@ msgid "" "\tit is not currently readable by your webserver." msgstr "" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2648,464 +2945,314 @@ msgid "" "cfg.php" msgstr "" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" - -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" - -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "" - -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "" - -#: ../../templates/show_account.inc.php:40 -msgid "New Password" -msgstr "" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "" - -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "" - -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" - -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" - -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" - -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" - -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" - -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" - -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" -msgstr "" - -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "" - -#: ../../activate.php:51 -msgid "User activated" -msgstr "" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" -msgstr "" - -#: ../../democratic.php:80 -msgid "Playlist Cleared" -msgstr "" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" -msgstr "" - -#: ../../lib/class/flag.class.php:280 -msgid "Approved" -msgstr "" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" -msgstr "" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" msgstr "" -#: ../../lib/class/song.class.php:341 -msgid "Rate" +#: ../../templates/show_search.inc.php:72 +msgid "Played" msgstr "" -#: ../../lib/class/song.class.php:345 -msgid "Mode" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" msgstr "" -#: ../../lib/class/song.class.php:357 -msgid "Filesize" +#: ../../templates/show_search.inc.php:77 +msgid "No" msgstr "" -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" msgstr "" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" msgstr "" -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" +#: ../../templates/show_search.inc.php:105 +msgid "AND" msgstr "" -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" +#: ../../templates/show_search.inc.php:111 +msgid "Method" msgstr "" -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" msgstr "" -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" msgstr "" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Update Finished." +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" msgstr "" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" msgstr "" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" msgstr "" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" msgstr "" -#: ../../lib/preferences.php:272 -msgid "M3U" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../ratings.php:32 +msgid "Rating Updated" msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" msgstr "" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/general.lib.php:496 -msgid "British English" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" +#: ../../preferences.php:91 +msgid "Error Update Failed" msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" +#: ../../preferences.php:96 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" +#: ../../update.php:51 +msgid "Ampache Update" msgstr "" -#: ../../lib/general.lib.php:583 -msgid "Off" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" msgstr "" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" msgstr "" -#: ../../lib/ui.lib.php:550 -msgid "Upload" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" msgstr "" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" +#: ../../artists.php:186 +msgid "Show Artists starting with" msgstr "" -#: ../../lib/ui.lib.php:556 -msgid "Random Play" +#: ../../playlist.php:57 +msgid "Playlist Created" msgstr "" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" +#: ../../playlist.php:57 +msgid " has been created" msgstr "" -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" +#: ../../playlist.php:78 +msgid "Playlist Updated" msgstr "" -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/ui.lib.php:584 -msgid "Admin-Manage Access Lists" +#: ../../playlist.php:101 +msgid "Playlist Imported" msgstr "" -#: ../../lib/ui.lib.php:588 -msgid "Admin-Site Preferences" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" msgstr "" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" +#: ../../flag.php:45 +msgid "Item Flagged" msgstr "" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" #: ../../albums.php:32 @@ -3126,110 +3273,52 @@ msgid "" "error, or the file is not received corectly." msgstr "" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" - -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "" - -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "" - -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" - -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." -msgstr "" - -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "" - -#: ../../playlist.php:57 -msgid "Playlist Created" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../playlist.php:57 -msgid " has been created" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../playlist.php:78 -msgid "Playlist Updated" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -#: ../../playlist.php:101 -msgid "Playlist Imported" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" +#: ../../register.php:122 +msgid "You must enter a password" msgstr "" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" +#: ../../register.php:126 +msgid "Your passwords do not match" msgstr "" -#: ../../login.php:87 -msgid "Unable to create new account" +#: ../../register.php:158 +msgid "Error: Insert Failed" msgstr "" -#: ../../login.php:96 -msgid "No local account found" +#: ../../register.php:175 +msgid "Registration Complete" msgstr "" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../artists.php:186 -msgid "Show Artists starting with" +#: ../../democratic.php:80 +msgid "Playlist Cleared" msgstr "" #: ../../bin/print_tags.inc:66 diff --git a/locale/de_DE/LC_MESSAGES/messages.po b/locale/de_DE/LC_MESSAGES/messages.po index cf4ba78a..bcf80d51 100644 --- a/locale/de_DE/LC_MESSAGES/messages.po +++ b/locale/de_DE/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: 2007-09-13 13:17+0200\n" "Last-Translator: Nikolai Försterling <devel@fosternet.de>\n" "Language-Team: <de@li.org>\n" @@ -16,264 +16,1063 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#: ../../register.php:82 -msgid "Error Captcha Required" -msgstr "Fehler Captcha benötigt" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" +msgstr "Sitzung abgelaufen: Bitte erneut einloggen" -#: ../../register.php:89 -msgid "Error Captcha Failed" -msgstr "Fehler Captcha fehlgeschlagen" +#: ../../lib/class/album.class.php:217 +msgid "Disk" +msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" -msgstr "Sie <u>müssen</u> diese Vereinbarung akzeptieren" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "Interpreten" -#: ../../register.php:101 -msgid "You did not enter a username" -msgstr "Sie haben keine Benutzernamen eingegeben" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "Verschiedene" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" -msgstr "Bitte geben Sie Ihren kompletten Namen ein (Vorname Nachname)" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "Fehler: kann nicht öffnen" -#: ../../register.php:131 -msgid "You must enter a password" -msgstr "Sie müssen ein Passwort eingeben" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "Alle" -#: ../../register.php:135 -msgid "Your passwords do not match" -msgstr "Passwort falsch" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "Anschauen" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" -msgstr "Fehler Benutzername existiert" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" +msgstr "Lesen" -#: ../../register.php:157 -msgid "Error: Insert Failed" -msgstr "Fehler: einfügen fehlgeschlagen" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" +msgstr "Lesen/Schreiben" -#: ../../register.php:174 -msgid "Registration Complete" -msgstr "Registrierung komplett" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" +msgstr "Nie" -#: ../../update.php:51 -msgid "Ampache Update" -msgstr "Ampache Update" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "Tag" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" -msgstr "Sitzung abgelaufen: Bitte erneut einloggen" +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "Tage" -#: ../../ratings.php:32 -msgid "Rating Updated" -msgstr "Bewertung aktualisiert" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "Stunde" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" -msgstr "Ihre Bewertung für dieses Objekt wurde aktualisiert" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "Stunden" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" +msgstr "Starte Remote Sync" + +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "Fehler: Kann nicht zu Verzeichnis wechseln" + +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "Fehler: Kann Dateigröße nicht bestimmen für" + +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "ist von Ampache nicht lesbar" + +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" +msgstr "Starte Katalogerstellung" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "gefunden" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" +msgstr "Kein" + +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" +msgstr "Wiedergabeliste hinzugefügt von" + +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" +msgstr "Starte Cover Suche" + +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "Gesucht" + +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" +msgstr "Katalog fertig" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "Spielzeit" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "Alle Stücke" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "Stücke pro Sekunde" + +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "Aktualisiert" + +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "Keine Aktualisierung benötigt" + +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "Starte entferntes Update" + +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" +msgstr "Katalog-Aktualisierung beendet" + +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "Fehler" + +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" +"Kann XMLRPC Library nicht laden, bitte sicherstellen dass XML-RPC aktiviert " +"ist" -#: ../../admin/flag.php:97 -msgid "Song Updated" -msgstr "Stück aktualisiert" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "Kann nicht verbinden zu" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" -msgstr "Das gewünschte Stück wurde aktualisiert" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "" -#: ../../admin/flag.php:139 -msgid "Album Updated" -msgstr "Album aktualisiert" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "Grund" -#: ../../admin/flag.php:181 -msgid "Artist Updated" -msgstr "Interpreten aktualisiert" +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "Aktualisierung der entfernten Kataloge abgeschlossen" -#: ../../admin/flag.php:246 -msgid "Songs Updated" -msgstr "Songs aktualisiert" +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "Hinzugefügt" -#: ../../admin/flag.php:254 -msgid "Flag Removed" -msgstr "Markierung entfernt" +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" +msgstr "" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" -msgstr "Markierung entfernt von" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "Bereinigen des Kataloges beendet" -#: ../../admin/flag.php:270 -msgid "Flags Updated" -msgstr "Markierung aktualisiert" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "Dateien gelöscht" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" -msgstr "Stücke gesperrt" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" -msgstr "Die gewünschten Stücke wurden gesperrt" +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "GEFUNDEN" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" -msgstr "Stücke freigegeben" +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "Neue Cover finden" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" -msgstr "Die gewünschten Stücke wurden freigegeben" +#: ../../lib/class/catalog.class.php:1788 +msgid "Update Finished." +msgstr "Aktualisierung beendet." -#: ../../admin/flag.php:305 -msgid "Flagged Records" -msgstr "Markierte Datensätze" +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "Geprüft" + +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "Stücke aktualisiert." + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "Titel" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "aktualisiert zu" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "Bitrate" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "Anteil" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "Modus" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "Dauer" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "Stück" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "Dateigröße" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "Interpret" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "Album" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "Jahr" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "Kommentar" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "Genre" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "Erlaubt" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "Zu erledigen" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "Löschen" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "TagNeuLesen" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "Neu einlesen" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" +msgstr "Andere" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "Unbekannt" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "Aktuell wird gespielt" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "Angehalten" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" +msgstr "Pause" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 +msgid "Error Username Required" +msgstr "Fehler Benutzername benötigt" + +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 +msgid "Error Passwords don't match" +msgstr "Fehler Passwort falsch" + +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "Stücke" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" +msgstr "Alben" + +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" +msgstr "" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" +msgstr "Benutzer verwalten" + +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" +msgstr "Radiosender" + +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "Wiedergabelisten" + +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" +msgstr "" + +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +msgid "Catalogs" +msgstr "Kataloge" + +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" +msgstr "Ähnliche Alben" + +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" +msgstr "Ähnliche Genres" + +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" +msgstr "Ähnliche Interpreten" + +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" +msgstr "Absolut zufällig" + +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" +msgstr "" + +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" +msgstr "Nicht abspielen" + +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "Ist wirklich schlecht" + +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "Ist OK" + +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "Ist wirklich gut" + +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "Ich liebe es!" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "Ist wahnsinnig" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "Aus der Hitparade!" + +#: ../../lib/preferences.php:160 +msgid "Enable" +msgstr "Aktivieren" + +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" +msgstr "Deaktivieren" + +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" +msgstr "Datenstrom" + +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "demokratisch" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" +msgstr "Lokal abspielen" + +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" +msgstr "" + +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "" + +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "einfache M3U" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "" + +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:226 +msgid "Disabled" +msgstr "Deaktiviert" + +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "Benutzer" + +#: ../../lib/preferences.php:228 +msgid "Manager" +msgstr "" + +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" +msgstr "Admin" + +#: ../../lib/preferences.php:249 +msgid "Send on Add" +msgstr "" + +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" + +#: ../../lib/preferences.php:251 +msgid "Clear on Send" +msgstr "" + +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" +msgstr "Voreinstellung" + +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "Immer" + +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "Englisch" + +#: ../../lib/general.lib.php:436 +msgid "British English" +msgstr "Britisch Englisch" + +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "Türkisch" + +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "Vereinfachtes Chinesisch" + +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "Ein" + +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "Aus" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "Sekunden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" +msgstr "Minuten" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" +msgstr "Stunden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" +msgstr "Tagen" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "Wochen" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "Monaten" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" +msgstr "Jahren" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "Startseite" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "hochladen" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "Lokal abspielen" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "Zufällig Abspielen" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "Wiedergabeliste" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "Suchen" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "Einstellungen" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "Admin-Katalog" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" +msgstr "Admin-Benutzer Verwaltung" + +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" +msgstr "Admin-Mail Benutzer" + +#: ../../lib/ui.lib.php:515 +msgid "Admin-Manage Access Lists" +msgstr "Admin-Bearbeiten Zugriffslisten" + +#: ../../lib/ui.lib.php:519 +msgid "Admin-Site Preferences" +msgstr "Admin-Seiten Einstellungen" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "Admin-Bearbeiten Module" + +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "Durchsuche Stücke" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "Statistik" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "Empfehlungen" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 +msgid "Name" +msgstr "Name" + +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" + +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" +msgstr "" + +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" +msgstr "kürzlich gespielt" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "Passwort" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "Datei" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "Datei hochladen nicht unterstützt." + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "Keine Datei hochgeladen" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "" +"Ein Problem mit der hochgeladenen Datei wurde festgestellt: %s wurde nicht " +"hochgeladen." + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" +"Ein Problem mit der hochgeladenen Datei wurde festgestellt: %s ist größer " +"als die maximal erlaubte Größe (%d bytes)." + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" +"Ein Problem mit der hochgeladenen Datei wurde festgestellt: %s wurde nur " +"teilweise hochgeladen." #: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 msgid "Catalog Updated" msgstr "Katalog aktualisiert" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "Catalog Deleted" msgstr "Katalog gelöscht" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../admin/catalog.php:115 +#: ../../admin/catalog.php:112 msgid "Songs Removed" msgstr "Stücke gelöscht" -#: ../../admin/catalog.php:118 +#: ../../admin/catalog.php:115 msgid "No Songs Removed" msgstr "Keine Stücke gelöscht" -#: ../../admin/catalog.php:121 +#: ../../admin/catalog.php:118 msgid "Disabled Songs Processed" msgstr "Deaktivierung der Stücke abgeschlossen" -#: ../../admin/catalog.php:141 +#: ../../admin/catalog.php:138 msgid "Catalog Cleaned" msgstr "Katalog geleert" -#: ../../admin/catalog.php:191 +#: ../../admin/catalog.php:188 msgid "Catalog Created" msgstr "Katalog erstellt" -#: ../../admin/catalog.php:208 +#: ../../admin/catalog.php:205 msgid "Catalog statistics cleared" msgstr "Katalogstatistik gelöscht" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "Now Playing Cleared" msgstr "Zur Zeit gespielte Liste geleert" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "All now playing data has been cleared" msgstr "Übersicht der aktuell abspielenden Stücke gelöscht" -#: ../../admin/catalog.php:233 +#: ../../admin/catalog.php:230 msgid "No Disabled songs found" msgstr "Keine gesperrten Stücke gefunden" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Delete Catalog" msgstr "Katalog löschen" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Do you really want to delete this catalog?" msgstr "Wollen sie wirklich diesen Katalog löschen?" -#: ../../admin/catalog.php:261 +#: ../../admin/catalog.php:258 msgid "Album Art Search Finished" msgstr "Album Cover-Suche beendet" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 -msgid "Error Username Required" -msgstr "Fehler Benutzername benötigt" +#: ../../admin/flag.php:97 +msgid "Song Updated" +msgstr "Stück aktualisiert" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 -msgid "Error Passwords don't match" -msgstr "Fehler Passwort falsch" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" +msgstr "Das gewünschte Stück wurde aktualisiert" + +#: ../../admin/flag.php:139 +msgid "Album Updated" +msgstr "Album aktualisiert" + +#: ../../admin/flag.php:181 +msgid "Artist Updated" +msgstr "Interpreten aktualisiert" + +#: ../../admin/flag.php:246 +msgid "Songs Updated" +msgstr "Songs aktualisiert" + +#: ../../admin/flag.php:254 +msgid "Flag Removed" +msgstr "Markierung entfernt" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "Markierung entfernt von" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "Markierung aktualisiert" + +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "Stücke gesperrt" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "Die gewünschten Stücke wurden gesperrt" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "Stücke freigegeben" -#: ../../admin/users.php:79 +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "Die gewünschten Stücke wurden freigegeben" + +#: ../../admin/flag.php:305 +msgid "Flagged Records" +msgstr "Markierte Datensätze" + +#: ../../admin/users.php:78 msgid "User Updated" msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/users.php:78 msgid "updated" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "Fehler Benutzername existiert" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 #: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 #: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 msgid "Guest" msgstr "Gast" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "Benutzer" - -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" -msgstr "Admin" - -#: ../../admin/users.php:119 +#: ../../admin/users.php:118 msgid "New User Added" msgstr "" -#: ../../admin/users.php:124 +#: ../../admin/users.php:123 msgid "User Enabled" msgstr "" -#: ../../admin/users.php:129 +#: ../../admin/users.php:128 msgid "User Disabled" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" -msgstr "Fehler" - -#: ../../admin/users.php:132 +#: ../../admin/users.php:131 msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../admin/users.php:154 +#: ../../admin/users.php:153 msgid "User Deleted" msgstr "Benutzer-Eintrag gelöscht" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Delete Error" msgstr "Fehler beim löschen" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Unable to delete last Admin User" msgstr "Der letzte Admin Benutzer kann nicht gelöscht werden" -#: ../../admin/users.php:163 +#: ../../admin/users.php:162 msgid "Deletion Request" msgstr "Löschen Abfrage" -#: ../../admin/users.php:164 +#: ../../admin/users.php:163 msgid "Are you sure you want to permanently delete" msgstr "Sind Sie sicher endgültig zu löschen" @@ -309,401 +1108,83 @@ msgstr "Gelöscht" msgid "Your Access List Entry has been removed" msgstr "Ihr Zugangs-Eintrag wurde gelöscht" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "Hinzugefügt" - #: ../../admin/access.php:40 msgid "Your new Access List Entry has been created" msgstr "Ein neuer Zugangs-Eintrag wurde erstellt" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" -msgstr "Aktualisiert" - #: ../../admin/access.php:45 msgid "Access List Entry updated" msgstr "Zugriffslisten-Eintrag aktualisiert" -#: ../../admin/system.php:64 -msgid "Export Failed" -msgstr "Export fehlgeschlagen" - -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" -msgstr "Keine Kataloge gefunden" - -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "Einen Katalog hinzufügen" - -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "Katalogstatistik" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "Tag" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "Tage" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "Stunde" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "Stunden" - -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "Gesamtzahl Benutzer" - -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "Verbundene Benutzer" - -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "Alben" - -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "Interpreten" - -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "Stücke" - -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "Kataloggröße" - -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "Katalog Spielzeit" - -#: ../../admin/mail.php:260 +#: ../../admin/mail.php:57 msgid "E-mail Sent" msgstr "E-mail gesendet" -#: ../../admin/mail.php:261 +#: ../../admin/mail.php:58 msgid "Your E-mail was successfully sent." msgstr "Ihre E-mail wurde gesendet" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "Export fehlgeschlagen" -#: ../../preferences.php:86 -msgid "Error Update Failed" -msgstr "" +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "Abspielen" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" -msgstr "Eintrag markiert" - -#: ../../flag.php:45 -msgid "The specified item has been flagged" -msgstr "Der gewählte Eintrag wurde markiert" - -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -msgid "Catalogs" -msgstr "Kataloge" - -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" -msgstr "Name" - -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "Aktion" - -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" -msgstr "Hinzufügen" - -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" -msgstr "Prüfen" - -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" -msgstr "Bereinigen" - -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "Alle" - -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "Löschen" - -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" -msgstr "Schnell" - -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" -msgstr "Cover holen" - -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" -msgstr "Keine Kataloge gefunden" - -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" -msgstr "Alle bereinigen" - -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" -msgstr "Alle prüfen" - -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" -msgstr "Zu allen hinzufügen" - -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -msgid "Update All" -msgstr "Alle aktualisieren" - -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "Katalogstatistiken löschen" - -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" -msgstr "Nach Covern suchen" - -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" -msgstr "Andere Werkzeuge" - -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "Doppelte Stücke anzeigen" - -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" -msgstr "Momentan gespielte löschen" - -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" -msgstr "Schreibe neue Konfiguration" - -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" -msgstr "Berechtigungen" - -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" -msgstr "Export in Itunes DB" - -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" -msgstr "Prüfe auf neue Version" - -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "Auswahl" - -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" -msgstr "Auswahl" - -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "Markierung" - -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" -msgstr "Kommentar" - -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" -msgstr "Status" - -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -msgid "No Records Found" -msgstr "Keine Datensätze gefunden" +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" -msgstr "Verwerfen" +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +msgid "Clear Playlist" +msgstr "Wiedergabeliste leeren" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" -msgstr "Erlauben" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "dynamisch hinzufügen" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -msgid "Update" -msgstr "Aktualisieren" +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "Nicht genügend Daten" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -msgid "Show All" -msgstr "Zeige alle" +#: ../../templates/rightbar.inc.php:104 +msgid "More" +msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "Ampache Installation" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -714,9 +1195,9 @@ msgstr "" "sicher, dass folgende Voraussetzungen erfüllt sind." #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -732,9 +1213,9 @@ msgstr "" "und /config/ampache.cfg.dist.php" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -748,8 +1229,8 @@ msgstr "" "ampache.cfg.php" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "Schritt 1 - Erstellen der Ampache Datenbank" @@ -758,8 +1239,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "Schritt 2 - Erstellen der ampache.cfg.php Datei" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "Schritt 3 - Erstes Konto erstellen" @@ -776,191 +1257,280 @@ msgid "Create Admin Account" msgstr "Admin Konto erstellen" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "Benutzername" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "Passwort" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "Konto erstellen" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "Einen Katalog hinzufügen" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" +"Geben Sie bitte unten im Formular einen lokalen Pfad (z.B. /daten/musik) " +"oder ein URL zu einer entfernten Ampache Installation (z.B. http://" +"theotherampache.com) ein." + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "Katalogname" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "Automatisch eingefügte Felder" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "Albumname" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "Interpretenname" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr "id3-Kommentar" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "Genre" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "Titelnummer (Mit einer 0 am Anfang)" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "Titel" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "Jahr" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "andere" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "Pfad" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" +msgstr "Katalogtyp" + +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "Lokal" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" +msgstr "Entfernt" + +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" +msgstr "XML-RPC Schlüssel" + +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" +msgstr "Benötigt für entfernte Kataloge" + +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" +msgstr "Dateinamenmuster" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" +msgstr "Verzeichnisnamenmuster" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "(Ohne '/' an Anfang oder Ende" + +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" +msgstr "Nach Covern suchen" + +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "Erstelle Wiedergabelisten von m3u Dateien" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "Katalog hinzufügen" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "Lautstärke" + +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" +msgstr "Wiederholen" + +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "Zufällig" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "Hinzufügen" + +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" +msgstr "Name der Wiedergabeliste" + +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" +msgstr "# Stücke" + +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "Eigentümer" + +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 #: ../../templates/show_artist_box.inc.php:32 #: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 #: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 msgid "Actions" msgstr "Aktionen" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" -msgstr "" - -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" -msgstr "" +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "Editieren" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "Titel" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" +msgstr "Ähnliche Interpreten" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "Interpret" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" +msgstr "" +"Bitte den Interpreten markieren, den Sie mit dem aktuellen verbinden möchten" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "Album" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" +msgstr "Zurück" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "Genre" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" +msgstr "Ausgewählte umbenennen" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" -msgstr "Bitrate" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "Dateinamen" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" +msgstr "Erweiterte Einstellungen" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" +msgstr "Weiter suchen" #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "Anzeige nach" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 msgid "Song Title" msgstr "Titel" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "Wiedergabeliste" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "Radiosender" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "Filter" @@ -973,121 +1543,264 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "nicht gespielte" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "zeige Cover" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" -msgstr "Nie" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" +msgstr "Favoriten" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "Unbekannt" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" +msgstr "Beliebteste Interpreten" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "Kompletter Name" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" +msgstr "Beliebteste Alben" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" +msgstr "Beliebteste Stücke" + +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "Spiele Zufallsauswahl" + +#: ../../templates/show_random.inc.php:26 +msgid "Item count" +msgstr "Anzahl" + +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "von Genre" + +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" +msgstr "Länge" + +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" +msgstr "Unbegrenzt" + +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "Zuletzt anwesend" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "Typ" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "Aktivität" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" +msgstr "" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" +msgstr "Wenig gespielt" + +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "Alle Alben" + +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" +msgstr "Alle Interpreten" + +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_random.inc.php:76 +msgid "From catalog" +msgstr "Von Katalog" + +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" +msgstr "Größenbegrenzung" + +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" +msgstr "Abspielen (Queue)" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" +msgstr "Starte neue Stück-Suche in" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "Katalog" + +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" -msgstr "Aktive Wiedergabeliste" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" +msgstr "Wiedergabeliste editieren" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" -msgstr "kürzlich gespielt" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "öffentliche" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" -msgstr "Stück" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" +msgstr "privat" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" -msgstr "Dauer" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +msgid "Update" +msgstr "Aktualisieren" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" -msgstr "Nicht genügend Daten" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" +msgstr "Login" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" -msgstr "Album Cover" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "Speichere Login" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" -msgstr "Klick um Fenster zu schließen" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" +msgstr "Registrieren" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" -msgstr "Download" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" +msgstr "Nachricht des Tages" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "Editieren" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "Aktion" + +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" +msgstr "Prüfen" + +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +msgid "Clean" +msgstr "Bereinigen" + +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" +msgstr "Schnell" + +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" +msgstr "Cover holen" + +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" +msgstr "Keine Kataloge gefunden" + +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" +msgstr "Alle bereinigen" + +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" +msgstr "Alle prüfen" + +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" +msgstr "Zu allen hinzufügen" + +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +msgid "Update All" +msgstr "Alle aktualisieren" + +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "Katalogstatistiken löschen" + +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" +msgstr "Andere Werkzeuge" + +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "Doppelte Stücke anzeigen" + +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "Momentan gespielte löschen" + +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" +msgstr "Schreibe neue Konfiguration" + +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" +msgstr "Berechtigungen" + +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" +msgstr "Export in Itunes DB" + +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" +msgstr "" + +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" +msgstr "Prüfe auf neue Version" #: ../../templates/show_flag.inc.php:41 msgid "Flag Song" @@ -1110,400 +1823,235 @@ msgstr "Grund der Markierung" msgid "Incorrect Tags" msgstr "fehlerhafte TAGs" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" -msgstr "Neu einlesen" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "Markierung" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" -msgstr "Andere" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" +msgstr "Anzeigen..." -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" -msgstr "von" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "Ausloggen" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "gefunden" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" +msgstr "Sitzung hinzufügen" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" -msgstr "Benötigtes" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" +msgstr "Aktive Sitzung" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -"Ihr Websever hat Leserechte an der Datei /sql/ampache.sql und /config/" -"ampache.cfg.php.dist" - -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" -msgstr "Starte Konfiguration" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" -msgstr "zufällige Alben" - -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "Album abspielen" - -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" -msgstr "Lautstärke" - -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" -msgstr "Wiederholen" - -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "Zufällig" - -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" -msgstr "Zusätzliche Zeit" - -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" -msgstr "Löschen" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "Kompletter Name" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" -msgstr "Eintrag hinzufügen" - -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "Start Adresse" - -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "End Adresse" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "Zuletzt anwesend" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "Level" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" +msgstr "Aktivität" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" -msgstr "Schlüssel" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" +msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" -msgstr "Typ" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" +msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "Kompletter Name" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" +msgstr "Aktive Wiedergabeliste" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "Registrierungsdatum " +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "Alben von" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" -msgstr "Letzte IP-Adr." +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "Zeige alle Stücke von" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "Verbunden" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" +msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" -msgstr "Basis-Wiedergabeliste" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" +msgstr "Aktualisieren vom TAG" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "Neue Wiedergabeliste erstellen" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" +msgstr "" +#: ../../templates/show_songs.inc.php:48 #: ../../templates/show_now_playing_row.inc.php:36 #: ../../templates/show_search.inc.php:91 msgid "Rating" msgstr "Bewertung" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "Stück" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" +msgstr "Aktuelle Wiedergabeliste" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr "Schritt 2 - Erstellen der Ampache.cfg.php Datei" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +msgid "No Records Found" +msgstr "Keine Datensätze gefunden" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" -msgstr "" -"In diesem Schritt werden die Werte für die Basis-Konfiguration benötigt, " -"und versucht die Konfiguration direkt in Konfigurationsdatei zu schreiben. " -"Ist der Zugriff nicht erlaubt, erhalten Sie eine Meldung die " -"Konfigurationsdatei herunterzuladen. Bitte speichern Sie dann die editierte " -"Konfigurationsdatei im Verzeichnis /config" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "Einstellung" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" -msgstr "" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "Wert" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" -msgstr "Web Pfad" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "bei allen anwenden" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" -msgstr "Gewünschter Datenbank Name" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "Berechtigung" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "Beschreibung" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "MySQL Benutzername" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" +msgstr "Inhaltsmanager" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "MySQL Passwort" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" +msgstr "Katalogmanager" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" -msgstr "Schreibe Konfiguration" +#: ../../templates/header.inc.php:71 +msgid "Log out" +msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "Ampache.cfg vorhanden" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" +msgstr "Fehler Konfigurationsdatei abgelaufen" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "Ampache.cfg.php konfiguriert?" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" +msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" -msgstr "Prüfe die Konfiguration" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" +msgstr "Benutzer-Vereinbarung" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" -msgstr "" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" +msgstr "Ich akzeptiere" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" -msgstr "Existierenden Benutzer editieren" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" +msgstr "Benutzer Information" +#: ../../templates/show_user_registration.inc.php:94 #: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 #: ../../templates/show_add_user.inc.php:44 #: ../../templates/show_account.inc.php:34 msgid "E-mail" msgstr "" +#: ../../templates/show_user_registration.inc.php:112 #: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 #: ../../templates/show_add_user.inc.php:61 #: ../../templates/show_account.inc.php:47 msgid "Confirm Password" msgstr "Passwort wiederholen" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "Benutzer Zugriffs-Level" - -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "Benutzer aktualisieren" - -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "Verschiedene" - -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "Suchen" - -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" -msgstr "Erweiterte Suche" - -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" -msgstr "Erstellen" - -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "Weiter" - -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "Abbrechen" - -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "Startseite" - -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "Anzeigen..." - -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" -msgstr "Lokal abspielen" - -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "Einstellungen" - -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" -msgstr "Ausloggen" - -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "Aktualisiere den" - -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "Katalog" - -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." -msgstr "Stücke gefunden prüfe TAG Informationen" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "Registriere Benutzer" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" -msgstr "Geprüft" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" +msgstr "Bearbeite Album" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -msgid "Current Playlist" -msgstr "Aktuelle Wiedergabeliste" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" +msgstr "Markierung Tags neu" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" -msgstr "" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" +msgstr "Aktualisiere Album" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" -msgstr "" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" +msgstr "Benötigtes" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" - -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "Abspielen" - -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" -msgstr "Nächste" - -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" -msgstr "Beschreibung" - -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" -msgstr "Version" - -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" -msgstr "Aktiviere" +"Ihr Websever hat Leserechte an der Datei /sql/ampache.sql und /config/" +"ampache.cfg.php.dist" #: ../../templates/show_install.inc.php:54 msgid "" @@ -1515,10 +2063,25 @@ msgstr "" "benötigen ein MySQL Konto mit dem Recht eine Datenbank zu erstellen. Dies " "kann einige Zeit dauern, abhängig von der Geschwindigkeit Ihres Computers" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr "Schritt 2 - Erstellen der Ampache.cfg.php Datei" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "Gewünschter Datenbank Name" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "MySQL Administration Benutzername" @@ -1547,669 +2110,440 @@ msgstr "" msgid "Insert Database" msgstr "Datenbank einfügen" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" -msgstr "Ähnliche Interpreten" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" -msgstr "" -"Bitte den Interpreten markieren, den Sie mit dem aktuellen verbinden möchten" - -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" -msgstr "Zurück" - -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" -msgstr "Ausgewählte umbenennen" - -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" -msgstr "Erweiterte Einstellungen" - -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" -msgstr "Weiter suchen" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" +msgstr "Starte Konfiguration" #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "Neue Wiedergabeliste erstellen" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" -msgstr "Umbenennen" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" +msgstr "Erstellen" + +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" +msgstr "Stück editieren" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "ODER" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "Füge aktuellen ein" - -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" -msgstr "Aktualisieren des id3 TAG" - -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" -msgstr "Stücke durchnummerieren" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" -msgstr "Spiele zufällige Stücke" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "lokale Sitzung hinzufügen" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "Sitzung hinzufügen" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "Fehler Konfigurationsdatei abgelaufen" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "Cover" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "Jahr" - -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" -msgstr "Administrations-Einstellungen" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "Einstellung" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "Sekunden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" -msgstr "Minuten" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" -msgstr "Stunden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" -msgstr "Tagen" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "Wochen" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "Monaten" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" -msgstr "Jahren" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "zuletzt gespielt vor" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "In Ampache suchen" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../templates/show_search.inc.php:72 -msgid "Played" -msgstr "Abgespielt" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "Ja" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "Nein" - -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" -msgstr "Min Bitrate" - -#: ../../templates/show_search.inc.php:95 -msgid "One Star" -msgstr "Ein Stern" - -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" -msgstr "Zwei Sterne" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "Drei Sterne" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "Vier Sterne" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "Fünf Sterne" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "UND" - -#: ../../templates/show_search.inc.php:111 -msgid "Method" -msgstr "Methode" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "Unscharf" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "Exakt" - -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" -msgstr "Maximale Ergebnisse" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "Unbegrenzt" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "Radiosender hinzufügen" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" +msgstr "Stück aktualisieren" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" +msgstr "Einstellungen für" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" -msgstr "Frequenz" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" +msgstr "Dateinamenmuster" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" -msgstr "Kennung" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" +msgstr "Katalogeinstellungen sichern" #: ../../templates/show_edit_access.inc.php:22 msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "ACL Typ" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "Stream Zugriff" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "Grundeinstellungen" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "Lokale Netzwerk Definition" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" -msgstr "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" +msgstr "" #: ../../templates/show_edit_access.inc.php:43 #: ../../templates/show_add_access.inc.php:32 msgid "Start IP Address" msgstr "Start IP Adresse" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "Ende IP Adresse" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "Entfernter Schlüssel" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "Anschauen" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" -msgstr "Lesen" - -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" -msgstr "Lesen/Schreiben" - -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" -msgstr "Ampache neuen Benutzer registrieren" - -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" -msgstr "Benutzer-Vereinbarung" - -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" -msgstr "Ich akzeptiere" - -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" -msgstr "Benutzer Information" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "Level" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" -msgstr "Info löschen" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" +msgstr "zufällige Alben" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "Registriere Benutzer" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "Album abspielen" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" -msgstr "Login" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" +msgstr "Stück" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "Speichere Login" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" +msgstr "zuletzt gespielt vor" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" -msgstr "Registrieren" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" +msgstr "Empfohlene Interpreten" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" -msgstr "Nachricht des Tages" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" +msgstr "Empfohlene Alben" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" -msgstr "" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" +msgstr "Empfohlene Stücke" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "Meistgespielte Interpreten" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" +msgstr "IP Historie" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "Meistgespielte Alben" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" +msgstr "Zeige Einmalige" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" -msgstr "Meistgespielte Genres" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +msgid "Show All" +msgstr "Zeige alle" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "Meistgespielte Stücke" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "Datum" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" -msgstr "Die populärsten Live Streams" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" +msgstr "IP Adresse" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" -msgstr "Die populärsten Tags" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" +msgstr "Importiere eine Wiedergabeliste von einer Datei" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" -msgstr "Stück editieren" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "Dateinamen" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" -msgstr "Markierung Tags neu" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "Wiedergabelisten Typ" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" -msgstr "Stück aktualisieren" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" +msgstr "Importiere Wiedergabeliste" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" -msgstr "" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" +msgstr "Anschauen" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_mail_users.inc.php:23 msgid "Send E-mail to Users" msgstr "Sende E-mail zu Benutzern" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "Mail an" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "Katalogstatistik" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "Meistgespielte Alben" + +#: ../../templates/show_mail_users.inc.php:53 msgid "Latest Artist Additions" msgstr "Neuste Interpretenzugänge" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "Meistgespielte Interpreten" + +#: ../../templates/show_mail_users.inc.php:64 msgid "Latest Album Additions" msgstr "Neuste Albenzugänge" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "Meistgespielte Stücke" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "Markierte Stücke" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "Gesperrte Stücke" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 msgid "Most Popular Threshold in days" msgstr "Meistgespielte Stücke in Tagen" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "Betreff" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "Nachricht" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "Sende Mail" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "Neuen Benutzer hinzufügen" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" -msgstr "Inhaltsmanager" - -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" -msgstr "Katalogmanager" - -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "Benutzer hinzufügen" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "Zugang für einen Rechner einrichten" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" -msgstr "" - -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_access.inc.php:82 -msgid "Create ACL" -msgstr "Erstelle ACL" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "Wert" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" +msgstr "gerade gespielt" -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "bei allen anwenden" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" +msgstr "Radiosender hinzufügen" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" -msgstr "Berechtigung" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" +msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" -msgstr "Beschreibung" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" +msgstr "Erweitert" -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" -msgstr "Wiedergabeliste editieren" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" +msgstr "Die letzten 10 markierten Stücke" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "öffentliche" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" +msgstr "Administrations-Einstellungen" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" -msgstr "privat" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" +msgstr "Existierenden Benutzer editieren" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "Duplikate suchen" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "Benutzer Zugriffs-Level" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "Suchart" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "Benutzer aktualisieren" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "Interpret und Titel" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "Verbundene Benutzer" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "Interpret, Album und Titel" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "Gesamtzahl Benutzer" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" -msgstr "Wähle vermutlich besten" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "Kataloggröße" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "Starte Cover Suche" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "Katalog Spielzeit" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "Gesucht" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" +msgstr "Doppelte Stücke anzeigen" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" -msgstr "Kein" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" +msgstr "Größe" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "Alben von" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "Weiter" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "Zeige alle Stücke von" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "Auswahl" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "Spiele alle Stücke von" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" +msgstr "Auswahl" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "Spiele Zufallsauswahl von" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" +msgstr "Status" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" -msgstr "Aktualisieren vom TAG" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" +msgstr "Verwerfen" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" -msgstr "Doppelte Stücke anzeigen" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" +msgstr "Erlauben" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "Spiele Zufallsauswahl" - -#: ../../templates/show_random.inc.php:26 -msgid "Item count" -msgstr "Anzahl" - -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "von Genre" - -#: ../../templates/show_random.inc.php:50 -msgid "Standard" +#: ../../templates/show_song.inc.php:49 +msgid "Label" msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" -msgstr "Wenig gespielt" - -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "Alle Alben" +#: ../../templates/show_song.inc.php:53 +msgid "Language" +msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" -msgstr "Alle Interpreten" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" +msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" -msgstr "Minuten" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:59 -msgid "From catalog" -msgstr "Von Katalog" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "Umbenennen" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" -msgstr "Größenbegrenzung" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "Füge aktuellen ein" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" -msgstr "Abspielen (Queue)" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" +msgstr "Aktualisieren des id3 TAG" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" -msgstr "Aktuell wird gespielt" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "Duplikate suchen" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" -msgstr "Anschauen" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "Suchart" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" -msgstr "Bereiche" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "Interpret und Titel" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" -msgstr "Konto" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "Interpret, Album und Titel" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" -msgstr "Serverkonfiguration" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" +msgstr "Stücke durchnummerieren" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" -msgstr "Module" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" +msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" -msgstr "Lokale Abspiel-Module" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" +msgstr "" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" -msgstr "Verfügbare Plugins" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" +msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" -msgstr "Aktive Sitzung" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" +msgstr "Nächste" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" +msgstr "Basis-Wiedergabeliste" + +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" +msgstr "Neue Wiedergabeliste erstellen" + #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" msgstr "Suche anpassen" @@ -2226,87 +2560,28 @@ msgstr "Lokales Bild" msgid "Get Art" msgstr "Empfange Cover" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "Ampache Debug" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "Einstellungen für" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "Automatisch eingefügte Felder" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "Albumname" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "Interpretenname" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "id3-Kommentar" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "Genre" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "Titelnummer (Mit einer 0 am Anfang)" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "Titel" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "Jahr" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "andere" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "Katalogtyp" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "XML-RPC Schlüssel" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "Dateinamenmuster" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" +msgstr "Beschreibung" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "Verzeichnisnamenmuster" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" +msgstr "Version" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" -msgstr "(Ohne '/' an Anfang oder Ende" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" +msgstr "Aktiviere" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" -msgstr "Katalogeinstellungen sichern" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" +msgstr "Deaktiviere" #: ../../templates/show_democratic_playlist.inc.php:38 msgid "Playing from base Playlist" @@ -2325,6 +2600,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "Meistgespielte Genres" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "Die populärsten Live Streams" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "Die populärsten Tags" + #: ../../templates/show_edit_artist.inc.php:23 msgid "Edit Artist" msgstr "Bearbeite Interpret" @@ -2333,37 +2621,6 @@ msgstr "Bearbeite Interpret" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" -msgstr "Bearbeite Album" - -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" -msgstr "Aktualisiere Album" - -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" -msgstr "Die letzten 10 markierten Stücke" - -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" -msgstr "Deaktiviere" - -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "Datenstrom" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "demokratisch" - -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" -msgstr "" - #: ../../templates/show_play_selected.inc.php:28 msgid "Play Selected" msgstr "Ausgewählte abspielen" @@ -2384,155 +2641,104 @@ msgstr "Ausgewählte Stücke entfernen" msgid "Add to" msgstr "Hinzufügen" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" -msgstr "IP Historie" - -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" -msgstr "Zeige Einmalige" - -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "Datum" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "Neuen Benutzer hinzufügen" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" -msgstr "IP Adresse" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "Benutzer hinzufügen" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -"Geben Sie bitte unten im Formular einen lokalen Pfad (z.B. /daten/musik) " -"oder ein URL zu einer entfernten Ampache Installation (z.B. http://" -"theotherampache.com) ein." -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" -msgstr "Katalogname" - -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "Lokal" - -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" -msgstr "Entfernt" - -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" -msgstr "Benötigt für entfernte Kataloge" - -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" -msgstr "Dateinamenmuster" - -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "Erstelle Wiedergabelisten von m3u Dateien" - -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "Katalog hinzufügen" - -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" -msgstr "Wiedergabeliste leeren" - -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" -msgstr "Empfehlungen" - -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" -msgstr "Empfohlene Interpreten" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "Cover" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" -msgstr "Empfohlene Alben" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" +msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" -msgstr "Empfohlene Stücke" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" -msgstr "Importiere eine Wiedergabeliste von einer Datei" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "Cover zurücksetzen" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "Wiedergabelisten Typ" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "Cover finden" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" -msgstr "Importiere Wiedergabeliste" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" +msgstr "Download" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" -msgstr "" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "Kompletter Name" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" -msgstr "Favoriten" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" +msgstr "Registrierungsdatum " -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" -msgstr "Beliebteste Interpreten" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" +msgstr "Letzte IP-Adr." -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" -msgstr "Beliebteste Alben" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "Verbunden" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" -msgstr "Beliebteste Stücke" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" +msgstr "von" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" -msgstr "Doppelte Stücke anzeigen" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" +msgstr "Aktualisiere den" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" -msgstr "Länge" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "Katalog" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" -msgstr "Größe" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." +msgstr "Stücke gefunden prüfe TAG Informationen" -#: ../../templates/show_list_duplicates.inc.php:96 -msgid "Disable Songs" -msgstr "Sperre Stücke" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" +msgstr "Geprüft" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" -msgstr "gerade gespielt" - -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" -msgstr "Statistik" - -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" -msgstr "" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" +msgstr "Album Cover" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" -msgstr "Erweitert" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "Klick um Fenster zu schließen" # Added the following strings (only in german localization) # left here at the end for better overview what has to be done to other localizations and even the base mo/po @@ -2561,6 +2767,98 @@ msgstr "" msgid "Show ACL(s)" msgstr "" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "Mail zu Benutzern" + +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "Vorherige" + +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" +msgstr "" + +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" +msgstr "Bereiche" + +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" +msgstr "Konto" + +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" +msgstr "Serverkonfiguration" + +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" +msgstr "Module" + +#: ../../templates/sidebar_preferences.inc.php:34 +msgid "Localplay Modules" +msgstr "Lokale Abspiel-Module" + +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" +msgstr "Verfügbare Plugins" + +#: ../../templates/show_account.inc.php:40 +msgid "New Password" +msgstr "Neues Passwort" + +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "Statistiken löschen" + +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" +msgstr "Konto aktualisieren" + +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" +msgstr "Kennung" + +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" +msgstr "Frequenz" + +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" +msgstr "Editieren der" + +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "Einstellungen" + +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" +msgstr "Einstellungen aktualisieren" + +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" +msgstr "Ampache Debug" + +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" +msgstr "" + +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" +msgstr "" + #: ../../templates/show_clean_catalog.inc.php:23 msgid "Cleaning the" msgstr "Säubere den" @@ -2569,14 +2867,6 @@ msgstr "Säubere den" msgid "Checking" msgstr "Prüfe" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "Starte neue Stück-Suche in" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "Katalog" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2672,6 +2962,11 @@ msgstr "" "Speicherbegrenzung modifizieren können. Ohne diese Fähigkeit werden manche " "Dinge von Ampache nicht korrekt arbeiten" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "Ampache.cfg vorhanden" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2682,6 +2977,11 @@ msgstr "" "ist die Datei entweder nicht an der richtigen Stelle,\n" "\toder sie ist nicht korrekt lesbar" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "Ampache.cfg.php konfiguriert?" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2700,467 +3000,320 @@ msgstr "" "Hier versuchen wir, uns mit den Werten aus ihrer ampache.cfg zur Datenbank " "zu verbinden." -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "Neueste Alben" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "In Ampache suchen" -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "Neueste Interpreten" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" +msgstr "Schlüsselwörter" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "Neueste Genres" +#: ../../templates/show_search.inc.php:72 +msgid "Played" +msgstr "Abgespielt" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "Editieren der" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "Ja" -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "Einstellungen" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "Nein" -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "Einstellungen aktualisieren" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" +msgstr "Min Bitrate" -#: ../../templates/show_account.inc.php:40 -msgid "New Password" -msgstr "Neues Passwort" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" +msgstr "Ein Stern" -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "Statistiken löschen" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" +msgstr "Zwei Sterne" -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "Konto aktualisieren" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" +msgstr "Drei Sterne" -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "Vorherige" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" +msgstr "Vier Sterne" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" +msgstr "Fünf Sterne" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "dynamisch hinzufügen" - -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "Absolut zufällig" - -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "Ähnliche Interpreten" - -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "Ähnliche Alben" +#: ../../templates/show_search.inc.php:105 +msgid "AND" +msgstr "UND" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "Ähnliche Genres" +#: ../../templates/show_search.inc.php:111 +msgid "Method" +msgstr "Methode" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" +msgstr "Unscharf" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "Spiele zufällig vom Album" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" +msgstr "Exakt" -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "Cover zurücksetzen" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" +msgstr "Maximale Ergebnisse" -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "Cover finden" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" +msgstr "Erweiterte Suche" -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "Name der Wiedergabeliste" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "# Stücke" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "Eigentümer" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "Kein Benutzer mit diesem Namen registriert" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "Die Prüfung des Schlüssels ergab dass diese nicht korrekt ist" - -#: ../../activate.php:51 -msgid "User activated" -msgstr "Benutzer aktiviert" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "Diese Benutzer-ID ist aktiviert und kann benutzt werden" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../democratic.php:80 -msgid "Playlist Cleared" -msgstr "Playlist gelöscht" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/flag.class.php:280 -msgid "Approved" -msgstr "Erlaubt" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" -msgstr "Zu erledigen" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" -msgstr "TagNeuLesen" - -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" -msgstr "aktualisiert zu" - -#: ../../lib/class/song.class.php:341 -msgid "Rate" -msgstr "Anteil" - -#: ../../lib/class/song.class.php:345 -msgid "Mode" -msgstr "Modus" - -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "Dateigröße" - -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" -msgstr "Benutzer verwalten" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" +msgstr "lokale Sitzung hinzufügen" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "Wiedergabelisten" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "Fehler: kann nicht öffnen" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" -msgstr "Fehler: Kann nicht zu Verzeichnis wechseln" - -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "Fehler: Kann Dateigröße nicht bestimmen für" - -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "ist von Ampache nicht lesbar" - -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" -msgstr "Starte Katalogerstellung" - -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" -msgstr "Starte Remote Sync" - -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" -msgstr "Wiedergabeliste hinzugefügt von" - -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" -msgstr "Katalog fertig" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "Spielzeit" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "Alle Stücke" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" +msgstr "Eintrag hinzufügen" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" -msgstr "Stücke pro Sekunde" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "Start Adresse" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" -msgstr "Keine Aktualisierung benötigt" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "End Adresse" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" -msgstr "Starte entferntes Update" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" +msgstr "Schlüssel" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" -msgstr "Katalog-Aktualisierung beendet" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "Zugang für einen Rechner einrichten" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -"Kann XMLRPC Library nicht laden, bitte sicherstellen dass XML-RPC aktiviert " -"ist" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "Kann nicht verbinden zu" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" +msgstr "Erstelle ACL" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" -msgstr "Grund" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" +msgstr "Zusätzliche Zeit" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" -msgstr "Aktualisierung der entfernten Kataloge abgeschlossen" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" +msgstr "Löschen" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" +"In diesem Schritt werden die Werte für die Basis-Konfiguration benötigt, " +"und versucht die Konfiguration direkt in Konfigurationsdatei zu schreiben. " +"Ist der Zugriff nicht erlaubt, erhalten Sie eine Meldung die " +"Konfigurationsdatei herunterzuladen. Bitte speichern Sie dann die editierte " +"Konfigurationsdatei im Verzeichnis /config" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" -msgstr "Bereinigen des Kataloges beendet" - -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" -msgstr "Dateien gelöscht" - -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr "GEFUNDEN" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "Neue Cover finden" - -#: ../../lib/class/catalog.class.php:1706 -msgid "Update Finished." -msgstr "Aktualisierung beendet." +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" +msgstr "Web Pfad" -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" -msgstr "Geprüft" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "MySQL Benutzername" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." -msgstr "Stücke aktualisiert." +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "MySQL Passwort" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" -msgstr "Angehalten" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" +msgstr "Schreibe Konfiguration" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" -msgstr "Pause" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" +msgstr "Prüfe die Konfiguration" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../lib/preferences.php:272 -msgid "M3U" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "einfache M3U" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" +msgstr "Diese Benutzer-ID ist aktiviert und kann benutzt werden" -#: ../../lib/preferences.php:274 -msgid "PLS" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" -msgstr "Deaktiviert" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" +msgstr "Neueste Alben" -#: ../../lib/preferences.php:332 -msgid "Send on Add" -msgstr "" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" +msgstr "Neueste Interpreten" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" -msgstr "" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" +msgstr "Neueste Genres" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" -msgstr "Voreinstellung" - -#: ../../lib/preferences.php:343 -msgid "Always" -msgstr "Immer" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" +msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" -msgstr "Nicht abspielen" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" +msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" -msgstr "Ist wirklich schlecht" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" +msgstr "Stück(e) von der Wiedergabeliste gelöscht" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" -msgstr "Ist OK" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" +msgstr "Fehler: Kein Schlüsselwort eingegeben" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" -msgstr "Ist wirklich gut" +#: ../../ratings.php:32 +msgid "Rating Updated" +msgstr "Bewertung aktualisiert" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" -msgstr "Ich liebe es!" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" +msgstr "Ihre Bewertung für dieses Objekt wurde aktualisiert" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" -msgstr "Ist wahnsinnig" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" +msgstr "Benutzer deaktiviert, bitte Admin kontaktieren" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" -msgstr "Aus der Hitparade!" +#: ../../login.php:83 +msgid "Unable to create new account" +msgstr "Kann neues Konto nicht erstellen" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "Englisch" +#: ../../login.php:92 +msgid "No local account found" +msgstr "Keine lokales Konto gefunden" -#: ../../lib/general.lib.php:496 -msgid "British English" -msgstr "Britisch Englisch" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" +msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" -msgstr "Türkisch" +#: ../../preferences.php:91 +msgid "Error Update Failed" +msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" -msgstr "Vereinfachtes Chinesisch" +#: ../../preferences.php:96 +msgid "Your Account has been updated" +msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "Ein" +#: ../../update.php:51 +msgid "Ampache Update" +msgstr "Ampache Update" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "Aus" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" +msgstr "Starte Aktualisierung von TAGs" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" -msgstr "Fehler Zugriff verweigert" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" +msgstr "Aktualisierung von den TAGs vollständig" -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "hochladen" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" +msgstr "Zurück" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" -msgstr "Lokal abspielen" +#: ../../artists.php:186 +msgid "Show Artists starting with" +msgstr "Zeige Interpreten mit folgendem Beginn" -#: ../../lib/ui.lib.php:556 -msgid "Random Play" -msgstr "Zufällig Abspielen" +#: ../../playlist.php:57 +msgid "Playlist Created" +msgstr "Wiedergabeliste erstellt" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" -msgstr "Admin-Katalog" +#: ../../playlist.php:57 +msgid " has been created" +msgstr " wurde erstellt" -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" -msgstr "Admin-Benutzer Verwaltung" +#: ../../playlist.php:78 +msgid "Playlist Updated" +msgstr "Wiedergabeliste aktualisiert" -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" -msgstr "Admin-Mail Benutzer" +#: ../../playlist.php:79 +msgid "has been updated and is now" +msgstr "wurde aktualisiert und ist nun" -#: ../../lib/ui.lib.php:584 -msgid "Admin-Manage Access Lists" -msgstr "Admin-Bearbeiten Zugriffslisten" +#: ../../playlist.php:101 +msgid "Playlist Imported" +msgstr "Wiedergabeliste importiert" -#: ../../lib/ui.lib.php:588 -msgid "Admin-Site Preferences" -msgstr "Admin-Seiten Einstellungen" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" +msgstr "Leere Wiedergabelisten gelöscht" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "Admin-Bearbeiten Module" +#: ../../flag.php:45 +msgid "Item Flagged" +msgstr "Eintrag markiert" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" -msgstr "Durchsuche Stücke" +#: ../../flag.php:45 +msgid "The specified item has been flagged" +msgstr "Der gewählte Eintrag wurde markiert" #: ../../albums.php:32 msgid "Album Art Cleared" @@ -3182,117 +3335,53 @@ msgstr "" "Album konnte zur Zeit nicht gefunden werden. Dies kann an einem " "Schreibzugriffsfehler liegen oder die Daten wurden nicht korrekt empfangen" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "Album Cover hinzugefügt" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "Starte Aktualisierung von TAGs" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "Aktualisierung von den TAGs vollständig" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "Zurück" +#: ../../register.php:73 +msgid "Error Captcha Required" +msgstr "Fehler Captcha benötigt" -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" +#: ../../register.php:80 +msgid "Error Captcha Failed" +msgstr "Fehler Captcha fehlgeschlagen" -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" +msgstr "Sie <u>müssen</u> diese Vereinbarung akzeptieren" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" +#: ../../register.php:92 +msgid "You did not enter a username" +msgstr "Sie haben keine Benutzernamen eingegeben" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "Datei" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" +msgstr "Bitte geben Sie Ihren kompletten Namen ein (Vorname Nachname)" -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "Datei hochladen nicht unterstützt." +#: ../../register.php:122 +msgid "You must enter a password" +msgstr "Sie müssen ein Passwort eingeben" -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "Keine Datei hochgeladen" +#: ../../register.php:126 +msgid "Your passwords do not match" +msgstr "Passwort falsch" -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "" -"Ein Problem mit der hochgeladenen Datei wurde festgestellt: %s wurde nicht " -"hochgeladen." +#: ../../register.php:158 +msgid "Error: Insert Failed" +msgstr "Fehler: einfügen fehlgeschlagen" -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" -"Ein Problem mit der hochgeladenen Datei wurde festgestellt: %s ist größer " -"als die maximal erlaubte Größe (%d bytes)." +#: ../../register.php:175 +msgid "Registration Complete" +msgstr "Registrierung komplett" -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -"Ein Problem mit der hochgeladenen Datei wurde festgestellt: %s wurde nur " -"teilweise hochgeladen." - -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "Stück(e) von der Wiedergabeliste gelöscht" - -#: ../../playlist.php:57 -msgid "Playlist Created" -msgstr "Wiedergabeliste erstellt" - -#: ../../playlist.php:57 -msgid " has been created" -msgstr " wurde erstellt" - -#: ../../playlist.php:78 -msgid "Playlist Updated" -msgstr "Wiedergabeliste aktualisiert" - -#: ../../playlist.php:79 -msgid "has been updated and is now" -msgstr "wurde aktualisiert und ist nun" - -#: ../../playlist.php:101 -msgid "Playlist Imported" -msgstr "Wiedergabeliste importiert" - -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" -msgstr "Leere Wiedergabelisten gelöscht" - -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "Benutzer deaktiviert, bitte Admin kontaktieren" - -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "Kann neues Konto nicht erstellen" -#: ../../login.php:96 -msgid "No local account found" -msgstr "Keine lokales Konto gefunden" - -#: ../../search.php:38 -msgid "Error: No Keyword Entered" -msgstr "Fehler: Kein Schlüsselwort eingegeben" - -#: ../../artists.php:186 -msgid "Show Artists starting with" -msgstr "Zeige Interpreten mit folgendem Beginn" +#: ../../democratic.php:80 +msgid "Playlist Cleared" +msgstr "Playlist gelöscht" #: ../../bin/print_tags.inc:66 msgid "" @@ -3312,6 +3401,54 @@ msgstr "" msgid "Filename:" msgstr "Dateiname:" +#~ msgid "No Catalogs Found!" +#~ msgstr "Keine Kataloge gefunden" + +#~ msgid "Play Random" +#~ msgstr "Spiele zufällige Stücke" + +#~ msgid "XML-RPC" +#~ msgstr "XML-RPC" + +#~ msgid "Ampache New User Registration" +#~ msgstr "Ampache neuen Benutzer registrieren" + +#~ msgid "Clear Info" +#~ msgstr "Info löschen" + +#~ msgid "Select Best Guess" +#~ msgstr "Wähle vermutlich besten" + +#~ msgid "Play All Songs By" +#~ msgstr "Spiele alle Stücke von" + +#~ msgid "Play Random Songs By" +#~ msgstr "Spiele Zufallsauswahl von" + +#~ msgid "Find duplicate artists" +#~ msgstr "Doppelte Stücke anzeigen" + +#~ msgid "Minutes" +#~ msgstr "Minuten" + +#~ msgid "Disable Songs" +#~ msgstr "Sperre Stücke" + +#~ msgid "Play Random from Album" +#~ msgstr "Spiele zufällig vom Album" + +#~ msgid "No user with this name registered" +#~ msgstr "Kein Benutzer mit diesem Namen registriert" + +#~ msgid "The validation key used isn't correct." +#~ msgstr "Die Prüfung des Schlüssels ergab dass diese nicht korrekt ist" + +#~ msgid "User activated" +#~ msgstr "Benutzer aktiviert" + +#~ msgid "Error Access Denied" +#~ msgstr "Fehler Zugriff verweigert" + #~ msgid "album's with art" #~ msgstr "Alben mit Cover" @@ -3391,9 +3528,6 @@ msgstr "Dateiname:" #~ msgid "Users" #~ msgstr "Benutzer" -#~ msgid "Mail Users" -#~ msgstr "Mail zu Benutzern" - #~ msgid "Config" #~ msgstr "Konfiguration" diff --git a/locale/en_GB/LC_MESSAGES/messages.po b/locale/en_GB/LC_MESSAGES/messages.po index baefb02a..43e84d04 100644 --- a/locale/en_GB/LC_MESSAGES/messages.po +++ b/locale/en_GB/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ampache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: 2005-07-17 21:58-0000\n" "Last-Translator: David Lodge <dave@cirt.net>\n" "Language-Team: British English <en@li.org>\n" @@ -15,287 +15,1098 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" +msgstr "Session Expired: please log in again at" + +#: ../../lib/class/album.class.php:217 +msgid "Disk" +msgstr "" + +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "Artists" + +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "Various" + +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "Error: Unable to open" + +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "All" + +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "View" + +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 #, fuzzy -msgid "Error Captcha Required" -msgstr "Error Username Required" +msgid "Read" +msgstr "Reason" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "day" + +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "days" + +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "hour" + +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "hours" + +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" +msgstr "Running Remote Sync" + +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "Error: Unable to change to directory" + +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "Error: Unable to get filesize for" + +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "is not readable by ampache" + +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" +msgstr "Starting Catalogue Build" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "Found" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +#, fuzzy +msgid "None" +msgstr "No" + +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" +msgstr "Added Playlist From" + +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" +msgstr "Starting Album Art Search" + +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "Searched" + +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" +msgstr "Catalogue Finished" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "Total Time" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "Total Songs" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "Songs Per Seconds" + +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "Updated" + +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "No Update Needed" + +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "Running Remote Update" + +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" +msgstr "Catalogue Update Finished" + +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "Error" + +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +msgstr "Unable to load XMLRPC library, make sure XML-RPC is enabled" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "Error connecting to" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "Code" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "Reason" + +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "Completed updating remote catalogue(s)" + +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "Added" + +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "Catalogue Clean Done" + +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "files removed" + +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" msgstr "" -#: ../../register.php:131 +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr " FOUND" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "Searching for new Album Art" + +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "You must enter a password" -msgstr "Enter password" +msgid "Update Finished." +msgstr "Catalogue Update Finished" -#: ../../register.php:135 +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Your passwords do not match" -msgstr "Error Passwords don't match" +msgid "Checked" +msgstr "Checking" -#: ../../register.php:139 ../../admin/users.php:100 +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Error Username already exists" +msgid "songs updated." +msgstr "Playlist updated." + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "Title" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "updated to" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "Bitrate" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "Rate" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "Mode" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "Time" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "Track" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "Filesize" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "Artist" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "Album" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "Year" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "Comment" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "Genre" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "Delete" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +#, fuzzy +msgid "Other" +msgstr "other" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "Unknown" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "Now Playing" + +#: ../../lib/class/localplay.class.php:630 +#, fuzzy +msgid "Stopped" +msgstr "Stop" + +#: ../../lib/class/localplay.class.php:633 +#, fuzzy +msgid "Paused" +msgstr "Pause" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 +msgid "Error Username Required" msgstr "Error Username Required" -#: ../../register.php:157 +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 +msgid "Error Passwords don't match" +msgstr "Error Passwords don't match" + +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "Songs" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" +msgstr "Albums" + +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" +msgstr "" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" +msgstr "Manage Users" + +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" +msgstr "" + +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "Playlists" + +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" +msgstr "" + +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 #, fuzzy -msgid "Error: Insert Failed" -msgstr "Error: Insufficient Rights" +msgid "Catalogs" +msgstr "Catalogue" -#: ../../register.php:174 -msgid "Registration Complete" +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" msgstr "" -#: ../../update.php:51 +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" +msgstr "" + +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" +msgstr "" + +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" +msgstr "" + +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" +msgstr "" + +#: ../../lib/rating.lib.php:51 #, fuzzy -msgid "Ampache Update" -msgstr "Ampache Debug" +msgid "Don't Play" +msgstr "Local Play" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" -msgstr "Session Expired: please log in again at" +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "" -#: ../../ratings.php:32 +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "" + +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "" + +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "" + +#: ../../lib/preferences.php:160 +msgid "Enable" +msgstr "Enable" + +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" +msgstr "Disable" + +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" +msgstr "Stream" + +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 #, fuzzy -msgid "Rating Updated" -msgstr "Fast Update" +msgid "Localplay" +msgstr "Local Play" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "M3U" + +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "Simple M3U" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "PLS" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "Asx" + +#: ../../lib/preferences.php:191 +msgid "RAM" msgstr "" -#: ../../admin/flag.php:97 +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:226 #, fuzzy -msgid "Song Updated" -msgstr "Updated" +msgid "Disabled" +msgstr "Disable" -#: ../../admin/flag.php:97 +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "User" + +#: ../../lib/preferences.php:228 +msgid "Manager" +msgstr "" + +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" +msgstr "Admin" + +#: ../../lib/preferences.php:249 +msgid "Send on Add" +msgstr "" + +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" + +#: ../../lib/preferences.php:251 +msgid "Clear on Send" +msgstr "" + +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" +msgstr "" + +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "" + +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "English" + +#: ../../lib/general.lib.php:436 #, fuzzy -msgid "The requested song has been updated" -msgstr "The requested song(s) have been disabled" +msgid "British English" +msgstr "English" -#: ../../admin/flag.php:139 +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "Turkish" + +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "" + +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "On" + +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "Off" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 #, fuzzy -msgid "Album Updated" -msgstr "Updated" +msgid "hours ago" +msgstr "hours" -#: ../../admin/flag.php:181 +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 #, fuzzy -msgid "Artist Updated" -msgstr "Fast Update" +msgid "days ago" +msgstr "days" -#: ../../admin/flag.php:246 +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 #, fuzzy -msgid "Songs Updated" -msgstr "Updated" +msgid "years ago" +msgstr "year" -#: ../../admin/flag.php:254 +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "Home" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "Upload" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "Local Play" + +#: ../../lib/ui.lib.php:487 #, fuzzy -msgid "Flag Removed" -msgstr "files removed" +msgid "Random Play" +msgstr "Random" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" -msgstr "" +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "Playlist" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "Search" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "Preferences" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +#, fuzzy +msgid "Admin-Catalog" +msgstr "Add Catalogue" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" -msgstr "Songs Disabled" +#: ../../lib/ui.lib.php:511 +#, fuzzy +msgid "Admin-Mail Users" +msgstr "Mail Users" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" -msgstr "The requested song(s) have been disabled" +#: ../../lib/ui.lib.php:515 +#, fuzzy +msgid "Admin-Manage Access Lists" +msgstr "Access Lists" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" -msgstr "Songs Enabled" +#: ../../lib/ui.lib.php:519 +#, fuzzy +msgid "Admin-Site Preferences" +msgstr "Admin Preferences" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" -msgstr "The requested song(s) have been enabled" +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" -#: ../../admin/flag.php:305 +#: ../../lib/ui.lib.php:527 #, fuzzy -msgid "Flagged Records" -msgstr "Flagged by" +msgid "Browse Music" +msgstr "Browse" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +#, fuzzy +msgid "Statistics" +msgstr "Catalogue Statistics" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 +msgid "Name" +msgstr "Name" + +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" + +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" +msgstr "" + +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "Password" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "file" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "File uploads not supported." + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "No file uploaded" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "There was a problem with the file upload: No %s was uploaded." + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" +"There was a problem with the file upload: The %s was only partially uploaded." #: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 #, fuzzy msgid "Catalog Updated" msgstr "Catalogue Update Finished" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 #, fuzzy msgid "Catalog Deleted" msgstr "Catalogue Clean Done" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../admin/catalog.php:115 +#: ../../admin/catalog.php:112 #, fuzzy msgid "Songs Removed" msgstr "files removed" -#: ../../admin/catalog.php:118 +#: ../../admin/catalog.php:115 msgid "No Songs Removed" msgstr "" -#: ../../admin/catalog.php:121 +#: ../../admin/catalog.php:118 #, fuzzy msgid "Disabled Songs Processed" msgstr "Show Disabled Songs" -#: ../../admin/catalog.php:141 +#: ../../admin/catalog.php:138 #, fuzzy msgid "Catalog Cleaned" msgstr "Catalogue Clean Done" -#: ../../admin/catalog.php:191 +#: ../../admin/catalog.php:188 #, fuzzy msgid "Catalog Created" msgstr "Catalogue Name" -#: ../../admin/catalog.php:208 +#: ../../admin/catalog.php:205 #, fuzzy msgid "Catalog statistics cleared" msgstr "Catalogue Statistics" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "Now Playing Cleared" msgstr "Now Playing Cleared" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "All now playing data has been cleared" msgstr "All now playing data has been cleared" -#: ../../admin/catalog.php:233 +#: ../../admin/catalog.php:230 #, fuzzy msgid "No Disabled songs found" msgstr "Show Disabled Songs" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 #, fuzzy msgid "Delete Catalog" msgstr "Update Catalogues" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Do you really want to delete this catalog?" msgstr "Do you really want to delete this catalogue?" -#: ../../admin/catalog.php:261 +#: ../../admin/catalog.php:258 msgid "Album Art Search Finished" msgstr "Album Art Search Finished" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 -msgid "Error Username Required" -msgstr "Error Username Required" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "Song Updated" +msgstr "Updated" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 -msgid "Error Passwords don't match" -msgstr "Error Passwords don't match" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "The requested song has been updated" +msgstr "The requested song(s) have been disabled" + +#: ../../admin/flag.php:139 +#, fuzzy +msgid "Album Updated" +msgstr "Updated" + +#: ../../admin/flag.php:181 +#, fuzzy +msgid "Artist Updated" +msgstr "Fast Update" + +#: ../../admin/flag.php:246 +#, fuzzy +msgid "Songs Updated" +msgstr "Updated" + +#: ../../admin/flag.php:254 +#, fuzzy +msgid "Flag Removed" +msgstr "files removed" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "Songs Disabled" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "The requested song(s) have been disabled" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "Songs Enabled" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "The requested song(s) have been enabled" + +#: ../../admin/flag.php:305 +#, fuzzy +msgid "Flagged Records" +msgstr "Flagged by" + +#: ../../admin/users.php:78 msgid "User Updated" msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/users.php:78 msgid "updated" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 +#: ../../admin/users.php:99 ../../register.php:130 +#, fuzzy +msgid "Error Username already exists" +msgstr "Error Username Required" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 #: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 #: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 msgid "Guest" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "User" - -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" -msgstr "Admin" - -#: ../../admin/users.php:119 +#: ../../admin/users.php:118 msgid "New User Added" msgstr "" -#: ../../admin/users.php:124 +#: ../../admin/users.php:123 msgid "User Enabled" msgstr "" -#: ../../admin/users.php:129 +#: ../../admin/users.php:128 msgid "User Disabled" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" -msgstr "Error" - -#: ../../admin/users.php:132 +#: ../../admin/users.php:131 msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../admin/users.php:154 +#: ../../admin/users.php:153 msgid "User Deleted" msgstr "User Deleted" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Delete Error" msgstr "Delete Error" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Unable to delete last Admin User" msgstr "Unable to delete last Admin User" -#: ../../admin/users.php:163 +#: ../../admin/users.php:162 msgid "Deletion Request" msgstr "" -#: ../../admin/users.php:164 +#: ../../admin/users.php:163 msgid "Are you sure you want to permanently delete" msgstr "Are you sure you want to permanently delete" @@ -333,420 +1144,86 @@ msgstr "Delete" msgid "Your Access List Entry has been removed" msgstr "Your Access List Entry has been removed" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "Added" - #: ../../admin/access.php:40 msgid "Your new Access List Entry has been created" msgstr "Your new Access List Entry has been created" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" -msgstr "Updated" - #: ../../admin/access.php:45 #, fuzzy msgid "Access List Entry updated" msgstr "Your Access List Entry has been removed" -#: ../../admin/system.php:64 -msgid "Export Failed" -msgstr "" - -#: ../../admin/mail.php:90 -#, fuzzy -msgid "No Catalogs Found!" -msgstr "Not Found" - -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "Add a Catalogue" - -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "Catalogue Statistics" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "day" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "days" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "hour" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "hours" - -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "Total Users" - -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "Connected Users" - -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "Albums" - -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "Artists" - -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "Songs" - -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "Catalogue Size" - -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "Catalogue Time" - -#: ../../admin/mail.php:260 +#: ../../admin/mail.php:57 #, fuzzy msgid "E-mail Sent" msgstr "E-mail" -#: ../../admin/mail.php:261 +#: ../../admin/mail.php:58 msgid "Your E-mail was successfully sent." msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" - -#: ../../preferences.php:86 -msgid "Error Update Failed" -msgstr "" - -#: ../../preferences.php:91 -msgid "Your Account has been updated" -msgstr "" - -#: ../../flag.php:45 -#, fuzzy -msgid "Item Flagged" -msgstr "Flagged by" - -#: ../../flag.php:45 -msgid "The specified item has been flagged" -msgstr "" - -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -#, fuzzy -msgid "Catalogs" -msgstr "Catalogue" - -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" -msgstr "Name" - -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "Action" - -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" -msgstr "Add" - -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../admin/system.php:64 +msgid "Export Failed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -#, fuzzy -msgid "Clean" -msgstr "clear" - -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "All" - -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "Delete" +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "Play" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -#, fuzzy -msgid "No Catalogs Found" -msgstr "Not Found" - -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -#, fuzzy -msgid "Clean All" -msgstr "Clean All Catalogues" - -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -#, fuzzy -msgid "Verify All" -msgstr "View All" - -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -#, fuzzy -msgid "Add to All" -msgstr "Add to" - -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -#, fuzzy -msgid "Update All" -msgstr "Updated" - -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "Clear Catalogue Stats" - -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" -msgstr "Gather Album Art" - -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "Show Duplicate Songs" - -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" -msgstr "Clear Now Playing" - -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -#, fuzzy -msgid "Generate New Config" -msgstr "Write Configuration" - -#: ../../templates/show_admin_tools.inc.php:93 +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 #, fuzzy -msgid "Preferences Permissions" -msgstr "Preferences" +msgid "Clear Playlist" +msgstr "New Playlist" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -#, fuzzy -msgid "Check for New Version" -msgstr "Check for Configuration" - -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "Select" - -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -#, fuzzy -msgid "Object" -msgstr "Subject" - -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "Flag" - -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" -msgstr "Comment" - -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -#, fuzzy -msgid "Status" -msgstr "Stats" - -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -#, fuzzy -msgid "No Records Found" -msgstr "No Results Found" - -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" -msgstr "Reject" - -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -#, fuzzy -msgid "Update" -msgstr "Updated" - -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -#, fuzzy -msgid "Show All" -msgstr "Show all" - #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "Ampache Installation" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 #, fuzzy msgid "" "This Page handles the installation of the Ampache database and the creation " @@ -758,9 +1235,9 @@ msgstr "" "have the following pre-requisites" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -775,9 +1252,9 @@ msgstr "" "ampache.cfg.dist.php file" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -790,8 +1267,8 @@ msgstr "" "date simply edit /config/ampache.cfg.php" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "Step 1 - Creating and Inserting the Ampache Database" @@ -800,8 +1277,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "Step 2 - Creating the ampache.cfg.php file" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "Step 3 - Setup Initial Account" @@ -819,193 +1296,287 @@ msgid "Create Admin Account" msgstr "Create Account" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "Username" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "Password" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "Create Account" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "Add a Catalogue" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "Catalogue Name" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "Auto-inserted Fields" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "album name" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "artist name" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr "id3 comment" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "genre" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "track number (padded with leading 0)" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "song title" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "year" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "other" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "Path" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" +msgstr "Catalogue Type" + +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "Local" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" +msgstr "Remote" + +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" +msgstr "Filename Pattern" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" +msgstr "Folder Pattern" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "(no leading or ending '/')" + +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" +msgstr "Gather Album Art" + +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "Build Playlists from m3u Files" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "Add Catalogue" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" +msgstr "Increase Volume" + +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "Decrease Volume" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "Volume" + +#: ../../templates/show_localplay_status.inc.php:34 +#, fuzzy +msgid "Repeat" +msgstr "Reject" + +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "Random" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "Add" + +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +#, fuzzy +msgid "Playlist Name" +msgstr "Playlist Type" + +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +#, fuzzy +msgid "# Songs" +msgstr "Songs" + +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "" + +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 #: ../../templates/show_artist_box.inc.php:32 #: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 #: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 #, fuzzy msgid "Actions" msgstr "Action" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" -msgstr "" - -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" -msgstr "" - -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "Title" +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "Edit" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "Artist" +#: ../../templates/show_similar_artists.inc.php:23 +#, fuzzy +msgid "Similar Artists" +msgstr "Artists" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "Album" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" +msgstr "" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "Genre" +#: ../../templates/show_similar_artists.inc.php:66 +#, fuzzy +msgid "Back" +msgstr "Track" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" -msgstr "Bitrate" +#: ../../templates/show_similar_artists.inc.php:77 +#, fuzzy +msgid "Rename selected" +msgstr "Remove Selected Tracks" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "Filename" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "Cancel" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" msgstr "" +#: ../../templates/show_similar_artists.inc.php:152 +#, fuzzy +msgid "Search Again" +msgstr "Search Ampache" + #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 #, fuzzy msgid "Song Title" msgstr "Song title" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "Playlist" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "" @@ -1018,551 +1589,542 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "Unknown" +#: ../../templates/show_user_stats.inc.php:30 +#, fuzzy +msgid "Favorite Artists" +msgstr "Artists" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "Full Name" +#: ../../templates/show_user_stats.inc.php:43 +#, fuzzy +msgid "Favorite Albums" +msgstr "Full Albums" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" -msgstr "" +#: ../../templates/show_user_stats.inc.php:56 +#, fuzzy +msgid "Favorite Songs" +msgstr "Total Songs" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "Last Seen" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "Play Random Selection" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" +msgstr "Item count" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" -msgstr "" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "From genre" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" -msgstr "Track" - -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" -msgstr "Time" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "Type" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" msgstr "" -#: ../../templates/show_big_art.inc.php:29 -#, fuzzy -msgid "Album Art" -msgstr "Find Album Art" - -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" msgstr "" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" -msgstr "Download" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "Full Albums" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "Edit" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" +msgstr "Full Artist" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "Flag Song" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" +msgstr "" -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 +#: ../../templates/show_random.inc.php:76 #, fuzzy -msgid "File" -msgstr "file" +msgid "From catalog" +msgstr "from catalogue" -#: ../../templates/show_flag.inc.php:49 +#: ../../templates/show_random.inc.php:82 #, fuzzy -msgid "Item" -msgstr "Stream" - -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" -msgstr "Reason to flag" - -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" -msgstr "" +msgid "Size Limit" +msgstr "View Limit" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -#, fuzzy -msgid "Other" -msgstr "other" - -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" -msgstr "" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" +msgstr "Starting New Song Search on" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "Found" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "catalogue" -#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_adds_catalog.inc.php:25 #: ../../templates/show_verify_catalog.inc.php:26 #: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 #: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 msgid "Reading" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:26 +#, fuzzy +msgid "Editing Playlist" +msgstr "Edit Playlist" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "Public" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" -msgstr "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/show_playlist_edit.inc.php:40 +#, fuzzy +msgid "Private" +msgstr "Your Private" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +#, fuzzy +msgid "Update" +msgstr "Updated" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" +msgstr "Login" + +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "Remember Me" + +#: ../../templates/show_login_form.inc.php:78 +#, fuzzy +msgid "Register" +msgstr "Register User" + +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "Play Album" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "Action" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" -msgstr "Volume" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" +msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 #, fuzzy -msgid "Repeat" -msgstr "Reject" +msgid "Clean" +msgstr "clear" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "Random" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" +msgstr "" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 +#: ../../templates/show_admin_tools.inc.php:68 #, fuzzy -msgid "Remove" -msgstr "Remote" +msgid "No Catalogs Found" +msgstr "Not Found" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +#, fuzzy +msgid "Clean All" +msgstr "Clean All Catalogues" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" -msgstr "Add Entry" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +#, fuzzy +msgid "Verify All" +msgstr "View All" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "Start Address" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +#, fuzzy +msgid "Add to All" +msgstr "Add to" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "End Address" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +#, fuzzy +msgid "Update All" +msgstr "Updated" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "Level" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "Clear Catalogue Stats" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" -msgstr "Type" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "Show Duplicate Songs" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "Fullname" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "Clear Now Playing" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 #, fuzzy -msgid "Registration Date" -msgstr "Register User" +msgid "Generate New Config" +msgstr "Write Configuration" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 +#: ../../templates/show_admin_tools.inc.php:93 #, fuzzy -msgid "Last Ip" -msgstr "Last Seen" +msgid "Preferences Permissions" +msgstr "Preferences" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "On-line" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" +msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:96 #, fuzzy -msgid "Base Playlist" -msgstr "New Playlist" +msgid "Check for New Version" +msgstr "Check for Configuration" -#: ../../templates/show_manage_democratic.inc.php:58 -#, fuzzy -msgid "Create New Playlist" -msgstr "Create a new playlist" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" +msgstr "Flag Song" -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 #, fuzzy -msgid "Rating" -msgstr "Editing" - -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "Song" +msgid "File" +msgstr "file" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr "Step 2 - Creating the Ampache.cfg.php file" +#: ../../templates/show_flag.inc.php:49 +#, fuzzy +msgid "Item" +msgstr "Stream" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" -msgstr "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the configuration file. Please put the downloaded configuration " -"file in /config" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" +msgstr "Reason to flag" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" -msgstr "Web Path" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "Flag" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" -msgstr "Desired Database Name" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" +msgstr "Browse" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "MySQL Hostname" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "Logout" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "MySQL Username" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" +msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "MySQL Password" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" +msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" -msgstr "Write Configuration" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" +msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "Ampache.cfg.php Exists" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" +msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "Ampache.cfg.php Configured?" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" +msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" -msgstr "Check for Configuration" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "Full Name" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" -msgstr "Editing existing User" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "Last Seen" -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" -msgstr "E-mail" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" +msgstr "" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" -msgstr "Confirm Password" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" +msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "User Access Level" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" +msgstr "" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "Update User" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" +msgstr "" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "Various" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "Albums by" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "Search" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "Show All Songs By" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" +msgstr "Update from tags" + +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 #, fuzzy -msgid "Create" -msgstr "Bitrate" +msgid "Rating" +msgstr "Editing" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "Continue" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +#, fuzzy +msgid "Current Playlist" +msgstr "New Playlist" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "Cancel" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +#, fuzzy +msgid "No Records Found" +msgstr "No Results Found" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "Home" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "Preference" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "Browse" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "Value" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -#, fuzzy -msgid "Localplay" -msgstr "Local Play" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "Apply to All" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "Preferences" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" -msgstr "Logout" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "Updating the" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" +msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "Catalogue" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" +msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." -msgstr "songs found checking tag information." +#: ../../templates/header.inc.php:71 +msgid "Log out" +msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:56 #, fuzzy -msgid "Current Playlist" -msgstr "New Playlist" +msgid "User Agreement" +msgstr "User Deleted" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" -msgstr "" +#: ../../templates/show_user_registration.inc.php:65 +#, fuzzy +msgid "I Accept" +msgstr "Accept" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" -msgstr "" +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" +msgstr "E-mail" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "Play" +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" +msgstr "Confirm Password" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" -msgstr "Next" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "Register User" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" +#: ../../templates/show_edit_album.inc.php:23 +#, fuzzy +msgid "Edit Album" +msgstr "Album" + +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_edit_album.inc.php:47 #, fuzzy -msgid "Version" -msgstr "PHP Version" +msgid "Update Album" +msgstr "Gather Album Art" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" -msgstr "Disable" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" +msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" #: ../../templates/show_install.inc.php:54 msgid "" @@ -1574,10 +2136,25 @@ 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:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr "Step 2 - Creating the Ampache.cfg.php file" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "Desired Database Name" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "MySQL Hostname" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "MySQL Administrative Username" @@ -1607,288 +2184,81 @@ msgstr "" msgid "Insert Database" msgstr "Insert Database" -#: ../../templates/show_similar_artists.inc.php:23 -#, fuzzy -msgid "Similar Artists" -msgstr "Artists" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" -msgstr "" - -#: ../../templates/show_similar_artists.inc.php:66 -#, fuzzy -msgid "Back" -msgstr "Track" - -#: ../../templates/show_similar_artists.inc.php:77 -#, fuzzy -msgid "Rename selected" -msgstr "Remove Selected Tracks" - -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_similar_artists.inc.php:152 -#, fuzzy -msgid "Search Again" -msgstr "Search Ampache" - #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "Create a new playlist" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 #, fuzzy -msgid "Rename" -msgstr "Username" +msgid "Create" +msgstr "Bitrate" + +#: ../../templates/show_edit_song.inc.php:23 +#, fuzzy +msgid "Edit Song" +msgstr "Editing" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "" - -#: ../../templates/show_rename_artist.inc.php:37 -#, fuzzy -msgid "Update id3 tags" -msgstr "Update from tags" - -#: ../../templates/show_playlist.inc.php:30 -#, fuzzy -msgid "Normalize Tracks" -msgstr "Total Tracks" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" -msgstr "Play Random" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "Cover" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "Year" - -#: ../../templates/show_preference_admin.inc.php:22 -#, fuzzy -msgid "Preference Administration" -msgstr "Preferences" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "Preference" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "hours ago" -msgstr "hours" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "days ago" -msgstr "days" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "years ago" -msgstr "year" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "Search Ampache" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "" - -#: ../../templates/show_search.inc.php:72 -#, fuzzy -msgid "Played" -msgstr "Play" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "Yes" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "No" - -#: ../../templates/show_search.inc.php:80 -#, fuzzy -msgid "Min Bitrate" -msgstr "Bitrate" - -#: ../../templates/show_search.inc.php:95 -msgid "One Star" -msgstr "" - -#: ../../templates/show_search.inc.php:96 +#: ../../templates/show_edit_song.inc.php:88 #, fuzzy -msgid "Two Stars" -msgstr "Total Users" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "" +msgid "Update Song" +msgstr "Update Catalogues" -#: ../../templates/show_search.inc.php:111 +#: ../../templates/show_edit_catalog.inc.php:22 #, fuzzy -msgid "Method" -msgstr "Mode" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "" - -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" -msgstr "" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" -msgstr "" +msgid "Settings for" +msgstr "Settings for catalogue in" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" +msgstr "Filename pattern" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" +msgstr "Save Catalogue Settings" #: ../../templates/show_edit_access.inc.php:22 msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 #, fuzzy msgid "ACL Type" msgstr "Type" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 #, fuzzy msgid "Stream Access" msgstr "Stream" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1896,420 +2266,382 @@ msgstr "" msgid "Start IP Address" msgstr "Start IP Address" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "End IP Address" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 #, fuzzy msgid "Remote Key" msgstr "Remote" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "View" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -#, fuzzy -msgid "Read" -msgstr "Reason" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "Level" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -#, fuzzy -msgid "Ampache New User Registration" -msgstr "Ampache Installation" - -#: ../../templates/show_user_registration.inc.php:69 -#, fuzzy -msgid "User Agreement" -msgstr "User Deleted" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "Play Album" -#: ../../templates/show_user_registration.inc.php:79 -#, fuzzy -msgid "I Accept" -msgstr "Accept" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" +msgstr "Song" -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "Register User" - -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" -msgstr "Login" - -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "Remember Me" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" +msgstr "" -#: ../../templates/show_login_form.inc.php:78 -#, fuzzy -msgid "Register" -msgstr "Register User" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" +msgstr "" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "Most Popular Artists" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +#, fuzzy +msgid "Show All" +msgstr "Show all" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "Most Popular Albums" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "Date" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 #, fuzzy -msgid "Most Popular Genres" -msgstr "Most Popular Songs" - -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "Most Popular Songs" +msgid "IP Address" +msgstr "End IP Address" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" -msgstr "" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" +msgstr "Importing a Playlist from a File" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" -msgstr "" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "Filename" -#: ../../templates/show_edit_song.inc.php:23 -#, fuzzy -msgid "Edit Song" -msgstr "Editing" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "Playlist Type" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" -msgstr "" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" +msgstr "Import Playlist" -#: ../../templates/show_edit_song.inc.php:88 +#: ../../templates/show_genre.inc.php:29 #, fuzzy -msgid "Update Song" -msgstr "Update Catalogues" - -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" -msgstr "" +msgid "Viewing" +msgstr "View" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_mail_users.inc.php:23 #, fuzzy msgid "Send E-mail to Users" msgstr "Mail Users" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "Mail to" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "Catalogue Statistics" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "Most Popular Albums" + +#: ../../templates/show_mail_users.inc.php:53 #, fuzzy msgid "Latest Artist Additions" msgstr "Newest Artist Additions" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "Most Popular Artists" + +#: ../../templates/show_mail_users.inc.php:64 #, fuzzy msgid "Latest Album Additions" msgstr "Newest Album Additions" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "Most Popular Songs" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 #, fuzzy msgid "Disabled Songs" msgstr "Show Disabled Songs" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 #, fuzzy msgid "Most Popular Threshold in days" msgstr "Most Popular Songs" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "Subject" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "Message" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "Send Mail" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "Adding a New User" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "Add User" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "Add Access for a Host" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_add_access.inc.php:82 -#, fuzzy -msgid "Create ACL" -msgstr "Create Account" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "Value" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "Apply to All" - -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:26 -#, fuzzy -msgid "Editing Playlist" -msgstr "Edit Playlist" - -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "Public" - -#: ../../templates/show_playlist_edit.inc.php:40 +#: ../../templates/show_preference_admin.inc.php:22 #, fuzzy -msgid "Private" -msgstr "Your Private" +msgid "Preference Administration" +msgstr "Preferences" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "Find Duplicates" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" +msgstr "Editing existing User" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "Search Type" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "User Access Level" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "Artist and Title" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "Update User" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "Artist, Album and Title" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "Connected Users" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" -msgstr "" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "Total Users" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "Starting Album Art Search" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "Catalogue Size" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "Searched" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "Catalogue Time" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 +#: ../../templates/show_duplicates.inc.php:22 #, fuzzy -msgid "None" -msgstr "No" - -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "Albums by" - -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "Show All Songs By" +msgid "Duplicate Songs" +msgstr "Show Duplicate Songs" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "Play All Songs By" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" +msgstr "Size" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "Play Random Songs By" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "Continue" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" -msgstr "Update from tags" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "Select" -#: ../../templates/show_artist_box.inc.php:39 +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 #, fuzzy -msgid "Find duplicate artists" -msgstr "Find Duplicates" - -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" -msgstr "" - -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "Play Random Selection" +msgid "Object" +msgstr "Subject" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" -msgstr "Item count" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +#, fuzzy +msgid "Status" +msgstr "Stats" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "From genre" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" +msgstr "Reject" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "Full Albums" +#: ../../templates/show_song.inc.php:49 +msgid "Label" +msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" -msgstr "Full Artist" +#: ../../templates/show_song.inc.php:53 +msgid "Language" +msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" msgstr "" -#: ../../templates/show_random.inc.php:59 -#, fuzzy -msgid "From catalog" -msgstr "from catalogue" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:65 +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 #, fuzzy -msgid "Size Limit" -msgstr "View Limit" +msgid "Rename" +msgstr "Username" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" msgstr "" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" -msgstr "Now Playing" - -#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:37 #, fuzzy -msgid "Viewing" -msgstr "View" +msgid "Update id3 tags" +msgstr "Update from tags" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" -msgstr "" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "Find Duplicates" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" -msgstr "Account" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "Search Type" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" -msgstr "" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "Artist and Title" -#: ../../templates/sidebar_preferences.inc.php:32 -#, fuzzy -msgid "Modules" -msgstr "Mode" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "Artist, Album and Title" -#: ../../templates/sidebar_preferences.inc.php:34 +#: ../../templates/show_playlist.inc.php:30 #, fuzzy -msgid "Localplay Modules" -msgstr "Local Play Control" +msgid "Normalize Tracks" +msgstr "Total Tracks" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" +msgstr "Next" + +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" +msgstr "" + +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +#, fuzzy +msgid "Base Playlist" +msgstr "New Playlist" + +#: ../../templates/show_manage_democratic.inc.php:58 +#, fuzzy +msgid "Create New Playlist" +msgstr "Create a new playlist" + #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" msgstr "" @@ -2327,88 +2659,29 @@ msgstr "Local Play" msgid "Get Art" msgstr "Get Art" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "Ampache Debug" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" +msgstr "" -#: ../../templates/show_edit_catalog.inc.php:22 +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 #, fuzzy -msgid "Settings for" -msgstr "Settings for catalogue in" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "Auto-inserted Fields" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "album name" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "artist name" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "id3 comment" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "genre" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "track number (padded with leading 0)" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "song title" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "year" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "other" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "Catalogue Type" +msgid "Version" +msgstr "PHP Version" -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "Filename pattern" - -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "Folder Pattern" - -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" -msgstr "(no leading or ending '/')" - -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" -msgstr "Save Catalogue Settings" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" +msgstr "" #: ../../templates/show_democratic_playlist.inc.php:38 #, fuzzy @@ -2429,46 +2702,27 @@ msgstr "" msgid "Add Vote" msgstr "" -#: ../../templates/show_edit_artist.inc.php:23 +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 #, fuzzy -msgid "Edit Artist" -msgstr "Artist" - -#: ../../templates/show_edit_artist.inc.php:41 -msgid "Update Artist" -msgstr "" - -#: ../../templates/show_edit_album.inc.php:23 -#, fuzzy -msgid "Edit Album" -msgstr "Album" - -#: ../../templates/show_edit_album.inc.php:47 -#, fuzzy -msgid "Update Album" -msgstr "Gather Album Art" +msgid "Most Popular Genres" +msgstr "Most Popular Songs" -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" msgstr "" -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "Stream" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "" +#: ../../templates/show_edit_artist.inc.php:23 +#, fuzzy +msgid "Edit Artist" +msgstr "Artist" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" +#: ../../templates/show_edit_artist.inc.php:41 +msgid "Update Artist" msgstr "" #: ../../templates/show_play_selected.inc.php:28 @@ -2492,185 +2746,226 @@ msgstr "Remove Selected Tracks" msgid "Add to" msgstr "Add to" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "Adding a New User" + +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "Add User" + +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "Cover" + +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "Date" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "Reset Album Art" + +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "Find Album Art" + +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" +msgstr "Download" + +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "Fullname" + +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 #, fuzzy -msgid "IP Address" -msgstr "End IP Address" +msgid "Registration Date" +msgstr "Register User" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +#, fuzzy +msgid "Last Ip" +msgstr "Last Seen" + +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "On-line" + +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" -msgstr "Catalogue Name" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" +msgstr "Updating the" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "Local" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "Catalogue" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" -msgstr "Remote" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." +msgstr "songs found checking tag information." -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" -msgstr "Filename Pattern" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" +msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "Build Playlists from m3u Files" +#: ../../templates/show_big_art.inc.php:29 +#, fuzzy +msgid "Album Art" +msgstr "Find Album Art" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "Add Catalogue" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -#, fuzzy -msgid "Clear Playlist" -msgstr "New Playlist" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" +msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" -msgstr "Importing a Playlist from a File" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" +msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "Playlist Type" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "Mail Users" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" -msgstr "Import Playlist" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "Prev" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -#, fuzzy -msgid "Favorite Artists" -msgstr "Artists" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" +msgstr "Account" -#: ../../templates/show_user_stats.inc.php:43 -#, fuzzy -msgid "Favorite Albums" -msgstr "Full Albums" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" +msgstr "" -#: ../../templates/show_user_stats.inc.php:56 +#: ../../templates/sidebar_preferences.inc.php:32 #, fuzzy -msgid "Favorite Songs" -msgstr "Total Songs" +msgid "Modules" +msgstr "Mode" -#: ../../templates/show_list_duplicates.inc.php:26 +#: ../../templates/sidebar_preferences.inc.php:34 #, fuzzy -msgid "Duplicate Songs" -msgstr "Show Duplicate Songs" +msgid "Localplay Modules" +msgstr "Local Play Control" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" -msgstr "Size" - -#: ../../templates/show_list_duplicates.inc.php:96 +#: ../../templates/show_account.inc.php:40 #, fuzzy -msgid "Disable Songs" -msgstr "Show Disabled Songs" - -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" -msgstr "" +msgid "New Password" +msgstr "Password" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" -msgstr "" +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "Clear Stats" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 +#: ../../templates/show_account.inc.php:64 #, fuzzy -msgid "Statistics" -msgstr "Catalogue Statistics" +msgid "Update Account" +msgstr "Create Account" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" -msgstr "" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" +msgstr "Editing" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" -msgstr "" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "preferences" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" -msgstr "" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" +msgstr "Update Preferences" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" -msgstr "" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" +msgstr "Ampache Debug" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2682,14 +2977,6 @@ msgstr "Updating the" msgid "Checking" msgstr "Checking" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "Starting New Song Search on" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "catalogue" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2784,6 +3071,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "Ampache.cfg.php Exists" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2794,6 +3086,11 @@ msgstr "" "ampache.cfg.php is not in the correct locations or\n" "\tit is not currently readable by your webserver." +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "Ampache.cfg.php Configured?" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2812,487 +3109,335 @@ msgstr "" "This attempts to connect to your database using the values from your ampache." "cfg.php" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" - -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "Search Ampache" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" msgstr "" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "Editing" - -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "preferences" - -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "Update Preferences" - -#: ../../templates/show_account.inc.php:40 -#, fuzzy -msgid "New Password" -msgstr "Password" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "Clear Stats" - -#: ../../templates/show_account.inc.php:64 +#: ../../templates/show_search.inc.php:72 #, fuzzy -msgid "Update Account" -msgstr "Create Account" +msgid "Played" +msgstr "Play" -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "Prev" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "Yes" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "No" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:80 +#, fuzzy +msgid "Min Bitrate" +msgstr "Bitrate" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" msgstr "" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" +#: ../../templates/show_search.inc.php:96 +#, fuzzy +msgid "Two Stars" +msgstr "Total Users" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "Play Random from Album" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "Reset Album Art" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "Find Album Art" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_search.inc.php:105 +msgid "AND" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -#, fuzzy -msgid "Playlist Name" -msgstr "Playlist Type" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 +#: ../../templates/show_search.inc.php:111 #, fuzzy -msgid "# Songs" -msgstr "Songs" +msgid "Method" +msgstr "Mode" -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" msgstr "" -#: ../../activate.php:42 -msgid "No user with this name registered" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../activate.php:46 -msgid "The validation key used isn't correct." +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" msgstr "" -#: ../../activate.php:51 -#, fuzzy -msgid "User activated" -msgstr "User Deleted" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../democratic.php:80 -#, fuzzy -msgid "Playlist Cleared" -msgstr "Now Playing Cleared" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../lib/class/flag.class.php:280 -msgid "Approved" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/flag.class.php:281 -msgid "Pending" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" -msgstr "updated to" - -#: ../../lib/class/song.class.php:341 -msgid "Rate" -msgstr "Rate" - -#: ../../lib/class/song.class.php:345 -msgid "Mode" -msgstr "Mode" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" +msgstr "Add Entry" -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "Filesize" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "Start Address" -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" -msgstr "Manage Users" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "End Address" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "Playlists" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "Error: Unable to open" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" -msgstr "Error: Unable to change to directory" - -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "Error: Unable to get filesize for" - -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "is not readable by ampache" - -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" -msgstr "Starting Catalogue Build" - -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" -msgstr "Running Remote Sync" - -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" -msgstr "Added Playlist From" - -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" -msgstr "Catalogue Finished" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "Total Time" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "Total Songs" - -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" -msgstr "Songs Per Seconds" - -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" -msgstr "No Update Needed" - -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" -msgstr "Running Remote Update" - -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" -msgstr "Catalogue Update Finished" - -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" -msgstr "Unable to load XMLRPC library, make sure XML-RPC is enabled" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "Error connecting to" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" -msgstr "Code" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "Add Access for a Host" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" -msgstr "Reason" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" +msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" -msgstr "Completed updating remote catalogue(s)" +#: ../../templates/show_add_access.inc.php:84 +#, fuzzy +msgid "Create ACL" +msgstr "Create Account" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" -msgstr "Catalogue Clean Done" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" +msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" -msgstr "files removed" +#: ../../templates/show_disabled_songs.inc.php:65 +#, fuzzy +msgid "Remove" +msgstr "Remote" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the configuration file. Please put the downloaded configuration " +"file in /config" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr " FOUND" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "Searching for new Album Art" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" +msgstr "" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Update Finished." -msgstr "Catalogue Update Finished" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" +msgstr "Web Path" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Checked" -msgstr "Checking" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "MySQL Username" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "songs updated." -msgstr "Playlist updated." +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "MySQL Password" -#: ../../lib/class/localplay.class.php:647 -#, fuzzy -msgid "Stopped" -msgstr "Stop" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" +msgstr "Write Configuration" -#: ../../lib/class/localplay.class.php:650 -#, fuzzy -msgid "Paused" -msgstr "Pause" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" +msgstr "Check for Configuration" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" -msgstr "Enable" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" +msgstr "" -#: ../../lib/preferences.php:272 -msgid "M3U" -msgstr "M3U" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" +msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "Simple M3U" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" +msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" -msgstr "PLS" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" +msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" -msgstr "Asx" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" +msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:310 -#, fuzzy -msgid "Disabled" -msgstr "Disable" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" +msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../localplay.php:73 ../../localplay.php:81 +#, fuzzy +msgid "Song(s) Removed from Playlist" +msgstr "Server Playlist" + +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../lib/rating.lib.php:51 +#: ../../ratings.php:32 #, fuzzy -msgid "Don't Play" -msgstr "Local Play" +msgid "Rating Updated" +msgstr "Fast Update" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" msgstr "" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../preferences.php:91 +msgid "Error Update Failed" msgstr "" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "English" +#: ../../preferences.php:96 +msgid "Your Account has been updated" +msgstr "" -#: ../../lib/general.lib.php:496 +#: ../../update.php:51 #, fuzzy -msgid "British English" -msgstr "English" - -#: ../../lib/general.lib.php:502 -msgid "Turkish" -msgstr "Turkish" +msgid "Ampache Update" +msgstr "Ampache Debug" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" -msgstr "" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" +msgstr "Starting Update from Tags" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "On" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" +msgstr "Update From Tags Complete" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "Off" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" +msgstr "Return" -#: ../../lib/ui.lib.php:92 +#: ../../artists.php:186 #, fuzzy -msgid "Error Access Denied" -msgstr "User Access Level" - -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "Upload" - -#: ../../lib/ui.lib.php:553 -msgid "Local Play" -msgstr "Local Play" +msgid "Show Artists starting with" +msgstr "<u>S</u>how artists starting with" -#: ../../lib/ui.lib.php:556 +#: ../../playlist.php:57 #, fuzzy -msgid "Random Play" -msgstr "Random" +msgid "Playlist Created" +msgstr "Playlist updated." -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 +#: ../../playlist.php:57 +msgid " has been created" +msgstr "" + +#: ../../playlist.php:78 #, fuzzy -msgid "Admin-Catalog" -msgstr "Add Catalogue" +msgid "Playlist Updated" +msgstr "Playlist updated." -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/ui.lib.php:580 +#: ../../playlist.php:101 #, fuzzy -msgid "Admin-Mail Users" -msgstr "Mail Users" +msgid "Playlist Imported" +msgstr "Playlist updated." -#: ../../lib/ui.lib.php:584 +#: ../../playlist.php:130 #, fuzzy -msgid "Admin-Manage Access Lists" -msgstr "Access Lists" +msgid "Empty Playlists Deleted" +msgstr "Import Playlist" -#: ../../lib/ui.lib.php:588 +#: ../../flag.php:45 #, fuzzy -msgid "Admin-Site Preferences" -msgstr "Admin Preferences" +msgid "Item Flagged" +msgstr "Flagged by" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" -#: ../../lib/ui.lib.php:596 -#, fuzzy -msgid "Browse Music" -msgstr "Browse" - #: ../../albums.php:32 msgid "Album Art Cleared" msgstr "Album Art Cleared" @@ -3315,121 +3460,59 @@ msgstr "" "Album Art could not be located at this time. This may be due to Amazon being " "busy, or the album not being present in their collection." -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 #, fuzzy msgid "Album Art Inserted" msgstr "Album Art Cleared" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "Starting Update from Tags" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "Update From Tags Complete" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "Return" - -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" +#: ../../register.php:73 +#, fuzzy +msgid "Error Captcha Required" +msgstr "Error Username Required" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "file" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "File uploads not supported." - -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "No file uploaded" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "There was a problem with the file upload: No %s was uploaded." - -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -"There was a problem with the file upload: The %s was only partially uploaded." - -#: ../../localplay.php:72 ../../localplay.php:80 -#, fuzzy -msgid "Song(s) Removed from Playlist" -msgstr "Server Playlist" - -#: ../../playlist.php:57 -#, fuzzy -msgid "Playlist Created" -msgstr "Playlist updated." -#: ../../playlist.php:57 -msgid " has been created" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../playlist.php:78 +#: ../../register.php:122 #, fuzzy -msgid "Playlist Updated" -msgstr "Playlist updated." - -#: ../../playlist.php:79 -msgid "has been updated and is now" -msgstr "" +msgid "You must enter a password" +msgstr "Enter password" -#: ../../playlist.php:101 +#: ../../register.php:126 #, fuzzy -msgid "Playlist Imported" -msgstr "Playlist updated." +msgid "Your passwords do not match" +msgstr "Error Passwords don't match" -#: ../../playlist.php:130 +#: ../../register.php:158 #, fuzzy -msgid "Empty Playlists Deleted" -msgstr "Import Playlist" - -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "" - -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "" +msgid "Error: Insert Failed" +msgstr "Error: Insufficient Rights" -#: ../../login.php:96 -msgid "No local account found" +#: ../../register.php:175 +msgid "Registration Complete" msgstr "" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../artists.php:186 +#: ../../democratic.php:80 #, fuzzy -msgid "Show Artists starting with" -msgstr "<u>S</u>how artists starting with" +msgid "Playlist Cleared" +msgstr "Now Playing Cleared" #: ../../bin/print_tags.inc:66 msgid "" @@ -3445,6 +3528,42 @@ msgstr "" msgid "Filename:" msgstr "Filename" +#, fuzzy +#~ msgid "No Catalogs Found!" +#~ msgstr "Not Found" + +#~ msgid "Play Random" +#~ msgstr "Play Random" + +#, fuzzy +#~ msgid "Ampache New User Registration" +#~ msgstr "Ampache Installation" + +#~ msgid "Play All Songs By" +#~ msgstr "Play All Songs By" + +#~ msgid "Play Random Songs By" +#~ msgstr "Play Random Songs By" + +#, fuzzy +#~ msgid "Find duplicate artists" +#~ msgstr "Find Duplicates" + +#, fuzzy +#~ msgid "Disable Songs" +#~ msgstr "Show Disabled Songs" + +#~ msgid "Play Random from Album" +#~ msgstr "Play Random from Album" + +#, fuzzy +#~ msgid "User activated" +#~ msgstr "User Deleted" + +#, fuzzy +#~ msgid "Error Access Denied" +#~ msgstr "User Access Level" + #~ msgid "Album Art Already Found" #~ msgstr "Album Art Already Found" @@ -3509,9 +3628,6 @@ msgstr "Filename" #~ msgid "Users" #~ msgstr "Users" -#~ msgid "Mail Users" -#~ msgstr "Mail Users" - #, fuzzy #~ msgid "Config" #~ msgstr "Write Configuration" @@ -3902,12 +4018,6 @@ msgstr "Filename" #~ msgid "Playback" #~ msgstr "Playback" -#~ msgid "Increase Volume" -#~ msgstr "Increase Volume" - -#~ msgid "Decrease Volume" -#~ msgstr "Decrease Volume" - #~ msgid "Clear queue" #~ msgstr "Clear queue" diff --git a/locale/es_ES/LC_MESSAGES/messages.po b/locale/es_ES/LC_MESSAGES/messages.po index 0134d84e..ee33b91d 100644 --- a/locale/es_ES/LC_MESSAGES/messages.po +++ b/locale/es_ES/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,723 +16,1208 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" msgstr "" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/album.class.php:217 +msgid "Disk" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "Artistas" + +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "Varios" + +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "Error: No puede abrir" + +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "Todo" + +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "Mirar" + +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +#, fuzzy +msgid "Read" +msgstr "Al azar" + +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "dÃa" + +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "dÃas" + +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "hora" + +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "horas" + +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" msgstr "" -#: ../../register.php:131 -msgid "You must enter a password" +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" msgstr "" -#: ../../register.php:135 -msgid "Your passwords do not match" +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "Error: No puede conseguir el tamaño de" + +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "no puede estar leido por Ampache" + +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" msgstr "" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" -msgstr "Error: Este usuario ya existe" +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "Encontrado" -#: ../../register.php:157 -msgid "Error: Insert Failed" +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +#, fuzzy +msgid "None" +msgstr "No" + +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" msgstr "" -#: ../../register.php:174 -msgid "Registration Complete" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" msgstr "" -#: ../../update.php:51 -#, fuzzy -msgid "Ampache Update" -msgstr "Actualización rápida" +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "Buscado" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" msgstr "" -#: ../../ratings.php:32 -msgid "Rating Updated" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "Tiempo en total" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "Canciónes en total" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" msgstr "" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" msgstr "" -#: ../../admin/flag.php:97 -#, fuzzy -msgid "Song Updated" -msgstr "TÃtulo de la canción" +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" msgstr "" -#: ../../admin/flag.php:139 -#, fuzzy -msgid "Album Updated" -msgstr "Nombre del álbum" +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "" -#: ../../admin/flag.php:181 -#, fuzzy -msgid "Artist Updated" -msgstr "Actualización rápida" +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +msgstr "" -#: ../../admin/flag.php:246 -#, fuzzy -msgid "Songs Updated" -msgstr "Actualización rápida" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "Error conectando a" -#: ../../admin/flag.php:254 -#, fuzzy -msgid "Flag Removed" -msgstr "Marcar la selección" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "Codigo" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" msgstr "" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "Agregado" + +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" msgstr "" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" msgstr "" -#: ../../admin/flag.php:305 -#, fuzzy -msgid "Flagged Records" -msgstr "Comentado por" +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr " ENCONTRADO" -#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 -#, fuzzy -msgid "Catalog Updated" -msgstr "Actualización rápida" +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "Buscando nuevo arte de álbum" -#: ../../admin/catalog.php:106 +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Catalog Deleted" -msgstr "Tamaño del catálogo" +msgid "Update Finished." +msgstr "Actualizar el usuario" -#: ../../admin/catalog.php:106 -msgid "The Catalog and all associated records have been deleted" +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" msgstr "" -#: ../../admin/catalog.php:115 -msgid "Songs Removed" +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." msgstr "" -#: ../../admin/catalog.php:118 -msgid "No Songs Removed" +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" msgstr "" -#: ../../admin/catalog.php:121 -msgid "Disabled Songs Processed" +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "TÃtulo" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" msgstr "" -#: ../../admin/catalog.php:141 -#, fuzzy -msgid "Catalog Cleaned" -msgstr "Nombre del catálogo" +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "" -#: ../../admin/catalog.php:191 +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "Tiempo" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "Tamaño del archivo" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "Artista" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "Ãlbum" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "Año" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "Género" + +#: ../../lib/class/flag.class.php:280 #, fuzzy -msgid "Catalog Created" -msgstr "Tamaño del catálogo" +msgid "Approved" +msgstr "Modo" -#: ../../admin/catalog.php:208 +#: ../../lib/class/flag.class.php:281 #, fuzzy -msgid "Catalog statistics cleared" -msgstr "EstadÃsticas del catálogo" +msgid "Pending" +msgstr "Añadiendo" -#: ../../admin/catalog.php:223 -msgid "Now Playing Cleared" -msgstr "" +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "Borrar" -#: ../../admin/catalog.php:223 -msgid "All now playing data has been cleared" +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" msgstr "" -#: ../../admin/catalog.php:233 -msgid "No Disabled songs found" +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" msgstr "" -#: ../../admin/catalog.php:242 +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 #, fuzzy -msgid "Delete Catalog" -msgstr "Actualizar los catálogos" +msgid "Other" +msgstr "otro" -#: ../../admin/catalog.php:242 -msgid "Do you really want to delete this catalog?" -msgstr "¿Confirmas que quiere borrar este catálogo?" +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "Desconocido" -#: ../../admin/catalog.php:261 -msgid "Album Art Search Finished" -msgstr "Búsqueda de arte de álbum acabado" +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "" + +#: ../../lib/class/localplay.class.php:633 +#, fuzzy +msgid "Paused" +msgstr "Ya tocado" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 msgid "Error Username Required" msgstr "" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 msgid "Error Passwords don't match" msgstr "" -#: ../../admin/users.php:79 -msgid "User Updated" +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "Canciónes" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" +msgstr "Ãlbumes" + +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +#, fuzzy +msgid "Genres" +msgstr "Género" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" msgstr "" -#: ../../admin/users.php:79 -msgid "updated" +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 -#: ../../templates/show_preference_admin.inc.php:41 -#: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 -msgid "Guest" +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "Listas de reproducción" + +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "Usuario" +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +#, fuzzy +msgid "Catalogs" +msgstr "Catálogo" -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" msgstr "" -#: ../../admin/users.php:119 -msgid "New User Added" +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" msgstr "" -#: ../../admin/users.php:124 -msgid "User Enabled" +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" msgstr "" -#: ../../admin/users.php:129 -msgid "User Disabled" +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" msgstr "" -#: ../../admin/users.php:132 -msgid "Unable to Disabled last Administrator" +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" msgstr "" -#: ../../admin/users.php:154 -msgid "User Deleted" -msgstr "Usuario borrado" +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "Horrible" -#: ../../admin/users.php:157 -msgid "Delete Error" -msgstr "Error de borrar" +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "Está bien" -#: ../../admin/users.php:157 -msgid "Unable to delete last Admin User" -msgstr "No puede borrar el último usuario administrador" +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "Me gusta" -#: ../../admin/users.php:163 -msgid "Deletion Request" +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "¡Me encanta!" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "¡Totalmente loco!" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "¡Super chévere!" + +#: ../../lib/preferences.php:160 +msgid "Enable" msgstr "" -#: ../../admin/users.php:164 -msgid "Are you sure you want to permanently delete" +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" msgstr "" -#: ../../admin/modules.php:38 -msgid "Install Failed, Controller Error" +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" msgstr "" -#: ../../admin/modules.php:54 ../../admin/modules.php:92 +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 #, fuzzy -msgid "Are you sure you want to remove this plugin?" -msgstr "¿Está seguro que quiere borrar esta lista?" +msgid "Localplay" +msgstr "Local" -#: ../../admin/modules.php:66 ../../admin/modules.php:111 -msgid "Plugin Deactivated" +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" msgstr "" -#: ../../admin/modules.php:85 -msgid "Plugin Activated" -msgstr "" +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "M3U" -#: ../../admin/modules.php:120 -msgid "Plugins" +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "M3U Simple" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "PLS" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "Asx" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "RAM" + +#: ../../lib/preferences.php:192 +msgid "XSPF" msgstr "" -#: ../../admin/modules.php:126 -msgid "Localplay Controllers" +#: ../../lib/preferences.php:226 +msgid "Disabled" msgstr "" -#: ../../admin/access.php:35 -msgid "Deleted" -msgstr "Borrado" +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "Usuario" -#: ../../admin/access.php:35 -msgid "Your Access List Entry has been removed" +#: ../../lib/preferences.php:228 +msgid "Manager" msgstr "" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "Agregado" - -#: ../../admin/access.php:40 -msgid "Your new Access List Entry has been created" +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" +#: ../../lib/preferences.php:249 +msgid "Send on Add" msgstr "" -#: ../../admin/access.php:45 -#, fuzzy -msgid "Access List Entry updated" -msgstr "Listas de acceso" +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" -#: ../../admin/system.php:64 -msgid "Export Failed" +#: ../../lib/preferences.php:251 +msgid "Clear on Send" msgstr "" -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" msgstr "" -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "Añadir un catálogo" +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "" -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "EstadÃsticas del catálogo" +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "Inglés" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "dÃa" +#: ../../lib/general.lib.php:436 +msgid "British English" +msgstr "Inglés de Bretaña" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "dÃas" +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "hora" +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "Chino simplificado" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "horas" +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "Encender" -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "Usuarios en total" +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "Apagar" -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "Usuarios conectados" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "" -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "Ãlbumes" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "minutes ago" +msgstr "Minutos" -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "Artistas" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "hours ago" +msgstr "horas" -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "Canciónes" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "days ago" +msgstr "dÃas" -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "Tamaño del catálogo" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "" -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "Tiempo del catálogo" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "" -#: ../../admin/mail.php:260 +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 #, fuzzy -msgid "E-mail Sent" -msgstr "Correo" +msgid "years ago" +msgstr "año" -#: ../../admin/mail.php:261 -msgid "Your E-mail was successfully sent." +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "Subir" -#: ../../preferences.php:86 -msgid "Error Update Failed" +#: ../../lib/ui.lib.php:484 +msgid "Local Play" msgstr "" -#: ../../preferences.php:91 -msgid "Your Account has been updated" -msgstr "" +#: ../../lib/ui.lib.php:487 +#, fuzzy +msgid "Random Play" +msgstr "Al azar" -#: ../../flag.php:45 +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "Lista" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "Buscar" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "Preferencias" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 #, fuzzy -msgid "Item Flagged" -msgstr "Comentado por" +msgid "Admin-Catalog" +msgstr "Añadir catálogo" -#: ../../flag.php:45 -msgid "The specified item has been flagged" +#: ../../lib/ui.lib.php:507 +#, fuzzy +msgid "Admin-User Management" +msgstr "Nombre de usuario" + +#: ../../lib/ui.lib.php:511 +#, fuzzy +msgid "Admin-Mail Users" +msgstr "Mandar un correo a los usuarios" + +#: ../../lib/ui.lib.php:515 +#, fuzzy +msgid "Admin-Manage Access Lists" +msgstr "Listas de aceso" + +#: ../../lib/ui.lib.php:519 +#, fuzzy +msgid "Admin-Site Preferences" +msgstr "Preferencias del Admin" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" msgstr "" -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 #, fuzzy -msgid "Catalogs" -msgstr "Catálogo" +msgid "Statistics" +msgstr "EstadÃsticas del catálogo" +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_admin_tools.inc.php:33 #: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 #: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_edit_access.inc.php:26 #: ../../templates/show_plugins.inc.php:32 #: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 #: ../../templates/show_live_streams.inc.php:36 #: ../../templates/show_live_streams.inc.php:53 #: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 msgid "Name" msgstr "Nombre" -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "Acción" +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" msgstr "" -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +#, fuzzy +msgid "Recently Played" +msgstr "Menos tocado" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "Contraseña" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "archivo" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "" + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "No archivo subido" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "HabÃa una problema con subir el archivo: No %s fue subido." + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" +"HabÃa una problema con subir el archivo: El %s fue más grande que el tamaño " +"máximo permitido (%d bytes)." + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" +"HabÃa una problema con subir el archivo: El %s fue subido parcialmente." + +#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 #, fuzzy -msgid "Clean" -msgstr "Borrar la información" +msgid "Catalog Updated" +msgstr "Actualización rápida" -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "Todo" +#: ../../admin/catalog.php:103 +#, fuzzy +msgid "Catalog Deleted" +msgstr "Tamaño del catálogo" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "Borrar" +#: ../../admin/catalog.php:103 +msgid "The Catalog and all associated records have been deleted" +msgstr "" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../admin/catalog.php:112 +msgid "Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../admin/catalog.php:115 +msgid "No Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 +#: ../../admin/catalog.php:118 +msgid "Disabled Songs Processed" +msgstr "" + +#: ../../admin/catalog.php:138 #, fuzzy -msgid "No Catalogs Found" -msgstr "No encontrado" +msgid "Catalog Cleaned" +msgstr "Nombre del catálogo" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 +#: ../../admin/catalog.php:188 #, fuzzy -msgid "Clean All" -msgstr "Limpiar todo(s) catálogo(s)" +msgid "Catalog Created" +msgstr "Tamaño del catálogo" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 +#: ../../admin/catalog.php:205 #, fuzzy -msgid "Verify All" -msgstr "Ver todos" +msgid "Catalog statistics cleared" +msgstr "EstadÃsticas del catálogo" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 +#: ../../admin/catalog.php:220 +msgid "Now Playing Cleared" +msgstr "" + +#: ../../admin/catalog.php:220 +msgid "All now playing data has been cleared" +msgstr "" + +#: ../../admin/catalog.php:230 +msgid "No Disabled songs found" +msgstr "" + +#: ../../admin/catalog.php:239 #, fuzzy -msgid "Add to All" -msgstr "Añadir a" +msgid "Delete Catalog" +msgstr "Actualizar los catálogos" -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 +#: ../../admin/catalog.php:239 +msgid "Do you really want to delete this catalog?" +msgstr "¿Confirmas que quiere borrar este catálogo?" + +#: ../../admin/catalog.php:258 +msgid "Album Art Search Finished" +msgstr "Búsqueda de arte de álbum acabado" + +#: ../../admin/flag.php:97 #, fuzzy -msgid "Update All" -msgstr "Actualizar perfil" +msgid "Song Updated" +msgstr "TÃtulo de la canción" -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "Borrar las estadÃsticas del catálogo" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" +msgstr "" -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" -msgstr "Recolectar arte del álbum" +#: ../../admin/flag.php:139 +#, fuzzy +msgid "Album Updated" +msgstr "Nombre del álbum" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../admin/flag.php:181 +#, fuzzy +msgid "Artist Updated" +msgstr "Actualización rápida" + +#: ../../admin/flag.php:246 +#, fuzzy +msgid "Songs Updated" +msgstr "Actualización rápida" + +#: ../../admin/flag.php:254 +#, fuzzy +msgid "Flag Removed" +msgstr "Marcar la selección" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "Mostrar las canciónes duplicados" +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "" -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" +#: ../../admin/flag.php:289 +msgid "Songs Disabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:93 +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "" + +#: ../../admin/flag.php:305 #, fuzzy -msgid "Preferences Permissions" -msgstr "Preferencias" +msgid "Flagged Records" +msgstr "Comentado por" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../admin/users.php:78 +msgid "User Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../admin/users.php:78 +msgid "updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "Error: Este usuario ya existe" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 +#: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 +#: ../../templates/show_add_user.inc.php:74 +msgid "Guest" msgstr "" -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "Seleccionar" +#: ../../admin/users.php:118 +msgid "New User Added" +msgstr "" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -#, fuzzy -msgid "Object" -msgstr "Subjeto" +#: ../../admin/users.php:123 +msgid "User Enabled" +msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "Bandera" +#: ../../admin/users.php:128 +msgid "User Disabled" +msgstr "" -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" +#: ../../admin/users.php:131 +msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" +#: ../../admin/users.php:153 +msgid "User Deleted" +msgstr "Usuario borrado" + +#: ../../admin/users.php:156 +msgid "Delete Error" +msgstr "Error de borrar" + +#: ../../admin/users.php:156 +msgid "Unable to delete last Admin User" +msgstr "No puede borrar el último usuario administrador" + +#: ../../admin/users.php:162 +msgid "Deletion Request" msgstr "" -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 +#: ../../admin/users.php:163 +msgid "Are you sure you want to permanently delete" +msgstr "" + +#: ../../admin/modules.php:38 +msgid "Install Failed, Controller Error" +msgstr "" + +#: ../../admin/modules.php:54 ../../admin/modules.php:92 #, fuzzy -msgid "No Records Found" -msgstr "No se encontraron resultados" +msgid "Are you sure you want to remove this plugin?" +msgstr "¿Está seguro que quiere borrar esta lista?" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" +#: ../../admin/modules.php:66 ../../admin/modules.php:111 +msgid "Plugin Deactivated" msgstr "" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../admin/modules.php:85 +msgid "Plugin Activated" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 +#: ../../admin/modules.php:120 +msgid "Plugins" +msgstr "" + +#: ../../admin/modules.php:126 +msgid "Localplay Controllers" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Deleted" +msgstr "Borrado" + +#: ../../admin/access.php:35 +msgid "Your Access List Entry has been removed" +msgstr "" + +#: ../../admin/access.php:40 +msgid "Your new Access List Entry has been created" +msgstr "" + +#: ../../admin/access.php:45 #, fuzzy -msgid "Update" -msgstr "Actualizar ID3" +msgid "Access List Entry updated" +msgstr "Listas de acceso" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 +#: ../../admin/mail.php:57 #, fuzzy -msgid "Show All" -msgstr "Mostrar todo" +msgid "E-mail Sent" +msgstr "Correo" + +#: ../../admin/mail.php:58 +msgid "Your E-mail was successfully sent." +msgstr "" + +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "" + +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "Toca" + +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" + +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +#, fuzzy +msgid "Clear Playlist" +msgstr "Nueva lista" + +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "" + +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "No hay suficiente información" + +#: ../../templates/rightbar.inc.php:104 +msgid "More" +msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "Instalación de Ampache" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -743,9 +1228,9 @@ msgstr "" "que tiene los requisitos siguientes." #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -759,9 +1244,9 @@ msgstr "" "config/ampache.cfg.dist.php" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -770,8 +1255,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" @@ -780,8 +1265,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "" @@ -796,192 +1281,281 @@ msgid "Create Admin Account" msgstr "" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "Contraseña" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "Crear una cuenta" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "Añadir un catálogo" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "nombre del álbum" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "nombre del artista" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "género" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "tÃtulo de la canción" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "año" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "otro" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "Local" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_localplay.inc.php:30 -#: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 -msgid "Actions" -msgstr "Acciónes" +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" +msgstr "" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "TÃtulo" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "Artista" +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" +msgstr "Recolectar arte del álbum" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "Añadir catálogo" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" +msgstr "Aumentar volumen" + +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "Disminuir volumen" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "Volumen" + +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "Al azar" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 #: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "Ãlbum" +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "Género" +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" +msgstr "Nombre de la lista" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" +msgstr "Numero de canciónes" + +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "Dueño" + +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_album.inc.php:43 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 +msgid "Actions" +msgstr "Acciónes" + +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "Nombre del archivo" +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_similar_artists.inc.php:23 +#, fuzzy +msgid "Similar Artists" +msgstr "Artistas" + +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" +msgstr "" + +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" msgstr "" +#: ../../templates/show_similar_artists.inc.php:77 +#, fuzzy +msgid "Rename selected" +msgstr "Tocar la selección" + +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../templates/show_similar_artists.inc.php:91 +#, fuzzy +msgid "Advanced Options" +msgstr "Agregado" + +#: ../../templates/show_similar_artists.inc.php:152 +#, fuzzy +msgid "Search Again" +msgstr "Buscar" + #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 #, fuzzy msgid "Song Title" msgstr "TÃtulo de la canción" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "Lista" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "" @@ -994,540 +1568,532 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "Desconocido" - -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "Nombre entero" +#: ../../templates/show_user_stats.inc.php:30 +#, fuzzy +msgid "Favorite Artists" +msgstr "Artistas" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" -msgstr "" +#: ../../templates/show_user_stats.inc.php:43 +#, fuzzy +msgid "Favorite Albums" +msgstr "Ãlbumes enteros" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "Último visto" +#: ../../templates/show_user_stats.inc.php:56 +#, fuzzy +msgid "Favorite Songs" +msgstr "Canciónes en total" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "Tocar una canción al azar" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" -msgstr "" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "Del género" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" -msgstr "" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" +msgstr "Longitud" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -#, fuzzy -msgid "Recently Played" -msgstr "Menos tocado" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" +msgstr "Sin lÃmites" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" -msgstr "Tiempo" - -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" -msgstr "No hay suficiente información" - -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" -msgstr "Arte del álbum" - -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" -msgstr "Haga click para cerrar la ventana" - -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" -msgstr "Bajar" - -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "Tipo" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "Marcar cancin." +#: ../../templates/show_random.inc.php:65 +msgid "Standard" +msgstr "Estándar" -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -#, fuzzy -msgid "File" -msgstr "archivo" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" +msgstr "Menos tocado" -#: ../../templates/show_flag.inc.php:49 -msgid "Item" -msgstr "" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "Ãlbumes enteros" -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" msgstr "" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" -msgstr "" +#: ../../templates/show_random.inc.php:76 +#, fuzzy +msgid "From catalog" +msgstr "del catálogo" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 +#: ../../templates/show_random.inc.php:82 #, fuzzy -msgid "Other" -msgstr "otro" +msgid "Size Limit" +msgstr "LÃmite" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" +msgstr "Ponerlos en el queue" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "Encontrado" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "catálogo" -#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_adds_catalog.inc.php:25 #: ../../templates/show_verify_catalog.inc.php:26 #: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 #: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 msgid "Reading" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:26 +#, fuzzy +msgid "Editing Playlist" +msgstr "Cambia la lista de reproducción" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "Público" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:40 +#, fuzzy +msgid "Private" +msgstr "Tu privado" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +#, fuzzy +msgid "Update" +msgstr "Actualizar ID3" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "Tocar el álbum" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "Recordarme" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" -msgstr "Volumen" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" +msgstr "Registrar" -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "Al azar" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "Acción" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 #, fuzzy -msgid "Remove" -msgstr "Cambiar el nombre" +msgid "Clean" +msgstr "Borrar la información" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "Dirección de empezar" +#: ../../templates/show_admin_tools.inc.php:68 +#, fuzzy +msgid "No Catalogs Found" +msgstr "No encontrado" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "Dirección de acabar" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +#, fuzzy +msgid "Clean All" +msgstr "Limpiar todo(s) catálogo(s)" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "Nivel" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +#, fuzzy +msgid "Verify All" +msgstr "Ver todos" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +#, fuzzy +msgid "Add to All" +msgstr "Añadir a" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" -msgstr "Tipo" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +#, fuzzy +msgid "Update All" +msgstr "Actualizar perfil" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "Nombre entero" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "Borrar las estadÃsticas del catálogo" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "Fecha de registro" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" +msgstr "" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -#, fuzzy -msgid "Last Ip" -msgstr "Último visto" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "Mostrar las canciónes duplicados" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "En linea" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:93 #, fuzzy -msgid "Base Playlist" -msgstr "Nueva lista" - -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "Crear nueva lista" +msgid "Preferences Permissions" +msgstr "Preferencias" -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 -msgid "Rating" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" msgstr "" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" +msgstr "Marcar cancin." + +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +#, fuzzy +msgid "File" +msgstr "archivo" + +#: ../../templates/show_flag.inc.php:49 +msgid "Item" msgstr "" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "Bandera" + +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "Nombre del servidor MySQL" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "Nombre del usuario de MySQL" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" +msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "Contraseña de MySQL" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" +msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "Nombre entero" + +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "Último visto" + +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" msgstr "" -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" -msgstr "Correo" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" +msgstr "" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "Permisos de aceso del usuario" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "Ãlbumes por" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "Actualizar el usuario" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "Mostrar todas las canciónes por" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "Varios" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" +msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "Buscar" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" +msgstr "" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 +msgid "Rating" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 #, fuzzy -msgid "Create" -msgstr "Crear una cuenta" +msgid "Current Playlist" +msgstr "Crear nueva lista" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "Seguir" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +#, fuzzy +msgid "No Records Found" +msgstr "No se encontraron resultados" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "Cancelar" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "Preferencia" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "Valor" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "Aplicar a todos" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -#, fuzzy -msgid "Localplay" -msgstr "Local" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "Preferencias" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "descripción" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "Catálogo" - -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." +#: ../../templates/header.inc.php:71 +msgid "Log out" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -#, fuzzy -msgid "Current Playlist" -msgstr "Crear nueva lista" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" +msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" msgstr "" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "Toca" +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" +msgstr "Correo" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "Registrar usuario" + +#: ../../templates/show_edit_album.inc.php:23 #, fuzzy -msgid "Description" -msgstr "descripción" +msgid "Edit Album" +msgstr "Ãlbum" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" +msgstr "" + +#: ../../templates/show_edit_album.inc.php:47 #, fuzzy -msgid "Version" -msgstr "Versión de PHP" +msgid "Update Album" +msgstr "Recolectar arte del álbum" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" #: ../../templates/show_install.inc.php:54 @@ -1540,10 +2106,25 @@ 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:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr "" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "Nombre del servidor MySQL" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "Nombre administrativo de MySQL" @@ -1572,255 +2153,49 @@ msgstr "" msgid "Insert Database" msgstr "Insertar una base de datos" -#: ../../templates/show_similar_artists.inc.php:23 -#, fuzzy -msgid "Similar Artists" -msgstr "Artistas" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" -msgstr "" - -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_similar_artists.inc.php:77 -#, fuzzy -msgid "Rename selected" -msgstr "Tocar la selección" - -#: ../../templates/show_similar_artists.inc.php:91 -#, fuzzy -msgid "Advanced Options" -msgstr "Agregado" - -#: ../../templates/show_similar_artists.inc.php:152 -#, fuzzy -msgid "Search Again" -msgstr "Buscar" - #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "Crear una lista nueva" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" -msgstr "Cambiar el nombre" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +#, fuzzy +msgid "Create" +msgstr "Crear una cuenta" + +#: ../../templates/show_edit_song.inc.php:23 +#, fuzzy +msgid "Edit Song" +msgstr "Numero de canciónes" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "O" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "" - -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" -msgstr "" - -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" -msgstr "" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" -msgstr "Toca al azar" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "Portada" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "Año" - -#: ../../templates/show_preference_admin.inc.php:22 -#, fuzzy -msgid "Preference Administration" -msgstr "Preferencias" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "Preferencia" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "minutes ago" -msgstr "Minutos" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "hours ago" -msgstr "horas" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "days ago" -msgstr "dÃas" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "years ago" -msgstr "año" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "Buscar" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "Palabras claves" - -#: ../../templates/show_search.inc.php:72 -msgid "Played" -msgstr "Ya tocado" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "SÃ" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "No" - -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" -msgstr "Bitrate mÃnimo" - -#: ../../templates/show_search.inc.php:95 -#, fuzzy -msgid "One Star" -msgstr "Dueño" - -#: ../../templates/show_search.inc.php:96 -#, fuzzy -msgid "Two Stars" -msgstr "Usuarios en total" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "Operador" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "Y" - -#: ../../templates/show_search.inc.php:111 -msgid "Method" -msgstr "Metód" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "No exacto" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "Exacto" - -#: ../../templates/show_search.inc.php:118 +#: ../../templates/show_edit_song.inc.php:88 #, fuzzy -msgid "Maximum Results" -msgstr "Resultados máximos" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "Sin lÃmites" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" +msgid "Update Song" +msgstr "Actualizar los catálogos" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" msgstr "" #: ../../templates/show_edit_access.inc.php:22 @@ -1828,29 +2203,30 @@ msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 #, fuzzy msgid "ACL Type" msgstr "Tipo" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 #, fuzzy msgid "Stream Access" msgstr "Aceso" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1858,412 +2234,374 @@ msgstr "" msgid "Start IP Address" msgstr "Primera dirección de IP" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 #, fuzzy msgid "End IP Address" msgstr "Dirección de acabar" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "Mirar" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -#, fuzzy -msgid "Read" -msgstr "Al azar" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "Nivel" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" -msgstr "" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "Tocar el álbum" -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" msgstr "" -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" -msgstr "Borrar la información" - -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "Registrar usuario" - -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "Recordarme" - -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" -msgstr "Registrar" - -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "Los artistas más populares" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" +msgstr "" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "Los álbumes más populares" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +#, fuzzy +msgid "Show All" +msgstr "Mostrar todo" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" -msgstr "Los géneros más populares" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "Fecha" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "Las canciónes más populares" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +#, fuzzy +msgid "IP Address" +msgstr "Primera dirección de IP" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" -msgstr "" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "Nombre del archivo" -#: ../../templates/show_edit_song.inc.php:23 -#, fuzzy -msgid "Edit Song" -msgstr "Numero de canciónes" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "Tipo de lista" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_edit_song.inc.php:88 -#, fuzzy -msgid "Update Song" -msgstr "Actualizar los catálogos" - -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -#, fuzzy -msgid "Genres" -msgstr "Género" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" +msgstr "Mirando" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_mail_users.inc.php:23 #, fuzzy msgid "Send E-mail to Users" msgstr "Mandar un correo a los usuarios" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "Mandar a" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "EstadÃsticas del catálogo" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "Los álbumes más populares" + +#: ../../templates/show_mail_users.inc.php:53 #, fuzzy msgid "Latest Artist Additions" msgstr "Los artistas más nuevos" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "Los artistas más populares" + +#: ../../templates/show_mail_users.inc.php:64 #, fuzzy msgid "Latest Album Additions" msgstr "Los álbumes más nuevos" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "Las canciónes más populares" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 #, fuzzy msgid "Disabled Songs" msgstr "Canciónes duplicadas" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 #, fuzzy msgid "Most Popular Threshold in days" msgstr "Las canciónes más populares" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "Subjeto" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "Mensaje" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "Mandar un correo" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "Añadiendo un usuario nuevo" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "Añadir un usuario" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" +msgstr "" -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "Añadir aceso para un servidor" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" +msgstr "" -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_add_access.inc.php:82 +#: ../../templates/show_preference_admin.inc.php:22 #, fuzzy -msgid "Create ACL" -msgstr "Crear una cuenta" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "Valor" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "Aplicar a todos" +msgid "Preference Administration" +msgstr "Preferencias" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" -msgstr "descripción" - -#: ../../templates/show_playlist_edit.inc.php:26 -#, fuzzy -msgid "Editing Playlist" -msgstr "Cambia la lista de reproducción" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "Permisos de aceso del usuario" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "Público" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "Actualizar el usuario" -#: ../../templates/show_playlist_edit.inc.php:40 -#, fuzzy -msgid "Private" -msgstr "Tu privado" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "Usuarios conectados" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "Usuarios en total" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "Tipo de búsqueda" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "Tamaño del catálogo" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "Artista y TÃtulo" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "Tiempo del catálogo" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "Artista, Ãlbum y TÃtulo" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" +msgstr "Canciónes duplicadas" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" msgstr "" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "Seguir" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "Buscado" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "Seleccionar" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 #, fuzzy -msgid "None" -msgstr "No" - -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "Ãlbumes por" - -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "Mostrar todas las canciónes por" - -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "Tocar todas las canciónes por" +msgid "Object" +msgstr "Subjeto" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "Tocar al azar las canciónes por" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" +msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" msgstr "" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" msgstr "" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "Tocar una canción al azar" +#: ../../templates/show_song.inc.php:49 +msgid "Label" +msgstr "" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" +#: ../../templates/show_song.inc.php:53 +msgid "Language" msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "Del género" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" +msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" -msgstr "Estándar" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" -msgstr "Menos tocado" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "Cambiar el nombre" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "Ãlbumes enteros" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" -msgstr "Minutos" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "" -#: ../../templates/show_random.inc.php:59 -#, fuzzy -msgid "From catalog" -msgstr "del catálogo" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "Tipo de búsqueda" -#: ../../templates/show_random.inc.php:65 -#, fuzzy -msgid "Size Limit" -msgstr "LÃmite" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "Artista y TÃtulo" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" -msgstr "Ponerlos en el queue" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "Artista, Ãlbum y TÃtulo" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" msgstr "" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" -msgstr "Mirando" - -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" -msgstr "Cuenta" - -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -#, fuzzy -msgid "Localplay Modules" -msgstr "Control local de reproducción" - -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" -msgstr "" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +#, fuzzy +msgid "Base Playlist" +msgstr "Nueva lista" + +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" +msgstr "Crear nueva lista" #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" @@ -2282,86 +2620,29 @@ msgstr "Local" msgid "Get Art" msgstr "" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "nombre del álbum" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "nombre del artista" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "género" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "tÃtulo de la canción" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "año" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "otro" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +#, fuzzy +msgid "Description" +msgstr "descripción" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +#, fuzzy +msgid "Version" +msgstr "Versión de PHP" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" msgstr "" #: ../../templates/show_democratic_playlist.inc.php:38 @@ -2383,6 +2664,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "Los géneros más populares" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "" + #: ../../templates/show_edit_artist.inc.php:23 #, fuzzy msgid "Edit Artist" @@ -2392,39 +2686,6 @@ msgstr "Artista" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -#, fuzzy -msgid "Edit Album" -msgstr "Ãlbum" - -#: ../../templates/show_edit_album.inc.php:47 -#, fuzzy -msgid "Update Album" -msgstr "Recolectar arte del álbum" - -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" -msgstr "" - -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" -msgstr "" - -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "" - -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" -msgstr "" - #: ../../templates/show_play_selected.inc.php:28 msgid "Play Selected" msgstr "Tocar la selección" @@ -2445,182 +2706,223 @@ msgstr "" msgid "Add to" msgstr "Añadir a" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "Añadiendo un usuario nuevo" + +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "Añadir un usuario" + +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "Portada" + +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "Fecha" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "" + +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "Encontrar arte del álbum" + +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" +msgstr "Bajar" + +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "Nombre entero" + +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" +msgstr "Fecha de registro" + +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 #, fuzzy -msgid "IP Address" -msgstr "Primera dirección de IP" +msgid "Last Ip" +msgstr "Último visto" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "En linea" + +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "Local" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "Catálogo" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" +msgstr "Arte del álbum" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "Añadir catálogo" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "Haga click para cerrar la ventana" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -#, fuzzy -msgid "Clear Playlist" -msgstr "Nueva lista" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" +msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "Tipo de lista" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "Mandar un correo a los usuarios" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" msgstr "" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -#, 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:56 -#, fuzzy -msgid "Favorite Songs" -msgstr "Canciónes en total" - -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" -msgstr "Canciónes duplicadas" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" +msgstr "Cuenta" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" -msgstr "Longitud" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:96 +#: ../../templates/sidebar_preferences.inc.php:34 #, fuzzy -msgid "Disable Songs" -msgstr "Canciónes duplicadas" +msgid "Localplay Modules" +msgstr "Control local de reproducción" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" -msgstr "" +#: ../../templates/show_account.inc.php:40 +#, fuzzy +msgid "New Password" +msgstr "Contraseña" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "Borrar las estadÃsticas" + +#: ../../templates/show_account.inc.php:64 #, fuzzy -msgid "Statistics" -msgstr "EstadÃsticas del catálogo" +msgid "Update Account" +msgstr "Crear una cuenta" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" msgstr "" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" -msgstr "" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "preferencias" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2631,14 +2933,6 @@ msgstr "" msgid "Checking" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "catálogo" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2718,6 +3012,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2725,6 +3024,11 @@ msgid "" "\tit is not currently readable by your webserver." msgstr "" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2741,477 +3045,323 @@ msgid "" "cfg.php" msgstr "" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "Buscar" -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" +msgstr "Palabras claves" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" +#: ../../templates/show_search.inc.php:72 +msgid "Played" +msgstr "Ya tocado" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "SÃ" -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "preferencias" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "No" -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" +msgstr "Bitrate mÃnimo" -#: ../../templates/show_account.inc.php:40 +#: ../../templates/show_search.inc.php:95 #, fuzzy -msgid "New Password" -msgstr "Contraseña" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "Borrar las estadÃsticas" +msgid "One Star" +msgstr "Dueño" -#: ../../templates/show_account.inc.php:64 +#: ../../templates/show_search.inc.php:96 #, fuzzy -msgid "Update Account" -msgstr "Crear una cuenta" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "" +msgid "Two Stars" +msgstr "Usuarios en total" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" +msgstr "Operador" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" +#: ../../templates/show_search.inc.php:105 +msgid "AND" +msgstr "Y" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" +#: ../../templates/show_search.inc.php:111 +msgid "Method" +msgstr "Metód" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" +msgstr "No exacto" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" +msgstr "Exacto" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "Tocar al azar del álbum" +#: ../../templates/show_search.inc.php:118 +#, fuzzy +msgid "Maximum Results" +msgstr "Resultados máximos" -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "Encontrar arte del álbum" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "Nombre de la lista" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "Numero de canciónes" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "Dueño" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "No hay usuario registrado con este nombre" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../activate.php:51 -msgid "User activated" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../democratic.php:80 -#, fuzzy -msgid "Playlist Cleared" -msgstr "Lista creada" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" msgstr "" -#: ../../lib/class/flag.class.php:280 -#, fuzzy -msgid "Approved" -msgstr "Modo" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "Dirección de empezar" -#: ../../lib/class/flag.class.php:281 -#, fuzzy -msgid "Pending" -msgstr "Añadiendo" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "Dirección de acabar" -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "Añadir aceso para un servidor" + +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/song.class.php:341 -msgid "Rate" +#: ../../templates/show_add_access.inc.php:84 +#, fuzzy +msgid "Create ACL" +msgstr "Crear una cuenta" + +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/song.class.php:345 -msgid "Mode" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "Tamaño del archivo" +#: ../../templates/show_disabled_songs.inc.php:65 +#, fuzzy +msgid "Remove" +msgstr "Cambiar el nombre" -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "Listas de reproducción" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "Error: No puede abrir" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" msgstr "" -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "Error: No puede conseguir el tamaño de" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "Nombre del usuario de MySQL" -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "no puede estar leido por Ampache" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "Contraseña de MySQL" -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" msgstr "" -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" msgstr "" -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "Tiempo en total" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "Canciónes en total" - -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" msgstr "" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "Error conectando a" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" -msgstr "Codigo" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr " ENCONTRADO" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "Buscando nuevo arte de álbum" - -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Update Finished." -msgstr "Actualizar el usuario" - -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" +#: ../../ratings.php:32 +msgid "Rating Updated" msgstr "" -#: ../../lib/class/localplay.class.php:650 -#, fuzzy -msgid "Paused" -msgstr "Ya tocado" - -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/preferences.php:272 -msgid "M3U" -msgstr "M3U" - -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "M3U Simple" - -#: ../../lib/preferences.php:274 -msgid "PLS" -msgstr "PLS" - -#: ../../lib/preferences.php:275 -msgid "Asx" -msgstr "Asx" - -#: ../../lib/preferences.php:276 -msgid "RAM" -msgstr "RAM" - -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../preferences.php:91 +msgid "Error Update Failed" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../preferences.php:96 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" -msgstr "" +#: ../../update.php:51 +#, fuzzy +msgid "Ampache Update" +msgstr "Actualización rápida" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" -msgstr "Horrible" - -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" -msgstr "Está bien" - -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" -msgstr "Me gusta" - -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" -msgstr "¡Me encanta!" - -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" -msgstr "¡Totalmente loco!" - -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" -msgstr "¡Super chévere!" - -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "Inglés" - -#: ../../lib/general.lib.php:496 -msgid "British English" -msgstr "Inglés de Bretaña" - -#: ../../lib/general.lib.php:502 -msgid "Turkish" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" -msgstr "Chino simplificado" +#: ../../artists.php:186 +msgid "Show Artists starting with" +msgstr "Mostrar los artistas que empiezan con" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "Encender" +#: ../../playlist.php:57 +msgid "Playlist Created" +msgstr "Lista creada" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "Apagar" +#: ../../playlist.php:57 +msgid " has been created" +msgstr " ha sido creada" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" +#: ../../playlist.php:78 +msgid "Playlist Updated" msgstr "" -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "Subir" - -#: ../../lib/ui.lib.php:553 -msgid "Local Play" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/ui.lib.php:556 -#, fuzzy -msgid "Random Play" -msgstr "Al azar" - -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -#, fuzzy -msgid "Admin-Catalog" -msgstr "Añadir catálogo" - -#: ../../lib/ui.lib.php:576 -#, fuzzy -msgid "Admin-User Management" -msgstr "Nombre de usuario" - -#: ../../lib/ui.lib.php:580 +#: ../../playlist.php:101 #, fuzzy -msgid "Admin-Mail Users" -msgstr "Mandar un correo a los usuarios" +msgid "Playlist Imported" +msgstr "Lista creada" -#: ../../lib/ui.lib.php:584 +#: ../../playlist.php:130 #, fuzzy -msgid "Admin-Manage Access Lists" -msgstr "Listas de aceso" +msgid "Empty Playlists Deleted" +msgstr "Lista borrada" -#: ../../lib/ui.lib.php:588 +#: ../../flag.php:45 #, fuzzy -msgid "Admin-Site Preferences" -msgstr "Preferencias del Admin" - -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "" +msgid "Item Flagged" +msgstr "Comentado por" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" #: ../../albums.php:32 @@ -3233,117 +3383,55 @@ msgid "" "error, or the file is not received corectly." msgstr "" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "archivo" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "No archivo subido" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "HabÃa una problema con subir el archivo: No %s fue subido." - -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." +#: ../../register.php:122 +msgid "You must enter a password" msgstr "" -"HabÃa una problema con subir el archivo: El %s fue más grande que el tamaño " -"máximo permitido (%d bytes)." -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +#: ../../register.php:126 +msgid "Your passwords do not match" msgstr "" -"HabÃa una problema con subir el archivo: El %s fue subido parcialmente." -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" +#: ../../register.php:158 +msgid "Error: Insert Failed" msgstr "" -#: ../../playlist.php:57 -msgid "Playlist Created" -msgstr "Lista creada" - -#: ../../playlist.php:57 -msgid " has been created" -msgstr " ha sido creada" - -#: ../../playlist.php:78 -msgid "Playlist Updated" +#: ../../register.php:175 +msgid "Registration Complete" msgstr "" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../playlist.php:101 +#: ../../democratic.php:80 #, fuzzy -msgid "Playlist Imported" +msgid "Playlist Cleared" msgstr "Lista creada" -#: ../../playlist.php:130 -#, fuzzy -msgid "Empty Playlists Deleted" -msgstr "Lista borrada" - -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "" - -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "" - -#: ../../login.php:96 -msgid "No local account found" -msgstr "" - -#: ../../search.php:38 -msgid "Error: No Keyword Entered" -msgstr "" - -#: ../../artists.php:186 -msgid "Show Artists starting with" -msgstr "Mostrar los artistas que empiezan con" - #: ../../bin/print_tags.inc:66 msgid "" "[print_tags.php.inc]\n" @@ -3357,6 +3445,31 @@ msgstr "" msgid "Filename:" msgstr "Nombre del archivo:" +#~ msgid "Play Random" +#~ msgstr "Toca al azar" + +#~ msgid "Clear Info" +#~ msgstr "Borrar la información" + +#~ msgid "Play All Songs By" +#~ msgstr "Tocar todas las canciónes por" + +#~ msgid "Play Random Songs By" +#~ msgstr "Tocar al azar las canciónes por" + +#~ msgid "Minutes" +#~ msgstr "Minutos" + +#, fuzzy +#~ msgid "Disable Songs" +#~ msgstr "Canciónes duplicadas" + +#~ msgid "Play Random from Album" +#~ msgstr "Tocar al azar del álbum" + +#~ msgid "No user with this name registered" +#~ msgstr "No hay usuario registrado con este nombre" + #~ msgid "Album Art Already Found" #~ msgstr "Ya encontró el arte de álbum" @@ -3407,9 +3520,6 @@ msgstr "Nombre del archivo:" #~ msgid "Users" #~ msgstr "Usuarios" -#~ msgid "Mail Users" -#~ msgstr "Mandar un correo a los usuarios" - #~ msgid "Access List" #~ msgstr "Lista de aceso" @@ -3663,12 +3773,6 @@ msgstr "Nombre del archivo:" #~ msgid "Playback" #~ msgstr "Reproduccin" -#~ msgid "Increase Volume" -#~ msgstr "Aumentar volumen" - -#~ msgid "Decrease Volume" -#~ msgstr "Disminuir volumen" - #~ msgid "Clear queue" #~ msgstr "Limpiar queue" diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po index 4d45e5b9..bb4346ee 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.po +++ b/locale/fr_FR/LC_MESSAGES/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: v0.1a\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: 2007-07-22 17:01+0200\n" "Last-Translator: François Jan <contribos@gmail.com>\n" "Language-Team: French\n" @@ -19,272 +19,1071 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" -msgstr "Erreur saisissez le captcha" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" +msgstr "Session expirée : reconnectez vous sur" -#: ../../register.php:89 -msgid "Error Captcha Failed" -msgstr "Erreur Captcha s'est cassé" +#: ../../lib/class/album.class.php:217 +msgid "Disk" +msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" -msgstr "Vous <U>devez</U> accepter les conditions d'utilisation" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "Artistes" -#: ../../register.php:101 -msgid "You did not enter a username" -msgstr "Vous n'avez pas entré un nom d'utilisateur" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "Divers" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" -msgstr "SVP entrez vos prénom et nom" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "Erreur : impossible d'ouvrir" -#: ../../register.php:131 -msgid "You must enter a password" -msgstr "Vous devez entrer un mot de passe" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "tout" -#: ../../register.php:135 -msgid "Your passwords do not match" -msgstr "Vos mots de passe ne correspondent pas" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "voir" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" -msgstr "Erreur: Nom d'utilisateur déjà existant" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" +msgstr "Lire" -#: ../../register.php:157 -msgid "Error: Insert Failed" -msgstr "Erreur : Enregistrement non effectué" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" +msgstr "Lire/Ecrit" -#: ../../register.php:174 -msgid "Registration Complete" -msgstr "Enregistrement terminé" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" +msgstr "" -#: ../../update.php:51 -msgid "Ampache Update" -msgstr "Mode debogage d'Ampache" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "jour" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" -msgstr "Session expirée : reconnectez vous sur" +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "jours" -#: ../../ratings.php:32 -msgid "Rating Updated" -msgstr "Score mis à jour" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "heure" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" -msgstr "Votre score pour cet objet a été mis à jour" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "heures" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" +msgstr "Synchronisation distante en cours" + +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "Erreur: Impossible de changer de répertoire" + +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "Erreur: Impossible d'obtenir la taille de fichier de" + +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "n'est pas lisible par ampache" + +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" +msgstr "Démarrage de la construction du catalogue" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "Trouvé" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" +msgstr "Non" + +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" +msgstr "Playlist ajoutée à partir de" + +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" +msgstr "Démarrage de la recherche de jaquette d'album" + +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "Cherché" + +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" +msgstr "Catalogue terminé" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "Durée totale" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "Total des morceaux" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "Morceaux par secondes" + +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "Mis à jour" + +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "Mise à jour non nécessaire" + +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "Mise à jour distante en cours" + +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" +msgstr "Mise à jour du catalogue terminée" + +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "Erreur" + +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" +"Impossible de charger la bibliothèque XMLRPC, assurez-vous que XML-" +"RPC est actif" -#: ../../admin/flag.php:97 -msgid "Song Updated" -msgstr "Morceaux mis à jour" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "Erreur de connexion à" -#: ../../admin/flag.php:97 -#, fuzzy -msgid "The requested song has been updated" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "Code" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "Raison" + +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "Mise à jour de(s) catalogue(s) distant(s) terminée" + +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "Ajouté" + +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -"Le(s) morceau(x) demandé(s) ont(a) été dé " -"sactivé(s)" -#: ../../admin/flag.php:139 -msgid "Album Updated" -msgstr "l'album a été mis à jour" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "Nettoyage de catalogue terminé" -#: ../../admin/flag.php:181 -msgid "Artist Updated" -msgstr "Artist mise à jour" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "Fichiers enlevés" -#: ../../admin/flag.php:246 -msgid "Songs Updated" -msgstr "Morceaux mis à jour" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" -#: ../../admin/flag.php:254 -msgid "Flag Removed" -msgstr "marquée enlevés" +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "TROUVE" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" -msgstr "marquée effacée pour" +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "Recherche de nouvelle(s) jaquette(s) d'album(s)" -#: ../../admin/flag.php:270 -msgid "Flags Updated" -msgstr "marquée ajoutée" +#: ../../lib/class/catalog.class.php:1788 +msgid "Update Finished." +msgstr "Mise à jour du catalogue terminée" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" -msgstr "Morceaux désactivés" +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "Test" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "morceaux mis à jour" + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" msgstr "" -"Le(s) morceau(x) demandé(s) ont(a) été dé" -"sactivé(s)" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" -msgstr "Morceaux activés" +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "Titre" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "Mise à jour pour" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "Débit" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "Taux" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "Mode" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "Durée" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "Piste" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "Taille du fichier" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "Artiste" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "Album" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "Année" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "Commentaire" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "Genre" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "Déplacé" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "Attente" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "Supprimer" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" msgstr "" -#: ../../admin/flag.php:305 -msgid "Flagged Records" -msgstr "Marqué par" +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" +msgstr "autre" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "Inconnu" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "En cours de lecture" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "Stop" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" +msgstr "Pause" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 +msgid "Error Username Required" +msgstr "Erreur: Le nom d'utilisateur est obligatoire" + +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 +msgid "Error Passwords don't match" +msgstr "Erreur: Les mots de passe ne correspondent pas" + +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "Morceaux" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" +msgstr "Albums" + +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" +msgstr "" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" +msgstr "Gérer les utilisateurs" + +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" +msgstr "" + +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "Listes de lecture" + +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" +msgstr "" + +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +msgid "Catalogs" +msgstr "Catalogues" + +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" +msgstr "" + +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" +msgstr "" + +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" +msgstr "" + +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" +msgstr "" + +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" +msgstr "" + +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" +msgstr "Ne pas jouer" + +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "C'est plutôt mauvais" + +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "C'est OK" + +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "C'est plutôt bon" + +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "J'aime ça !" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "C'est dément" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "C'est le Top !" + +#: ../../lib/preferences.php:160 +msgid "Enable" +msgstr "Activer" + +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" +msgstr "Désactiver" + +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" +msgstr "Flux" + +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" +msgstr "Lecture en local" + +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" +msgstr "" + +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "M3U" + +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "M3U simple" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "PLS" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "Asx" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "RAM" + +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:226 +msgid "Disabled" +msgstr "Désactiver" + +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "Utilisateur" + +#: ../../lib/preferences.php:228 +msgid "Manager" +msgstr "" + +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" +msgstr "Administration" + +#: ../../lib/preferences.php:249 +msgid "Send on Add" +msgstr "" + +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" + +#: ../../lib/preferences.php:251 +msgid "Clear on Send" +msgstr "" + +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" +msgstr "" + +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "" + +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "Anglais" + +#: ../../lib/general.lib.php:436 +msgid "British English" +msgstr "Anglais (britannique)" + +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "Turc" + +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "Chinois simplifié" + +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "actif" + +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "inactif" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "secondes" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" +msgstr "Minutes" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" +msgstr "heures" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" +msgstr "jours" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "semaines" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "mois" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" +msgstr "année" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "Accueil" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "Envoyer" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "Lecture en local" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "Aléatoire" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "Liste de lecture" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "Chercher" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "Préférences" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "Ajouter un catalogue" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" +msgstr "Gestion des utilisateurs" + +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" +msgstr "E-mail aux utilisateurs" + +#: ../../lib/ui.lib.php:515 +msgid "Admin-Manage Access Lists" +msgstr "Liste d'accès" + +#: ../../lib/ui.lib.php:519 +msgid "Admin-Site Preferences" +msgstr "Préférences administrateur" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" + +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "Parcourir" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "Statistiques des catalogues" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "Recommandations" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 +msgid "Name" +msgstr "Nom" + +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" + +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" +msgstr "" + +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" +msgstr "Récemment joués" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "Mot de passe" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "fichier" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "Envoi de fichiers non supporté" + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "Aucun fichier envoyé" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "" +"Il y a eu un problème avec l'envoi de fichier: Aucun %s n'a é" +"té chargé." + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" +"Il y a eu un problème avec l'envoi de fichier: %s dépasse la " +"taille maximum autorisée (%d octets)." + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" +"Il y a eu un problème avec l'envoi de fichier: Le %s n'a é" +"té que partiellement chargé" #: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 msgid "Catalog Updated" msgstr "Mise à jour du catalogue terminée" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "Catalog Deleted" msgstr "Nettoyage de catalogue terminé" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../admin/catalog.php:115 +#: ../../admin/catalog.php:112 msgid "Songs Removed" msgstr "Fichiers enlevés" -#: ../../admin/catalog.php:118 +#: ../../admin/catalog.php:115 msgid "No Songs Removed" msgstr "Aucun titre n a été supprimé" -#: ../../admin/catalog.php:121 +#: ../../admin/catalog.php:118 msgid "Disabled Songs Processed" msgstr "Voir les morceaux désactivés" -#: ../../admin/catalog.php:141 +#: ../../admin/catalog.php:138 msgid "Catalog Cleaned" msgstr "Nettoyage de catalogue terminé" -#: ../../admin/catalog.php:191 +#: ../../admin/catalog.php:188 msgid "Catalog Created" msgstr "catalogue a été créé" -#: ../../admin/catalog.php:208 +#: ../../admin/catalog.php:205 msgid "Catalog statistics cleared" msgstr "Statistiques des catalogues effaceées" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "Now Playing Cleared" msgstr "Lecture en cours effacée" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "All now playing data has been cleared" msgstr "" "Toutes les données sur les lectures en cours ont été " "effacées" -#: ../../admin/catalog.php:233 +#: ../../admin/catalog.php:230 #, fuzzy msgid "No Disabled songs found" msgstr "Aucun morceau désactivé" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Delete Catalog" msgstr "Supprimer le catalogue" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Do you really want to delete this catalog?" msgstr "Voulez-vous vraiment supprimer ce catalogue ?" -#: ../../admin/catalog.php:261 +#: ../../admin/catalog.php:258 msgid "Album Art Search Finished" msgstr "Recherche de jaquettes d'albums terminée" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 -msgid "Error Username Required" -msgstr "Erreur: Le nom d'utilisateur est obligatoire" +#: ../../admin/flag.php:97 +msgid "Song Updated" +msgstr "Morceaux mis à jour" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 -msgid "Error Passwords don't match" -msgstr "Erreur: Les mots de passe ne correspondent pas" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "The requested song has been updated" +msgstr "" +"Le(s) morceau(x) demandé(s) ont(a) été dé " +"sactivé(s)" + +#: ../../admin/flag.php:139 +msgid "Album Updated" +msgstr "l'album a été mis à jour" + +#: ../../admin/flag.php:181 +msgid "Artist Updated" +msgstr "Artist mise à jour" + +#: ../../admin/flag.php:246 +msgid "Songs Updated" +msgstr "Morceaux mis à jour" + +#: ../../admin/flag.php:254 +msgid "Flag Removed" +msgstr "marquée enlevés" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "marquée effacée pour" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "marquée ajoutée" + +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "Morceaux désactivés" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "" +"Le(s) morceau(x) demandé(s) ont(a) été dé" +"sactivé(s)" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "Morceaux activés" -#: ../../admin/users.php:79 +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "" + +#: ../../admin/flag.php:305 +msgid "Flagged Records" +msgstr "Marqué par" + +#: ../../admin/users.php:78 msgid "User Updated" msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/users.php:78 msgid "updated" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "Erreur: Nom d'utilisateur déjà existant" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 #: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 #: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 msgid "Guest" msgstr "Invite" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "Utilisateur" - -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" -msgstr "Administration" - -#: ../../admin/users.php:119 +#: ../../admin/users.php:118 msgid "New User Added" msgstr "" -#: ../../admin/users.php:124 +#: ../../admin/users.php:123 msgid "User Enabled" msgstr "" -#: ../../admin/users.php:129 +#: ../../admin/users.php:128 msgid "User Disabled" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" -msgstr "Erreur" - -#: ../../admin/users.php:132 +#: ../../admin/users.php:131 msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../admin/users.php:154 +#: ../../admin/users.php:153 msgid "User Deleted" msgstr "Utilisateur supprimé" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Delete Error" msgstr "Erreur de suppression" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Unable to delete last Admin User" msgstr "Il est impossible de supprimer le dernier administrateur" -#: ../../admin/users.php:163 +#: ../../admin/users.php:162 msgid "Deletion Request" msgstr "demande de suppression" -#: ../../admin/users.php:164 +#: ../../admin/users.php:163 msgid "Are you sure you want to permanently delete" msgstr "étes-vous sûr de vouloir supprimer définitivement" @@ -320,405 +1119,86 @@ msgstr "Supprimé" msgid "Your Access List Entry has been removed" msgstr "Votre liste d'accès a été supprimée" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "Ajouté" - #: ../../admin/access.php:40 msgid "Your new Access List Entry has been created" msgstr "" "Votre nouvelle liste d'accès a été créée" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" -msgstr "Mis à jour" - #: ../../admin/access.php:45 msgid "Access List Entry updated" msgstr "Ajouter une entrée dans la liste d'accès" -#: ../../admin/system.php:64 -#, fuzzy -msgid "Export Failed" -msgstr "Erreur : Enregistrement non effectué" - -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" -msgstr "Aucun catalogue trouvé !" - -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "Ajouter un catalogue" - -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "Statistiques des catalogues" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "jour" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "jours" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "heure" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "heures" - -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "Total des utilisateurs" - -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "Utilisateurs connectés" - -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "Albums" - -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "Artistes" - -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "Morceaux" - -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "Taille du catalogue" - -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "Durée du catalogue" - -#: ../../admin/mail.php:260 +#: ../../admin/mail.php:57 #, fuzzy msgid "E-mail Sent" msgstr "Gestion d'e-mail" -#: ../../admin/mail.php:261 +#: ../../admin/mail.php:58 msgid "Your E-mail was successfully sent." msgstr "Email envoyé" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" +#: ../../admin/system.php:64 +#, fuzzy +msgid "Export Failed" +msgstr "Erreur : Enregistrement non effectué" -#: ../../preferences.php:86 -msgid "Error Update Failed" -msgstr "" +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "Jouer" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" -msgstr "Marqué par" - -#: ../../flag.php:45 -msgid "The specified item has been flagged" -msgstr "Marqué par" - -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -msgid "Catalogs" -msgstr "Catalogues" - -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" -msgstr "Nom" - -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "Action" - -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" -msgstr "ajouter" - -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" -msgstr "Vérifier" - -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" -msgstr "Supprimer les informations" - -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "tout" - -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "Supprimer" - -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" -msgstr "Rapide" - -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" -msgstr "Rassembler les jaquettes" - -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" -msgstr "Aucun catalogue trouvé !" - -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" -msgstr "Nettoyer tous les Catalogues" - -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" -msgstr "Tout Vérifier" - -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" -msgstr "Ajouter à tout" - -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -msgid "Update All" -msgstr "Tout Mettre à jour" - -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "Vider les statistiques des catalogues" - -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" -msgstr "Recupérer la jaquette d'album" - -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" -msgstr "Autres outils" - -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "Voir les doublons" - -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" -msgstr "Effacer lecture en cours" - -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" -msgstr "écrire la configuration" - -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" -msgstr "Préférences" - -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" -msgstr "Exporter vers Itunes DB" - -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" -msgstr "Test de la configuration" - -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "Selectionner" - -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" -msgstr "Objet" - -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "Marquée" - -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" -msgstr "Commentaire" - -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" -msgstr "Statut" - -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -msgid "No Records Found" -msgstr "Aucun catalogue trouvé !" +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" -msgstr "Refuser" +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +msgid "Clear Playlist" +msgstr "Effacer liste de lecture" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" -msgstr "Approuver" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -msgid "Update" -msgstr "Mis à jour" +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "Pas assez de données" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -#, fuzzy -msgid "Show All" -msgstr "Montrer tout" +#: ../../templates/rightbar.inc.php:104 +msgid "More" +msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "Installation d'Ampache" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -729,9 +1209,9 @@ msgstr "" "assurez-vous d'avoir tous les pré-requis" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -747,9 +1227,9 @@ msgstr "" "sql et /config/ampache.cfg.dist.php" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -763,8 +1243,8 @@ msgstr "" "fichier /config/ampache.cfg.php" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" "Etape 1 - Création et alimentation de la base de données " @@ -775,8 +1255,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "Etape 2 - Création du fichier ampache.cfg.php" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "Etape 3 - Paramètres du compte initial" @@ -794,191 +1274,279 @@ msgid "Create Admin Account" msgstr "Créer un compte administrateur" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "Nom d'utilisateur" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "Mot de passe" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "Créer un compte" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "Ajouter un catalogue" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" +"Dans le formulaire suivant, entrez soit un chemin local (ex: /data/music) ou " +"un lien d'une installation Ampache distante (ex: http://lautreampache.com)" + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "Nom de catalogue" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "Auto-insertion des champs" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "nom de l'album" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "nom de l'artiste" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr "commentaire de balise" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "genre" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "numéro de la piste (complété par des 0)" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "titre du morceau" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "année" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "autre" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "Chemin" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" +msgstr "Type de catalogue" + +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "Local" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" +msgstr "Distant" + +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" +msgstr "Clef de XML-RPC" + +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" +msgstr "Obligatoire pour un catalogue distant" + +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" +msgstr "Motif de nom de fichier" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" +msgstr "Motif de dossier" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "(ne commençant ou ne finissant pas avec '/')" + +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" +msgstr "Recupérer la jaquette d'album" + +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "Construire les listes de lecture à partir des fichiers m3u" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "Ajouter un catalogue" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "Volume" + +#: ../../templates/show_localplay_status.inc.php:34 +#, fuzzy +msgid "Repeat" +msgstr "Refuser" + +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "Aléatoire" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "ajouter" + +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" +msgstr "Nom de la liste de lecture" + +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" +msgstr "Nombre de morceaux" + +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "Propriétaire" + +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 #: ../../templates/show_artist_box.inc.php:32 #: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 #: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 msgid "Actions" msgstr "Actions" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" -msgstr "" - -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" -msgstr "" +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "éditer" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "Titre" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" +msgstr "Liste complète des artistes" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "Artiste" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" +msgstr "Vérifiez les artictes que vous souhaitez associer a cet artiste" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "Album" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" +msgstr "Préc&ecaute;dent" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "Genre" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" +msgstr "Renommer les sélectionnées" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" -msgstr "Débit" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "Annuler" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "Nom de fichier" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" +msgstr "Avancé" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" +msgstr "Recherche encore" #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 msgid "Song Title" msgstr "Titre du morceau" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "Liste de lecture" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "" @@ -991,121 +1559,265 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" -msgstr "" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" +msgstr "Favoris" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "Inconnu" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" +msgstr "Liste des artistes favoris" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "Nom complet" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" +msgstr "Liste des albums favoris" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" -msgstr "" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" +msgstr "Liste des morceaux favoris" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "Dernier(s) vu(s)" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "Jouer aléatoirement une sélection" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "Activité" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" +msgstr "Nombre d'éléments" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "Par genre" + +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" +msgstr "Durée" + +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" +msgstr "illimité" + +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "Type" + +#: ../../templates/show_random.inc.php:65 +msgid "Standard" +msgstr "Standard" + +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" +msgstr "Moins joué" + +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "Tous les albums" + +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" +msgstr "Artiste complet" + +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_random.inc.php:76 +#, fuzzy +msgid "From catalog" +msgstr "d'un catalogue" + +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" +msgstr "Limite de Taille" + +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" +msgstr "En Liste" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" +msgstr "Démarrage de la recherche des nouveaux morceaux" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "catalogue" + +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" -msgstr "Récemment joués" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" +msgstr "Editer la liste de lecture" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" -msgstr "Piste" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "Public" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" -msgstr "Durée" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" +msgstr "Privé" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" -msgstr "Pas assez de données" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +msgid "Update" +msgstr "Mis à jour" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" -msgstr "Jaquette d'album" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" +msgstr "Connexion" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" -msgstr "Cliquer pour fermer la fenetre" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "Mémoriser" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" -msgstr "Télécharger" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" +msgstr "S'inscrire" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "éditer" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" +msgstr "Message de Jour" + +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "Action" + +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" +msgstr "Vérifier" + +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +msgid "Clean" +msgstr "Supprimer les informations" + +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" +msgstr "Rapide" + +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" +msgstr "Rassembler les jaquettes" + +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" +msgstr "Aucun catalogue trouvé !" + +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" +msgstr "Nettoyer tous les Catalogues" + +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" +msgstr "Tout Vérifier" + +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" +msgstr "Ajouter à tout" + +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +msgid "Update All" +msgstr "Tout Mettre à jour" + +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "Vider les statistiques des catalogues" + +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" +msgstr "Autres outils" + +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "Voir les doublons" + +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "Effacer lecture en cours" + +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" +msgstr "écrire la configuration" + +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" +msgstr "Préférences" + +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" +msgstr "Exporter vers Itunes DB" + +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" +msgstr "" + +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" +msgstr "Test de la configuration" #: ../../templates/show_flag.inc.php:41 msgid "Flag Song" @@ -1128,402 +1840,236 @@ msgstr "Raison du marquage" msgid "Incorrect Tags" msgstr "Mauvais Tags" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" -msgstr "" - -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" -msgstr "autre" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "Marquée" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" -msgstr "hors de" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" +msgstr "Parcourir" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "Trouvé" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "Déconnexion" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" -msgstr "Conditions" - -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -"Votre serveur web a des droits en lecture sur les fichiers /sql/ampache.sql " -"et /config/ampache.cfg.php.dist" - -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" -msgstr "Lancer la configuration" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" -msgstr "Les albums du moment" - -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "Jouer l'album" - -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" -msgstr "Volume" - -#: ../../templates/show_localplay_status.inc.php:55 -#, fuzzy -msgid "Repeat" -msgstr "Refuser" - -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "Aléatoire" - -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" -msgstr "Le temp d'ajout" - -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" -msgstr "Effacement" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" +msgstr "" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" -msgstr "Ajouter une entrée" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "Nom complet" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "Adresse de début" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" +msgstr "" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "Adresse de fin" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "Dernier(s) vu(s)" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "Niveau" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" +msgstr "Activité" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" -msgstr "Clef" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" +msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" -msgstr "Type" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" +msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "Nom complet" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" +msgstr "" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "Date d'enregistrement" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "Albums de" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" -msgstr "Dernier(s) IPs" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "Voir tous les morceaux de" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "En ligne" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" +msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" -msgstr "liste de lecture accueil" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" +msgstr "Mettre à jour à partir des balises" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "Créer un nouvelle liste de lecture" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" +msgstr "" +#: ../../templates/show_songs.inc.php:48 #: ../../templates/show_now_playing_row.inc.php:36 #: ../../templates/show_search.inc.php:91 msgid "Rating" msgstr "Score" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "Morceau" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +#, fuzzy +msgid "Current Playlist" +msgstr "Créer un nouvelle liste de lecture" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr "étape 2 - Création du fichier Ampache.cfg.php" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +msgid "No Records Found" +msgstr "Aucun catalogue trouvé !" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" -msgstr "" -"Cette étape prend la configuration de base et essaie de l'appliquer " -"à votre serveur web. Si l'accès est refusé, vous verrez " -"une invite de chargement du fichier de configuration. SVP mettez le fichier " -"de configuration téléchargé dans /config" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "Préférence" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" -msgstr "" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "Valeur" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" -msgstr "Chemin d'accès web" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "Pour tous" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" -msgstr "Nom de la base de données" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "Hôte MySQL" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "Description" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "Utilisateur MySQL" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" +msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "Mot de passe MySQL" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" +msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" -msgstr "écrire la configuration" +#: ../../templates/header.inc.php:71 +msgid "Log out" +msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "Ampache.cfg.php existe" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" +msgstr "Erreur la configuration est vieux" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "Ampache.cfg.php configuré ?" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" +msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" -msgstr "Test de la configuration" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" +msgstr "Accord de l'utilisateur" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" -msgstr "" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" +msgstr "J'accepte" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" -msgstr "Éditer un utilisateur" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" +msgstr "Informations de l'utilisateur" +#: ../../templates/show_user_registration.inc.php:94 #: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 #: ../../templates/show_add_user.inc.php:44 #: ../../templates/show_account.inc.php:34 msgid "E-mail" msgstr "E-mail" +#: ../../templates/show_user_registration.inc.php:112 #: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 #: ../../templates/show_add_user.inc.php:61 #: ../../templates/show_account.inc.php:47 msgid "Confirm Password" msgstr "Confirmation du mot de passe" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "Niveau d'accès utilisateur" - -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "Mise à jour d'un utilisateur" - -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "Divers" - -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "Chercher" - -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -#, fuzzy -msgid "Create" -msgstr "Débit" - -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "Continuer" - -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "Annuler" - -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "Accueil" - -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "Parcourir" - -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" -msgstr "Lecture en local" - -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "Préférences" - -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" -msgstr "Déconnexion" - -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "mise à jour de" - -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "Catalogues" - -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." -msgstr "test des tags des morceaux trouvés" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "Enregistrer un utilisateur" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" -msgstr "Vérifié" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" +msgstr "Editer l'Album" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -#, fuzzy -msgid "Current Playlist" -msgstr "Créer un nouvelle liste de lecture" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" +msgstr "marqu&aecute;es pour etiquettage" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" -msgstr "" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" +msgstr "Mis à jour" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" -msgstr "" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" +msgstr "Conditions" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" - -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "Jouer" - -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" -msgstr "Suivant" - -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" -msgstr "Description" - -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" -msgstr "Version de PHP" - -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" -msgstr "Désactiver" - -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" -msgstr "Utilisateur activé" +"Votre serveur web a des droits en lecture sur les fichiers /sql/ampache.sql " +"et /config/ampache.cfg.php.dist" #: ../../templates/show_install.inc.php:54 msgid "" @@ -1536,10 +2082,25 @@ msgstr "" "création. Cette étape peut prendre un certain temps dé" "pendant de la vitesse de votre ordinateur" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr "étape 2 - Création du fichier Ampache.cfg.php" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "Nom de la base de données" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "Hôte MySQL" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "Nom d'utilisateur administrateur MySQL" @@ -1569,675 +2130,449 @@ msgstr "" msgid "Insert Database" msgstr "Remplissage de la base de données" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" -msgstr "Liste complète des artistes" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" -msgstr "Vérifiez les artictes que vous souhaitez associer a cet artiste" - -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" -msgstr "Préc&ecaute;dent" - -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" -msgstr "Renommer les sélectionnées" - -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" -msgstr "Avancé" - -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" -msgstr "Recherche encore" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" +msgstr "Lancer la configuration" #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "Créer un nouvelle liste de lecture" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" -msgstr "Renommer" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +#, fuzzy +msgid "Create" +msgstr "Débit" + +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" +msgstr "édition" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "OU" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "Insérer la valeur en cours" - -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" -msgstr "Mettre à jour les balises ID3" - -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" -msgstr "Normaliser les morceaux" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" -msgstr "Jouer aléatoirement" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "Erreur la configuration est vieux" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "Couverture" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "Année" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" +msgstr "Mise à jour des catalogues" -#: ../../templates/show_preference_admin.inc.php:22 +#: ../../templates/show_edit_catalog.inc.php:22 #, fuzzy -msgid "Preference Administration" -msgstr "Préférences" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "Préférence" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "secondes" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" -msgstr "Minutes" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" -msgstr "heures" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" -msgstr "jours" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "semaines" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "mois" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" -msgstr "année" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "Derniers titres joués" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "Recherche dans Ampache" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "Mots clés" - -#: ../../templates/show_search.inc.php:72 -msgid "Played" -msgstr "Joué" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "Oui" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "Non" - -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" -msgstr "Débit minimum" - -#: ../../templates/show_search.inc.php:95 -msgid "One Star" -msgstr "1 étoile" - -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" -msgstr "2 etoiles" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "3 etoiles" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "4 etoiles" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "5 etoiles" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "Opérateur" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "ET" - -#: ../../templates/show_search.inc.php:111 -msgid "Method" -msgstr "Méthode" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "approximatif" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "exacte" - -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" -msgstr "Nombre de résultats" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "illimité" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" -msgstr "" +msgid "Settings for" +msgstr "Paramètre pour les catalogues dans" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" +msgstr "Motif de nom de fichier" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" +msgstr "Sauver les paramètres du catalogue" #: ../../templates/show_edit_access.inc.php:22 msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "Type d'ACL" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "Accés Flux" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "l'Interface Web" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "Définition de réseau local" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" -msgstr "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" +msgstr "" #: ../../templates/show_edit_access.inc.php:43 #: ../../templates/show_add_access.inc.php:32 msgid "Start IP Address" msgstr "Adresse IP de début" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "Adresse IP de fin" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 #, fuzzy msgid "Remote Key" msgstr "Distant" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "voir" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" -msgstr "Lire" - -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" -msgstr "Lire/Ecrit" - -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" -msgstr "Enregistrement d'un nouvel utilisateur Ampache" - -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" -msgstr "Accord de l'utilisateur" - -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" -msgstr "J'accepte" - -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" -msgstr "Informations de l'utilisateur" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "Niveau" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" -msgstr "Supprimer les informations" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" +msgstr "Les albums du moment" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "Enregistrer un utilisateur" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "Jouer l'album" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" -msgstr "Connexion" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" +msgstr "Morceau" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "Mémoriser" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" +msgstr "Derniers titres joués" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" -msgstr "S'inscrire" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" +msgstr "Recommende les Artists" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" -msgstr "Message de Jour" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" +msgstr "Recommende les albums" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" -msgstr "" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" +msgstr "Recommande les Morceaux" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "Artistes les plus populaires" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" +msgstr "Histoire d'IP" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "Albums les plus populaires" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" +msgstr "Voir unique" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" -msgstr "Genres les plus populaires" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +#, fuzzy +msgid "Show All" +msgstr "Montrer tout" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "Morceaux les plus populaires" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "Date" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" -msgstr "Flux live les plus populaires" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +#, fuzzy +msgid "IP Address" +msgstr "Adresse IP de fin" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" -msgstr "Tags les plus populaires" +#: ../../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_edit_song.inc.php:23 -msgid "Edit Song" -msgstr "édition" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "Nom de fichier" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" -msgstr "marqu&aecute;es pour etiquettage" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "Type de liste de lecture" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" -msgstr "Mise à jour des catalogues" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" +msgstr "Importer une liste de lecture" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" -msgstr "" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" +msgstr "Voir" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_mail_users.inc.php:23 #, fuzzy msgid "Send E-mail to Users" msgstr "E-mail aux utilisateurs" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "Mail pour" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "Statistiques des catalogues" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "Albums les plus populaires" + +#: ../../templates/show_mail_users.inc.php:53 #, fuzzy msgid "Latest Artist Additions" msgstr "Artistes récemment ajoutés" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "Artistes les plus populaires" + +#: ../../templates/show_mail_users.inc.php:64 msgid "Latest Album Additions" msgstr "Albums récemment ajoutés" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "Morceaux les plus populaires" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "Morceaux marquées" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "Voir les morceaux désactivés" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 #, fuzzy msgid "Most Popular Threshold in days" msgstr "Morceaux les plus populaires" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "Sujet" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "Message" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "Envoyer l'e-mail" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "Ajouter un nouvel utilisateur" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "Ajouter un utilisateur" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "Ajouter un accès pour un hôte" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_add_access.inc.php:82 -#, fuzzy -msgid "Create ACL" -msgstr "Créer un compte" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "Valeur" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "Pour tous" - -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" -msgstr "Description" - -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" -msgstr "Editer la liste de lecture" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" +msgstr "Les dix derniés enregistrements marqués" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "Public" +#: ../../templates/show_preference_admin.inc.php:22 +#, fuzzy +msgid "Preference Administration" +msgstr "Préférences" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" -msgstr "Privé" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" +msgstr "Éditer un utilisateur" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "Trouver des doublons" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "Niveau d'accès utilisateur" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "Type de recherche" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "Mise à jour d'un utilisateur" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "Artiste et titre" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "Utilisateurs connectés" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "Artiste, Album et Titre" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "Total des utilisateurs" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" -msgstr "Choisi le meilleur conjecture" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "Taille du catalogue" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "Démarrage de la recherche de jaquette d'album" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "Durée du catalogue" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "Cherché" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" +msgstr "Morceaux dupliqués" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" -msgstr "Non" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" +msgstr "Taille" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "Albums de" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "Continuer" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "Voir tous les morceaux de" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "Selectionner" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "Jouer tous les morceaux de" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" +msgstr "Objet" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "Jouer aléatoirement les morceaux de" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" +msgstr "Statut" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" -msgstr "Mettre à jour à partir des balises" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" +msgstr "Refuser" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" -msgstr "Trouver des doublons" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" +msgstr "Approuver" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "Jouer aléatoirement une sélection" - -#: ../../templates/show_random.inc.php:26 -msgid "Item count" -msgstr "Nombre d'éléments" +#: ../../templates/show_song.inc.php:49 +msgid "Label" +msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "Par genre" +#: ../../templates/show_song.inc.php:53 +msgid "Language" +msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" -msgstr "Standard" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" +msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" -msgstr "Moins joué" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "Tous les albums" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "Renommer" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" -msgstr "Artiste complet" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "Insérer la valeur en cours" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" -msgstr "Minutes" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" +msgstr "Mettre à jour les balises ID3" -#: ../../templates/show_random.inc.php:59 -#, fuzzy -msgid "From catalog" -msgstr "d'un catalogue" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "Trouver des doublons" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" -msgstr "Limite de Taille" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "Type de recherche" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" -msgstr "En Liste" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "Artiste et titre" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" -msgstr "En cours de lecture" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "Artiste, Album et Titre" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" -msgstr "Voir" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" +msgstr "Normaliser les morceaux" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" -msgstr "Compte" - -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" -msgstr "Mode" - -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" -msgstr "Lecture en local" - -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" -msgstr "Plugins disponible" - -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" +msgstr "Suivant" + +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" +msgstr "liste de lecture accueil" + +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" +msgstr "Créer un nouvelle liste de lecture" + #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" msgstr "Recherche personnalisée" @@ -2255,88 +2590,29 @@ msgstr "Lecture en local" msgid "Get Art" msgstr "Obtenir la jaquette" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "Mode debogage d'Ampache" - -#: ../../templates/show_edit_catalog.inc.php:22 -#, fuzzy -msgid "Settings for" -msgstr "Paramètre pour les catalogues dans" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "Auto-insertion des champs" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "nom de l'album" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "nom de l'artiste" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "commentaire de balise" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "genre" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "numéro de la piste (complété par des 0)" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "titre du morceau" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "année" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "autre" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "Type de catalogue" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "Clef de XML-RPC" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "Motif de nom de fichier" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" +msgstr "Description" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "Motif de dossier" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" +msgstr "Version de PHP" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" -msgstr "(ne commençant ou ne finissant pas avec '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" +msgstr "Utilisateur activé" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" -msgstr "Sauver les paramètres du catalogue" +#: ../../templates/show_plugins.inc.php:46 +#, fuzzy +msgid "Deactivate" +msgstr "Utilisateur activé" #: ../../templates/show_democratic_playlist.inc.php:38 #, fuzzy @@ -2357,6 +2633,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "Genres les plus populaires" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "Flux live les plus populaires" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "Tags les plus populaires" + #: ../../templates/show_edit_artist.inc.php:23 msgid "Edit Artist" msgstr "Artiste" @@ -2365,38 +2654,6 @@ msgstr "Artiste" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" -msgstr "Editer l'Album" - -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" -msgstr "Mis à jour" - -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" -msgstr "Les dix derniés enregistrements marqués" - -#: ../../templates/show_plugins.inc.php:46 -#, fuzzy -msgid "Deactivate" -msgstr "Utilisateur activé" - -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "Flux" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "" - -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" -msgstr "" - #: ../../templates/show_play_selected.inc.php:28 msgid "Play Selected" msgstr "Jouer la sélection" @@ -2417,179 +2674,219 @@ msgstr "Enlever les pistes sélectionnées" msgid "Add to" msgstr "Ajouter à" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" -msgstr "Histoire d'IP" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "Ajouter un nouvel utilisateur" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" -msgstr "Voir unique" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "Ajouter un utilisateur" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "Date" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" +msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -#, fuzzy -msgid "IP Address" -msgstr "Adresse IP de fin" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "Couverture" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -"Dans le formulaire suivant, entrez soit un chemin local (ex: /data/music) ou " -"un lien d'une installation Ampache distante (ex: http://lautreampache.com)" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" -msgstr "Nom de catalogue" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "Local" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "Réinitialiser la jaquette d'album" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" -msgstr "Distant" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "Trouver la jaquette d'album" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" -msgstr "Obligatoire pour un catalogue distant" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" +msgstr "Télécharger" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" -msgstr "Motif de nom de fichier" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "Nom complet" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "Construire les listes de lecture à partir des fichiers m3u" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" +msgstr "Date d'enregistrement" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "Ajouter un catalogue" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" +msgstr "Dernier(s) IPs" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" -msgstr "Effacer liste de lecture" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "En ligne" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" -msgstr "Recommandations" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" +msgstr "hors de" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" -msgstr "Recommende les Artists" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" +msgstr "mise à jour de" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" -msgstr "Recommende les albums" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "Catalogues" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" -msgstr "Recommande les Morceaux" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." +msgstr "test des tags des morceaux trouvés" -#: ../../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_verify_catalog.inc.php:25 +msgid "Verifed" +msgstr "Vérifié" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "Type de liste de lecture" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" +msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" -msgstr "Importer une liste de lecture" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" +msgstr "Jaquette d'album" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" -msgstr "" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "Cliquer pour fermer la fenetre" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" -msgstr "Favoris" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" +msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" -msgstr "Liste des artistes favoris" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" +msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" -msgstr "Liste des albums favoris" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" +msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" -msgstr "Liste des morceaux favoris" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" -msgstr "Morceaux dupliqués" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" -msgstr "Durée" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" -msgstr "Taille" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "E-mail aux utilisateurs" -#: ../../templates/show_list_duplicates.inc.php:96 -#, fuzzy -msgid "Disable Songs" -msgstr "Voir les morceaux désactivés" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "Précédant" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" -msgstr "Statistiques des catalogues" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" +msgstr "Compte" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" -msgstr "" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" +msgstr "Mode" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" -msgstr "" +#: ../../templates/sidebar_preferences.inc.php:34 +msgid "Localplay Modules" +msgstr "Lecture en local" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" -msgstr "" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" +msgstr "Plugins disponible" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_account.inc.php:40 +msgid "New Password" +msgstr "Mot de passe" + +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "Vider les statistiques" + +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" +msgstr "Modifier un compte" + +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" +msgstr "édition" + +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "préférences" + +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" +msgstr "Mise à jour des préférences" + +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" +msgstr "Mode debogage d'Ampache" + +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2601,14 +2898,6 @@ msgstr "mise à jour de" msgid "Checking" msgstr "Test" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "Démarrage de la recherche des nouveaux morceaux" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "catalogue" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2704,6 +2993,11 @@ msgstr "" "nécessaire mais pourrai gener certaines fonctionnalités de " "ampache" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "Ampache.cfg.php existe" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2714,6 +3008,11 @@ msgstr "" "fichier ampache.cfg.php n'est pas au bon endroit ou \n" "\t n'est pas lisible par votre serveur web" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "Ampache.cfg.php configuré ?" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2732,467 +3031,320 @@ msgstr "" "Ceci test la connexion à votre base de données en utilisant " "les valeurs de ampache.cfg.php" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "Recherche dans Ampache" -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" +msgstr "Mots clés" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" +#: ../../templates/show_search.inc.php:72 +msgid "Played" +msgstr "Joué" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "édition" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "Oui" -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "préférences" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "Non" -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "Mise à jour des préférences" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" +msgstr "Débit minimum" -#: ../../templates/show_account.inc.php:40 -msgid "New Password" -msgstr "Mot de passe" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" +msgstr "1 étoile" -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "Vider les statistiques" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" +msgstr "2 etoiles" -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "Modifier un compte" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" +msgstr "3 etoiles" -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "Précédant" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" +msgstr "4 etoiles" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" +msgstr "5 etoiles" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" +msgstr "Opérateur" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" +#: ../../templates/show_search.inc.php:105 +msgid "AND" +msgstr "ET" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" +#: ../../templates/show_search.inc.php:111 +msgid "Method" +msgstr "Méthode" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" +msgstr "approximatif" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" +msgstr "exacte" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" +msgstr "Nombre de résultats" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "Jouer l'album aléatoirement" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "Réinitialiser la jaquette d'album" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "Trouver la jaquette d'album" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "Nom de la liste de lecture" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "Nombre de morceaux" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "Propriétaire" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "Pas d'utilisateur enregistré avec ce nom" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "La clé de validation utilisée n'est pas correcte." - -#: ../../activate.php:51 -msgid "User activated" -msgstr "Utilisateur activé" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "Cet identifiant utilisateur est actif et peut etre utilisé" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../democratic.php:80 -msgid "Playlist Cleared" -msgstr "Liste de lecture effacée" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/flag.class.php:280 -msgid "Approved" -msgstr "Déplacé" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" -msgstr "Attente" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" -msgstr "Mise à jour pour" - -#: ../../lib/class/song.class.php:341 -msgid "Rate" -msgstr "Taux" - -#: ../../lib/class/song.class.php:345 -msgid "Mode" -msgstr "Mode" - -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "Taille du fichier" - -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" -msgstr "Gérer les utilisateurs" - -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "Listes de lecture" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "Erreur : impossible d'ouvrir" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" -msgstr "Erreur: Impossible de changer de répertoire" - -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "Erreur: Impossible d'obtenir la taille de fichier de" - -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "n'est pas lisible par ampache" - -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" -msgstr "Démarrage de la construction du catalogue" - -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" -msgstr "Synchronisation distante en cours" - -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" -msgstr "Playlist ajoutée à partir de" - -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" -msgstr "Catalogue terminé" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "Durée totale" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "Total des morceaux" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" +msgstr "Ajouter une entrée" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" -msgstr "Morceaux par secondes" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "Adresse de début" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" -msgstr "Mise à jour non nécessaire" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "Adresse de fin" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" -msgstr "Mise à jour distante en cours" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" +msgstr "Clef" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" -msgstr "Mise à jour du catalogue terminée" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "Ajouter un accès pour un hôte" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -"Impossible de charger la bibliothèque XMLRPC, assurez-vous que XML-" -"RPC est actif" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "Erreur de connexion à" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" -msgstr "Code" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" -msgstr "Raison" - -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" -msgstr "Mise à jour de(s) catalogue(s) distant(s) terminée" +#: ../../templates/show_add_access.inc.php:84 +#, fuzzy +msgid "Create ACL" +msgstr "Créer un compte" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" -msgstr "Nettoyage de catalogue terminé" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" +msgstr "Le temp d'ajout" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" -msgstr "Fichiers enlevés" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" +msgstr "Effacement" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" +"Cette étape prend la configuration de base et essaie de l'appliquer " +"à votre serveur web. Si l'accès est refusé, vous verrez " +"une invite de chargement du fichier de configuration. SVP mettez le fichier " +"de configuration téléchargé dans /config" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr "TROUVE" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "Recherche de nouvelle(s) jaquette(s) d'album(s)" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" +msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Update Finished." -msgstr "Mise à jour du catalogue terminée" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" +msgstr "Chemin d'accès web" -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" -msgstr "Test" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "Utilisateur MySQL" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." -msgstr "morceaux mis à jour" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "Mot de passe MySQL" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" -msgstr "Stop" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" +msgstr "écrire la configuration" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" -msgstr "Pause" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" +msgstr "Test de la configuration" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" -msgstr "Activer" - -#: ../../lib/preferences.php:272 -msgid "M3U" -msgstr "M3U" - -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "M3U simple" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" +msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" -msgstr "PLS" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" +msgstr "Cet identifiant utilisateur est actif et peut etre utilisé" -#: ../../lib/preferences.php:275 -msgid "Asx" -msgstr "Asx" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" +msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" -msgstr "RAM" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" +msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" -msgstr "Désactiver" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" +msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" -msgstr "Ne pas jouer" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" +msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" -msgstr "C'est plutôt mauvais" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" +msgstr "Morceaux Supprimés de la playlist" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" -msgstr "C'est OK" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" +msgstr "Erreur: Aucun mot clé entré" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" -msgstr "C'est plutôt bon" +#: ../../ratings.php:32 +msgid "Rating Updated" +msgstr "Score mis à jour" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" -msgstr "J'aime ça !" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" +msgstr "Votre score pour cet objet a été mis à jour" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" -msgstr "C'est dément" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" +msgstr "Utilisateur suspendu, contactezz l admin" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" -msgstr "C'est le Top !" +#: ../../login.php:83 +msgid "Unable to create new account" +msgstr "Impossible de creer ce compte" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "Anglais" +#: ../../login.php:92 +msgid "No local account found" +msgstr "Pas de compte local correspondant" -#: ../../lib/general.lib.php:496 -msgid "British English" -msgstr "Anglais (britannique)" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" +msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" -msgstr "Turc" +#: ../../preferences.php:91 +msgid "Error Update Failed" +msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" -msgstr "Chinois simplifié" +#: ../../preferences.php:96 +msgid "Your Account has been updated" +msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "actif" +#: ../../update.php:51 +msgid "Ampache Update" +msgstr "Mode debogage d'Ampache" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "inactif" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" +msgstr "Démarrage de la mise à jour à partir des balises" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" -msgstr "Erreur, accès interdit" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" +msgstr "Mise à jour à partir des balises terminée" -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "Envoyer" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" +msgstr "Retour" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" -msgstr "Lecture en local" +#: ../../artists.php:186 +msgid "Show Artists starting with" +msgstr "Voir les artistes commençant par" -#: ../../lib/ui.lib.php:556 -msgid "Random Play" -msgstr "Aléatoire" +#: ../../playlist.php:57 +msgid "Playlist Created" +msgstr "Liste de lecture créée" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" -msgstr "Ajouter un catalogue" +#: ../../playlist.php:57 +msgid " has been created" +msgstr " a été créée" -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" -msgstr "Gestion des utilisateurs" +#: ../../playlist.php:78 +msgid "Playlist Updated" +msgstr "Liste de lecture mise à jour" -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" -msgstr "E-mail aux utilisateurs" +#: ../../playlist.php:79 +msgid "has been updated and is now" +msgstr " a été mis à jour" -#: ../../lib/ui.lib.php:584 -msgid "Admin-Manage Access Lists" -msgstr "Liste d'accès" +#: ../../playlist.php:101 +msgid "Playlist Imported" +msgstr "Liste de lecture créée" -#: ../../lib/ui.lib.php:588 -msgid "Admin-Site Preferences" -msgstr "Préférences administrateur" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" +msgstr "Liste de lecture supprimée" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "" +#: ../../flag.php:45 +msgid "Item Flagged" +msgstr "Marqué par" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" -msgstr "Parcourir" +#: ../../flag.php:45 +msgid "The specified item has been flagged" +msgstr "Marqué par" #: ../../albums.php:32 msgid "Album Art Cleared" @@ -3216,130 +3368,115 @@ msgstr "" "Pas de jaquette d'album trouvée. Celà peut etre du à " "une surcharge temporaire d'Amazon ou un album inconnu de leur catalogue" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "Jaquette d'album incluse" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "Démarrage de la mise à jour à partir des balises" +#: ../../register.php:73 +msgid "Error Captcha Required" +msgstr "Erreur saisissez le captcha" -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "Mise à jour à partir des balises terminée" +#: ../../register.php:80 +msgid "Error Captcha Failed" +msgstr "Erreur Captcha s'est cassé" -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "Retour" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" +msgstr "Vous <U>devez</U> accepter les conditions d'utilisation" -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" +#: ../../register.php:92 +msgid "You did not enter a username" +msgstr "Vous n'avez pas entré un nom d'utilisateur" -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" +msgstr "SVP entrez vos prénom et nom" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" +#: ../../register.php:122 +msgid "You must enter a password" +msgstr "Vous devez entrer un mot de passe" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "fichier" +#: ../../register.php:126 +msgid "Your passwords do not match" +msgstr "Vos mots de passe ne correspondent pas" -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "Envoi de fichiers non supporté" +#: ../../register.php:158 +msgid "Error: Insert Failed" +msgstr "Erreur : Enregistrement non effectué" -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "Aucun fichier envoyé" +#: ../../register.php:175 +msgid "Registration Complete" +msgstr "Enregistrement terminé" -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -"Il y a eu un problème avec l'envoi de fichier: Aucun %s n'a é" -"té chargé." -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" -"Il y a eu un problème avec l'envoi de fichier: %s dépasse la " -"taille maximum autorisée (%d octets)." +#: ../../democratic.php:80 +msgid "Playlist Cleared" +msgstr "Liste de lecture effacée" -#: ../../modules/horde/Browser.php:903 -#, php-format +#: ../../bin/print_tags.inc:66 msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +"[print_tags.php.inc]\n" +"This commandline script will display the tag information for the specified " +"filename as it will \n" +"appear to Ampache. \n" +" \n" msgstr "" -"Il y a eu un problème avec l'envoi de fichier: Le %s n'a é" -"té que partiellement chargé" -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "Morceaux Supprimés de la playlist" +#: ../../bin/print_tags.inc:72 +msgid "Filename:" +msgstr "Nom de fichier :" -#: ../../playlist.php:57 -msgid "Playlist Created" -msgstr "Liste de lecture créée" +#~ msgid "No Catalogs Found!" +#~ msgstr "Aucun catalogue trouvé !" -#: ../../playlist.php:57 -msgid " has been created" -msgstr " a été créée" +#~ msgid "Play Random" +#~ msgstr "Jouer aléatoirement" -#: ../../playlist.php:78 -msgid "Playlist Updated" -msgstr "Liste de lecture mise à jour" +#~ msgid "XML-RPC" +#~ msgstr "XML-RPC" -#: ../../playlist.php:79 -msgid "has been updated and is now" -msgstr " a été mis à jour" +#~ msgid "Ampache New User Registration" +#~ msgstr "Enregistrement d'un nouvel utilisateur Ampache" -#: ../../playlist.php:101 -msgid "Playlist Imported" -msgstr "Liste de lecture créée" +#~ msgid "Clear Info" +#~ msgstr "Supprimer les informations" -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" -msgstr "Liste de lecture supprimée" +#~ msgid "Select Best Guess" +#~ msgstr "Choisi le meilleur conjecture" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "Utilisateur suspendu, contactezz l admin" +#~ msgid "Play All Songs By" +#~ msgstr "Jouer tous les morceaux de" -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "Impossible de creer ce compte" +#~ msgid "Play Random Songs By" +#~ msgstr "Jouer aléatoirement les morceaux de" -#: ../../login.php:96 -msgid "No local account found" -msgstr "Pas de compte local correspondant" +#~ msgid "Find duplicate artists" +#~ msgstr "Trouver des doublons" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" -msgstr "Erreur: Aucun mot clé entré" +#~ msgid "Minutes" +#~ msgstr "Minutes" -#: ../../artists.php:186 -msgid "Show Artists starting with" -msgstr "Voir les artistes commençant par" +#, fuzzy +#~ msgid "Disable Songs" +#~ msgstr "Voir les morceaux désactivés" -#: ../../bin/print_tags.inc:66 -msgid "" -"[print_tags.php.inc]\n" -"This commandline script will display the tag information for the specified " -"filename as it will \n" -"appear to Ampache. \n" -" \n" -msgstr "" +#~ msgid "Play Random from Album" +#~ msgstr "Jouer l'album aléatoirement" -#: ../../bin/print_tags.inc:72 -msgid "Filename:" -msgstr "Nom de fichier :" +#~ msgid "No user with this name registered" +#~ msgstr "Pas d'utilisateur enregistré avec ce nom" + +#~ msgid "The validation key used isn't correct." +#~ msgstr "La clé de validation utilisée n'est pas correcte." + +#~ msgid "User activated" +#~ msgstr "Utilisateur activé" + +#~ msgid "Error Access Denied" +#~ msgstr "Erreur, accès interdit" #~ msgid "album's with art" #~ msgstr "albums avec image" @@ -3422,9 +3559,6 @@ msgstr "Nom de fichier :" #~ msgid "Users" #~ msgstr "Utilisateurs" -#~ msgid "Mail Users" -#~ msgstr "E-mail aux utilisateurs" - #~ msgid "Config" #~ msgstr "configuration" diff --git a/locale/is_IS/LC_MESSAGES/messages.po b/locale/is_IS/LC_MESSAGES/messages.po index 722d1250..34f9ecf2 100644 --- a/locale/is_IS/LC_MESSAGES/messages.po +++ b/locale/is_IS/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,694 +16,1167 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" msgstr "" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/album.class.php:217 +msgid "Disk" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" msgstr "" -#: ../../register.php:131 -msgid "You must enter a password" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" msgstr "" -#: ../../register.php:135 -msgid "Your passwords do not match" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" msgstr "" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" msgstr "" -#: ../../register.php:157 -msgid "Error: Insert Failed" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:174 -msgid "Registration Complete" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../update.php:51 -msgid "Ampache Update" +#: ../../lib/class/catalog.class.php:176 +msgid "day" msgstr "" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" +#: ../../lib/class/catalog.class.php:176 +msgid "days" msgstr "" -#: ../../ratings.php:32 -msgid "Rating Updated" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" msgstr "" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" msgstr "" -#: ../../admin/flag.php:97 -msgid "Song Updated" +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" msgstr "" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" msgstr "" -#: ../../admin/flag.php:139 -msgid "Album Updated" +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" msgstr "" -#: ../../admin/flag.php:181 -msgid "Artist Updated" +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" msgstr "" -#: ../../admin/flag.php:246 -msgid "Songs Updated" +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" msgstr "" -#: ../../admin/flag.php:254 -msgid "Flag Removed" +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" msgstr "" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" msgstr "" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" msgstr "" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" msgstr "" -#: ../../admin/flag.php:305 -msgid "Flagged Records" +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" msgstr "" -#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 -msgid "Catalog Updated" +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" msgstr "" -#: ../../admin/catalog.php:106 -msgid "Catalog Deleted" +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" msgstr "" -#: ../../admin/catalog.php:106 -msgid "The Catalog and all associated records have been deleted" +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" msgstr "" -#: ../../admin/catalog.php:115 -msgid "Songs Removed" +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" msgstr "" -#: ../../admin/catalog.php:118 -msgid "No Songs Removed" +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" msgstr "" -#: ../../admin/catalog.php:121 -msgid "Disabled Songs Processed" +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" -#: ../../admin/catalog.php:141 -msgid "Catalog Cleaned" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" msgstr "" -#: ../../admin/catalog.php:191 -msgid "Catalog Created" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" msgstr "" -#: ../../admin/catalog.php:208 -msgid "Catalog statistics cleared" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" msgstr "" -#: ../../admin/catalog.php:223 -msgid "Now Playing Cleared" +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" msgstr "" -#: ../../admin/catalog.php:223 -msgid "All now playing data has been cleared" +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" msgstr "" -#: ../../admin/catalog.php:233 -msgid "No Disabled songs found" +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Delete Catalog" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Do you really want to delete this catalog?" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" msgstr "" -#: ../../admin/catalog.php:261 -msgid "Album Art Search Finished" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" + +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Update Finished." +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "" + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" msgstr "" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" +msgstr "" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" +msgstr "" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 msgid "Error Username Required" msgstr "" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 msgid "Error Passwords don't match" msgstr "" -#: ../../admin/users.php:79 -msgid "User Updated" +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" msgstr "" -#: ../../admin/users.php:79 -msgid "updated" +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 -#: ../../templates/show_preference_admin.inc.php:41 -#: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 -msgid "Guest" +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" msgstr "" -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" msgstr "" -#: ../../admin/users.php:119 -msgid "New User Added" +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" msgstr "" -#: ../../admin/users.php:124 -msgid "User Enabled" +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" msgstr "" -#: ../../admin/users.php:129 -msgid "User Disabled" +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +msgid "Catalogs" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" msgstr "" -#: ../../admin/users.php:132 -msgid "Unable to Disabled last Administrator" +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" msgstr "" -#: ../../admin/users.php:154 -msgid "User Deleted" +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" msgstr "" -#: ../../admin/users.php:157 -msgid "Delete Error" +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" msgstr "" -#: ../../admin/users.php:157 -msgid "Unable to delete last Admin User" +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" msgstr "" -#: ../../admin/users.php:163 -msgid "Deletion Request" +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" msgstr "" -#: ../../admin/users.php:164 -msgid "Are you sure you want to permanently delete" +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" msgstr "" -#: ../../admin/modules.php:38 -msgid "Install Failed, Controller Error" +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" msgstr "" -#: ../../admin/modules.php:54 ../../admin/modules.php:92 -msgid "Are you sure you want to remove this plugin?" +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" msgstr "" -#: ../../admin/modules.php:66 ../../admin/modules.php:111 -msgid "Plugin Deactivated" +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" msgstr "" -#: ../../admin/modules.php:85 -msgid "Plugin Activated" +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" msgstr "" -#: ../../admin/modules.php:120 -msgid "Plugins" +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" msgstr "" -#: ../../admin/modules.php:126 -msgid "Localplay Controllers" +#: ../../lib/preferences.php:160 +msgid "Enable" msgstr "" -#: ../../admin/access.php:35 -msgid "Deleted" +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" msgstr "" -#: ../../admin/access.php:35 -msgid "Your Access List Entry has been removed" +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" msgstr "" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" msgstr "" -#: ../../admin/access.php:40 -msgid "Your new Access List Entry has been created" +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" msgstr "" -#: ../../admin/access.php:45 -msgid "Access List Entry updated" +#: ../../lib/preferences.php:187 +msgid "M3U" msgstr "" -#: ../../admin/system.php:64 -msgid "Export Failed" +#: ../../lib/preferences.php:188 +msgid "Simple M3U" msgstr "" -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" +#: ../../lib/preferences.php:189 +msgid "PLS" msgstr "" -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" +#: ../../lib/preferences.php:190 +msgid "Asx" msgstr "" -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" +#: ../../lib/preferences.php:191 +msgid "RAM" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" +#: ../../lib/preferences.php:192 +msgid "XSPF" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" +#: ../../lib/preferences.php:226 +msgid "Disabled" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" +#: ../../lib/preferences.php:228 +msgid "Manager" msgstr "" -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" msgstr "" -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" +#: ../../lib/preferences.php:249 +msgid "Send on Add" msgstr "" -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" msgstr "" -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" +#: ../../lib/preferences.php:251 +msgid "Clear on Send" msgstr "" -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" msgstr "" -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" +#: ../../lib/preferences.php:260 +msgid "Always" msgstr "" -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" msgstr "" -#: ../../admin/mail.php:260 -msgid "E-mail Sent" +#: ../../lib/general.lib.php:436 +msgid "British English" msgstr "" -#: ../../admin/mail.php:261 -msgid "Your E-mail was successfully sent." +#: ../../lib/general.lib.php:442 +msgid "Turkish" msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" msgstr "" -#: ../../preferences.php:86 -msgid "Error Update Failed" +#: ../../lib/general.lib.php:504 +msgid "On" msgstr "" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../lib/general.lib.php:507 +msgid "Off" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" msgstr "" -#: ../../flag.php:45 -msgid "The specified item has been flagged" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" msgstr "" -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -msgid "Catalogs" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" msgstr "" +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" +msgstr "" + +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" +msgstr "" + +#: ../../lib/ui.lib.php:515 +msgid "Admin-Manage Access Lists" +msgstr "" + +#: ../../lib/ui.lib.php:519 +msgid "Admin-Site Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" + +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_admin_tools.inc.php:33 #: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 #: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_edit_access.inc.php:26 #: ../../templates/show_plugins.inc.php:32 #: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 #: ../../templates/show_live_streams.inc.php:36 #: ../../templates/show_live_streams.inc.php:53 #: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 msgid "Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" msgstr "" -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" msgstr "" -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" msgstr "" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" msgstr "" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../modules/horde/Browser.php:867 +msgid "file" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." msgstr "" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" msgstr "" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." msgstr "" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." msgstr "" -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -msgid "Update All" +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." msgstr "" -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" +#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 +msgid "Catalog Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" +#: ../../admin/catalog.php:103 +msgid "Catalog Deleted" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../admin/catalog.php:103 +msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" +#: ../../admin/catalog.php:112 +msgid "Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" +#: ../../admin/catalog.php:115 +msgid "No Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" +#: ../../admin/catalog.php:118 +msgid "Disabled Songs Processed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" +#: ../../admin/catalog.php:138 +msgid "Catalog Cleaned" msgstr "" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../admin/catalog.php:188 +msgid "Catalog Created" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../admin/catalog.php:205 +msgid "Catalog statistics cleared" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" +#: ../../admin/catalog.php:220 +msgid "Now Playing Cleared" msgstr "" -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" +#: ../../admin/catalog.php:220 +msgid "All now playing data has been cleared" msgstr "" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" +#: ../../admin/catalog.php:230 +msgid "No Disabled songs found" msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" +#: ../../admin/catalog.php:239 +msgid "Delete Catalog" msgstr "" -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" +#: ../../admin/catalog.php:239 +msgid "Do you really want to delete this catalog?" msgstr "" -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" +#: ../../admin/catalog.php:258 +msgid "Album Art Search Finished" msgstr "" -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -msgid "No Records Found" +#: ../../admin/flag.php:97 +msgid "Song Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" msgstr "" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../admin/flag.php:139 +msgid "Album Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -msgid "Update" +#: ../../admin/flag.php:181 +msgid "Artist Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -msgid "Show All" +#: ../../admin/flag.php:246 +msgid "Songs Updated" +msgstr "" + +#: ../../admin/flag.php:254 +msgid "Flag Removed" +msgstr "" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "" + +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "" + +#: ../../admin/flag.php:305 +msgid "Flagged Records" +msgstr "" + +#: ../../admin/users.php:78 +msgid "User Updated" +msgstr "" + +#: ../../admin/users.php:78 +msgid "updated" +msgstr "" + +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 +#: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 +#: ../../templates/show_add_user.inc.php:74 +msgid "Guest" +msgstr "" + +#: ../../admin/users.php:118 +msgid "New User Added" +msgstr "" + +#: ../../admin/users.php:123 +msgid "User Enabled" +msgstr "" + +#: ../../admin/users.php:128 +msgid "User Disabled" +msgstr "" + +#: ../../admin/users.php:131 +msgid "Unable to Disabled last Administrator" +msgstr "" + +#: ../../admin/users.php:153 +msgid "User Deleted" +msgstr "" + +#: ../../admin/users.php:156 +msgid "Delete Error" +msgstr "" + +#: ../../admin/users.php:156 +msgid "Unable to delete last Admin User" +msgstr "" + +#: ../../admin/users.php:162 +msgid "Deletion Request" +msgstr "" + +#: ../../admin/users.php:163 +msgid "Are you sure you want to permanently delete" +msgstr "" + +#: ../../admin/modules.php:38 +msgid "Install Failed, Controller Error" +msgstr "" + +#: ../../admin/modules.php:54 ../../admin/modules.php:92 +msgid "Are you sure you want to remove this plugin?" +msgstr "" + +#: ../../admin/modules.php:66 ../../admin/modules.php:111 +msgid "Plugin Deactivated" +msgstr "" + +#: ../../admin/modules.php:85 +msgid "Plugin Activated" +msgstr "" + +#: ../../admin/modules.php:120 +msgid "Plugins" +msgstr "" + +#: ../../admin/modules.php:126 +msgid "Localplay Controllers" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Deleted" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Your Access List Entry has been removed" +msgstr "" + +#: ../../admin/access.php:40 +msgid "Your new Access List Entry has been created" +msgstr "" + +#: ../../admin/access.php:45 +msgid "Access List Entry updated" +msgstr "" + +#: ../../admin/mail.php:57 +msgid "E-mail Sent" +msgstr "" + +#: ../../admin/mail.php:58 +msgid "Your E-mail was successfully sent." +msgstr "" + +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "" + +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "" + +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" + +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +msgid "Clear Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "" + +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "" + +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -711,9 +1184,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -725,9 +1198,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -736,8 +1209,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" @@ -746,8 +1219,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "" @@ -762,835 +1235,722 @@ msgid "Create Admin Account" msgstr "" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "" -#: ../../templates/show_catalogs.inc.php:33 -#: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 -msgid "Path" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_localplay.inc.php:30 -#: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 -msgid "Actions" +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" msgstr "" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" msgstr "" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" msgstr "" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" msgstr "" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" msgstr "" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" msgstr "" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" msgstr "" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" msgstr "" -#: ../../templates/sidebar_browse.inc.php:3 -msgid "Browse By" +#: ../../templates/show_add_catalog.inc.php:48 +#: ../../templates/show_catalogs.inc.php:33 +#: ../../templates/show_catalogs.inc.php:61 +msgid "Path" msgstr "" -#: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:42 -#: ../../templates/show_playlist_songs.inc.php:63 -msgid "Song Title" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" msgstr "" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" msgstr "" -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" msgstr "" -#: ../../templates/sidebar_browse.inc.php:18 -msgid "Filters" +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/sidebar_browse.inc.php:23 -msgid "Minimum Count" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/sidebar_browse.inc.php:25 -msgid "Rated" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 -msgid "Unplayed" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 -msgid "Show Art" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" msgstr "" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" msgstr "" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" msgstr "" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" msgstr "" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" msgstr "" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" msgstr "" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" msgstr "" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" msgstr "" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" msgstr "" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_album.inc.php:43 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 +msgid "Actions" msgstr "" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_album_row.inc.php:49 #: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 #: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 +#: ../../templates/show_live_stream_row.inc.php:31 #: ../../templates/show_playlist_row.inc.php:36 msgid "Edit" msgstr "" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "" - -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -msgid "File" -msgstr "" - -#: ../../templates/show_flag.inc.php:49 -msgid "Item" -msgstr "" - -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" msgstr "" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" msgstr "" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" msgstr "" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_browse.inc.php:3 +msgid "Browse By" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" +#: ../../templates/sidebar_browse.inc.php:10 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 +#: ../../templates/show_playlist_songs.inc.php:42 +#: ../../templates/show_playlist_songs.inc.php:63 +msgid "Song Title" msgstr "" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_browse.inc.php:18 +msgid "Filters" msgstr "" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/sidebar_browse.inc.php:23 +msgid "Minimum Count" msgstr "" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/sidebar_browse.inc.php:25 +msgid "Rated" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" +#: ../../templates/sidebar_browse.inc.php:27 +msgid "Unplayed" msgstr "" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" +#: ../../templates/sidebar_browse.inc.php:30 +msgid "Show Art" msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" msgstr "" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" msgstr "" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" msgstr "" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" msgstr "" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_random.inc.php:62 #: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 msgid "Type" msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "" - -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "" - -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" -msgstr "" - -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "" - -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" -msgstr "" - -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 -msgid "Rating" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" msgstr "" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" +#: ../../templates/show_random.inc.php:76 +msgid "From catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" msgstr "" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +msgid "Update" msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" msgstr "" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" msgstr "" -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" msgstr "" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +msgid "Clean" msgstr "" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" msgstr "" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +msgid "Update All" msgstr "" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" msgstr "" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" msgstr "" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" msgstr "" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" msgstr "" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" msgstr "" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -msgid "Current Playlist" +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +msgid "File" msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/show_flag.inc.php:49 +msgid "Item" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_install.inc.php:54 -msgid "" -"This step creates and inserts the Ampache database, as such please provide a " -"mysql account with database creation rights. This step may take a while " -"depending upon the speed of your computer" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_install.inc.php:61 -msgid "Insert Ampache Database" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_install.inc.php:73 -msgid "MySQL Administrative Username" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" msgstr "" -#: ../../templates/show_install.inc.php:77 -msgid "MySQL Administrative Password" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_install.inc.php:81 -msgid "Create Database User for New Database" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" msgstr "" -#: ../../templates/show_install.inc.php:85 -msgid "Ampache Database Username" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" msgstr "" -#: ../../templates/show_install.inc.php:89 -msgid "Ampache Database User Password" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" msgstr "" -#: ../../templates/show_install.inc.php:93 -msgid "Overwrite Existing" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" msgstr "" -#: ../../templates/show_install.inc.php:98 -msgid "Insert Database" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" msgstr "" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" msgstr "" -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" msgstr "" -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" msgstr "" -#: ../../templates/show_add_playlist.inc.php:24 -msgid "Create a new playlist" +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 +msgid "Rating" msgstr "" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" msgstr "" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 -#: ../../templates/show_edit_song.inc.php:40 -#: ../../templates/show_edit_song.inc.php:48 -#: ../../templates/show_edit_song.inc.php:56 -msgid "OR" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +msgid "No Records Found" msgstr "" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" msgstr "" -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" msgstr "" -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" msgstr "" -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" msgstr "" -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" msgstr "" #: ../../templates/header.inc.php:71 @@ -1601,165 +1961,164 @@ msgstr "" msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "" - -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" msgstr "" -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" msgstr "" -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" msgstr "" -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" -#: ../../templates/show_search.inc.php:72 -msgid "Played" +#: ../../templates/show_install.inc.php:54 +msgid "" +"This step creates and inserts the Ampache database, as such please provide a " +"mysql account with database creation rights. This step may take a while " +"depending upon the speed of your computer" msgstr "" -#: ../../templates/show_search.inc.php:76 -msgid "Yes" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" msgstr "" -#: ../../templates/show_search.inc.php:77 -msgid "No" +#: ../../templates/show_install.inc.php:61 +msgid "Insert Ampache Database" msgstr "" -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" msgstr "" -#: ../../templates/show_search.inc.php:95 -msgid "One Star" +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" msgstr "" -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" +#: ../../templates/show_install.inc.php:73 +msgid "MySQL Administrative Username" msgstr "" -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" +#: ../../templates/show_install.inc.php:77 +msgid "MySQL Administrative Password" msgstr "" -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" +#: ../../templates/show_install.inc.php:81 +msgid "Create Database User for New Database" msgstr "" -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" +#: ../../templates/show_install.inc.php:85 +msgid "Ampache Database Username" msgstr "" -#: ../../templates/show_search.inc.php:102 -msgid "Operator" +#: ../../templates/show_install.inc.php:89 +msgid "Ampache Database User Password" msgstr "" -#: ../../templates/show_search.inc.php:105 -msgid "AND" +#: ../../templates/show_install.inc.php:93 +msgid "Overwrite Existing" msgstr "" -#: ../../templates/show_search.inc.php:111 -msgid "Method" +#: ../../templates/show_install.inc.php:98 +msgid "Insert Database" msgstr "" -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_search.inc.php:115 -msgid "Exact" +#: ../../templates/show_add_playlist.inc.php:24 +msgid "Create a new playlist" msgstr "" -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" msgstr "" -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" +#: ../../templates/show_edit_song.inc.php:40 +#: ../../templates/show_edit_song.inc.php:48 +#: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 +msgid "OR" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" msgstr "" #: ../../templates/show_edit_access.inc.php:22 @@ -1767,27 +2126,28 @@ msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1795,394 +2155,362 @@ msgstr "" msgid "Start IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" msgstr "" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" msgstr "" -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" msgstr "" -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" msgstr "" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +msgid "Show All" msgstr "" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" msgstr "" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" msgstr "" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" +#: ../../templates/show_mail_users.inc.php:23 +msgid "Send E-mail to Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" +#: ../../templates/show_mail_users.inc.php:27 +msgid "Mail to" msgstr "" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" msgstr "" -#: ../../templates/show_mail_users.inc.php:24 -msgid "Send E-mail to Users" +#: ../../templates/show_mail_users.inc.php:53 +msgid "Latest Artist Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:28 -msgid "Mail to" +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" msgstr "" -#: ../../templates/show_mail_users.inc.php:54 -msgid "Latest Artist Additions" +#: ../../templates/show_mail_users.inc.php:64 +msgid "Latest Album Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:65 -msgid "Latest Album Additions" +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 msgid "Most Popular Threshold in days" msgstr "" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" -msgstr "" - -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" -msgstr "" - -#: ../../templates/show_add_access.inc.php:82 -msgid "Create ACL" -msgstr "" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" msgstr "" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" msgstr "" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" msgstr "" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" msgstr "" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" msgstr "" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" msgstr "" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" msgstr "" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" msgstr "" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" msgstr "" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" msgstr "" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" +#: ../../templates/show_song.inc.php:49 +msgid "Label" msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" +#: ../../templates/show_song.inc.php:53 +msgid "Language" msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" msgstr "" -#: ../../templates/show_random.inc.php:59 -msgid "From catalog" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" msgstr "" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" msgstr "" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" msgstr "" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" msgstr "" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" msgstr "" #: ../../templates/show_get_albumart.inc.php:23 @@ -2201,86 +2529,27 @@ msgstr "" msgid "Get Art" msgstr "" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" msgstr "" #: ../../templates/show_democratic_playlist.inc.php:38 @@ -2300,6 +2569,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "" + #: ../../templates/show_edit_artist.inc.php:23 msgid "Edit Artist" msgstr "" @@ -2308,226 +2590,239 @@ msgstr "" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" +#: ../../templates/show_play_selected.inc.php:28 +msgid "Play Selected" msgstr "" -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" +#: ../../templates/show_play_selected.inc.php:31 +msgid "Download Selected" msgstr "" -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_play_selected.inc.php:40 +msgid "Set Track Numbers" msgstr "" -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" +#: ../../templates/show_play_selected.inc.php:41 +msgid "Remove Selected Tracks" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" +#: ../../templates/show_play_selected.inc.php:47 +msgid "Add to" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" msgstr "" -#: ../../templates/show_play_selected.inc.php:28 -msgid "Play Selected" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_play_selected.inc.php:31 -msgid "Download Selected" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" msgstr "" -#: ../../templates/show_play_selected.inc.php:40 -msgid "Set Track Numbers" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:41 -msgid "Remove Selected Tracks" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Add to" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" msgstr "" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" msgstr "" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" msgstr "" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" msgstr "" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" +#: ../../templates/sidebar_preferences.inc.php:34 +msgid "Localplay Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:96 -msgid "Disable Songs" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_account.inc.php:40 +msgid "New Password" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" msgstr "" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" msgstr "" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2538,14 +2833,6 @@ msgstr "" msgid "Checking" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2625,6 +2912,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2632,6 +2924,11 @@ msgid "" "\tit is not currently readable by your webserver." msgstr "" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2648,464 +2945,314 @@ msgid "" "cfg.php" msgstr "" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" - -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" - -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "" - -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "" - -#: ../../templates/show_account.inc.php:40 -msgid "New Password" -msgstr "" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "" - -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "" - -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" - -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" - -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" - -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" - -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" - -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" - -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" -msgstr "" - -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "" - -#: ../../activate.php:51 -msgid "User activated" -msgstr "" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" -msgstr "" - -#: ../../democratic.php:80 -msgid "Playlist Cleared" -msgstr "" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" -msgstr "" - -#: ../../lib/class/flag.class.php:280 -msgid "Approved" -msgstr "" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" -msgstr "" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" msgstr "" -#: ../../lib/class/song.class.php:341 -msgid "Rate" +#: ../../templates/show_search.inc.php:72 +msgid "Played" msgstr "" -#: ../../lib/class/song.class.php:345 -msgid "Mode" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" msgstr "" -#: ../../lib/class/song.class.php:357 -msgid "Filesize" +#: ../../templates/show_search.inc.php:77 +msgid "No" msgstr "" -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" msgstr "" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" msgstr "" -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" +#: ../../templates/show_search.inc.php:105 +msgid "AND" msgstr "" -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" +#: ../../templates/show_search.inc.php:111 +msgid "Method" msgstr "" -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" msgstr "" -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" msgstr "" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Update Finished." +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" msgstr "" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" msgstr "" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" msgstr "" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" msgstr "" -#: ../../lib/preferences.php:272 -msgid "M3U" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../ratings.php:32 +msgid "Rating Updated" msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" msgstr "" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/general.lib.php:496 -msgid "British English" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" +#: ../../preferences.php:91 +msgid "Error Update Failed" msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" +#: ../../preferences.php:96 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" +#: ../../update.php:51 +msgid "Ampache Update" msgstr "" -#: ../../lib/general.lib.php:583 -msgid "Off" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" msgstr "" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" msgstr "" -#: ../../lib/ui.lib.php:550 -msgid "Upload" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" msgstr "" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" +#: ../../artists.php:186 +msgid "Show Artists starting with" msgstr "" -#: ../../lib/ui.lib.php:556 -msgid "Random Play" +#: ../../playlist.php:57 +msgid "Playlist Created" msgstr "" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" +#: ../../playlist.php:57 +msgid " has been created" msgstr "" -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" +#: ../../playlist.php:78 +msgid "Playlist Updated" msgstr "" -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/ui.lib.php:584 -msgid "Admin-Manage Access Lists" +#: ../../playlist.php:101 +msgid "Playlist Imported" msgstr "" -#: ../../lib/ui.lib.php:588 -msgid "Admin-Site Preferences" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" msgstr "" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" +#: ../../flag.php:45 +msgid "Item Flagged" msgstr "" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" #: ../../albums.php:32 @@ -3126,110 +3273,52 @@ msgid "" "error, or the file is not received corectly." msgstr "" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" - -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "" - -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "" - -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" - -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." -msgstr "" - -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "" - -#: ../../playlist.php:57 -msgid "Playlist Created" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../playlist.php:57 -msgid " has been created" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../playlist.php:78 -msgid "Playlist Updated" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -#: ../../playlist.php:101 -msgid "Playlist Imported" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" +#: ../../register.php:122 +msgid "You must enter a password" msgstr "" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" +#: ../../register.php:126 +msgid "Your passwords do not match" msgstr "" -#: ../../login.php:87 -msgid "Unable to create new account" +#: ../../register.php:158 +msgid "Error: Insert Failed" msgstr "" -#: ../../login.php:96 -msgid "No local account found" +#: ../../register.php:175 +msgid "Registration Complete" msgstr "" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../artists.php:186 -msgid "Show Artists starting with" +#: ../../democratic.php:80 +msgid "Playlist Cleared" msgstr "" #: ../../bin/print_tags.inc:66 diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po index e644577c..4330088f 100644 --- a/locale/it_IT/LC_MESSAGES/messages.po +++ b/locale/it_IT/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: 2006-01-08 00:34+0100\n" "Last-Translator: Mr-miky <translate@mr-miky.com>\n" "Language-Team: Italian\n" @@ -18,281 +18,1098 @@ msgstr "" "X-Generator: KBabel 1.11\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../register.php:82 -msgid "Error Captcha Required" -msgstr "Errore Captcha richiesto" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" +msgstr "Sessione scaduta: Per cortesia rifai il login" -#: ../../register.php:89 -msgid "Error Captcha Failed" -msgstr "Errore Captcha fallito" +#: ../../lib/class/album.class.php:217 +msgid "Disk" +msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "Artisti" + +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "Vari" + +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "Errore: Impossibile aprire" + +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "Tutti" + +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "Visualizza" + +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +#, fuzzy +msgid "Read" +msgstr "Casuale" + +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" -msgstr "Non hai inserito un nome utente" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" +msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "giorno" + +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "giorni" + +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "ora" + +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "ore" + +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" +msgstr "Sincronizzazione remota in corso" + +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "Errore: Impossibile cambiare alla cartella" + +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "Errore, impossibile leggere la dimensione del file" + +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "non è leggibile da ampache" + +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" +msgstr "Avvio costruzione catalogo" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "Trovato" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +#, fuzzy +msgid "None" +msgstr "No" + +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" +msgstr "Aggiunta playlist da" + +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" +msgstr "Inizio ricerca copertine." + +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "Cercato" + +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" +msgstr "Catalogo terminato" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "Tempo impiegato" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "Totale brani" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "Brani per secondo" + +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "Aggiornato" + +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "Non è necessario aggiornare" + +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "Aggiornamento remoto in corso" + +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" +msgstr "Aggiornamento catalogo terminato" + +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "Errore" + +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" +"Impossibile caricare la libreria XMLRPC, verifica che XML-RPC sia abilitato" -#: ../../register.php:131 -msgid "You must enter a password" -msgstr "Devi inserire una password" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "Errore connettendosi a" -#: ../../register.php:135 -msgid "Your passwords do not match" -msgstr "Le passord non corrispondono" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "Codice" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" -msgstr "Errore, Nome utente già in uso" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "Motivazione" -#: ../../register.php:157 -msgid "Error: Insert Failed" -msgstr "Errore: inserimento fallito" +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "Terminato aggiornamento remoto catalogo(ghi)." -#: ../../register.php:174 -msgid "Registration Complete" -msgstr "Registrazione completata" +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "Aggiunti" -#: ../../update.php:51 +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" +msgstr "" + +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "Pulizia catalogo terminata" + +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "files rimossi" + +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" + +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "TROVATO" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "Ricerca nuova copertina" + +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Ampache Update" -msgstr "Ampache Debug" +msgid "Update Finished." +msgstr "Aggiornamento catalogo terminato" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" -msgstr "Sessione scaduta: Per cortesia rifai il login" +#: ../../lib/class/catalog.class.php:1788 +#, fuzzy +msgid "Checked" +msgstr "Controllo in corso" -#: ../../ratings.php:32 -msgid "Rating Updated" -msgstr "Voto aggiornato" +#: ../../lib/class/catalog.class.php:1788 +#, fuzzy +msgid "songs updated." +msgstr "è stata aggiornata" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" -msgstr "Il voto per questo oggetto è stato aggiornato" +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "Titolo" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "aggiornato a" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "Bitrate" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "Voto" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "Modo" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "Durata" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "Traccia" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "Dimensione file" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "Artista" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "Album" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "Anno" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "Commento" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "Genere" + +#: ../../lib/class/flag.class.php:280 +#, fuzzy +msgid "Approved" +msgstr "Spostato" + +#: ../../lib/class/flag.class.php:281 +#, fuzzy +msgid "Pending" +msgstr "Aggiunta" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "Cancella" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" msgstr "" -#: ../../admin/flag.php:97 +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 #, fuzzy -msgid "Song Updated" -msgstr "Voto aggiornato" +msgid "Other" +msgstr "altro" -#: ../../admin/flag.php:97 +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "In esecuzione" + +#: ../../lib/class/localplay.class.php:630 #, fuzzy -msgid "The requested song has been updated" -msgstr "I brani richiesti sono stati disabilitati" +msgid "Stopped" +msgstr "Arresta" -#: ../../admin/flag.php:139 +#: ../../lib/class/localplay.class.php:633 #, fuzzy -msgid "Album Updated" -msgstr "Aggiornato" +msgid "Paused" +msgstr "Pausa" -#: ../../admin/flag.php:181 +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 +msgid "Error Username Required" +msgstr "Errore, E' necessario un nome utente" + +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 +msgid "Error Passwords don't match" +msgstr "Errore password non corrispondente" + +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "Brani" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" +msgstr "Albums" + +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" +msgstr "Generi" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" +msgstr "Gestione utenti" + +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" +msgstr "" + +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "Playlists" + +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" +msgstr "" + +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 #, fuzzy -msgid "Artist Updated" -msgstr "Playlist aggiornata" +msgid "Catalogs" +msgstr "Catalogo" -#: ../../admin/flag.php:246 +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" +msgstr "" + +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" +msgstr "" + +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" +msgstr "" + +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" +msgstr "" + +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" +msgstr "" + +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" +msgstr "Non riprodurre" + +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "" + +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "E' ok" + +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "" + +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "lo adoro!" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "" + +#: ../../lib/preferences.php:160 +msgid "Enable" +msgstr "Abilitato" + +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" +msgstr "Disabilitato" + +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" +msgstr "Stream" + +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 #, fuzzy -msgid "Songs Updated" -msgstr "Voto aggiornato" +msgid "Localplay" +msgstr "Riproduzione locale" -#: ../../admin/flag.php:254 +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" +msgstr "" + +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "M3U" + +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "M3U semplice" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "PLS" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "Asx" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "RAM" + +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:226 #, fuzzy -msgid "Flag Removed" -msgstr "Modifica marcati" +msgid "Disabled" +msgstr "Disabilitato" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "Utente" + +#: ../../lib/preferences.php:228 +msgid "Manager" msgstr "" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../lib/preferences.php:249 +msgid "Send on Add" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" -msgstr "Brani disabilitati" +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" -msgstr "I brani richiesti sono stati disabilitati" +#: ../../lib/preferences.php:251 +msgid "Clear on Send" +msgstr "" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" -msgstr "Brani abilitati" +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" +msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" -msgstr "I brani richiesti sono stati abilitati" +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "" -#: ../../admin/flag.php:305 +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "Inglese" + +#: ../../lib/general.lib.php:436 +msgid "British English" +msgstr "Inglese britannico" + +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "Turco" + +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "Cinese semplificato" + +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "" + +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 #, fuzzy -msgid "Flagged Records" -msgstr "Marcata da" +msgid "minutes ago" +msgstr "Minuti" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "hours ago" +msgstr "ore" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "days ago" +msgstr "giorni" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "years ago" +msgstr "anno" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "Inizio" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "Riproduzione locale" + +#: ../../lib/ui.lib.php:487 +#, fuzzy +msgid "Random Play" +msgstr "Casuale" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "Playlist" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "Cerca" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "Impostazioni" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +#, fuzzy +msgid "Admin-Catalog" +msgstr "Aggiungi catalogo" + +#: ../../lib/ui.lib.php:507 +#, fuzzy +msgid "Admin-User Management" +msgstr "Gestione utenti" + +#: ../../lib/ui.lib.php:511 +#, fuzzy +msgid "Admin-Mail Users" +msgstr "Posta utenti" + +#: ../../lib/ui.lib.php:515 +#, fuzzy +msgid "Admin-Manage Access Lists" +msgstr "Liste accesso" + +#: ../../lib/ui.lib.php:519 +#, fuzzy +msgid "Admin-Site Preferences" +msgstr "Impostazioni amministrazione" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" + +#: ../../lib/ui.lib.php:527 +#, fuzzy +msgid "Browse Music" +msgstr "Sfoglia" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +#, fuzzy +msgid "Statistics" +msgstr "Statistiche catalogo" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 +msgid "Name" +msgstr "Nome" + +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" + +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" +msgstr "" + +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +#, fuzzy +msgid "Recently Played" +msgstr "Meno ascoltati" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "Password" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "file" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "" + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "" + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" #: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 #, fuzzy msgid "Catalog Updated" msgstr "Aggiornamento catalogo terminato" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 #, fuzzy msgid "Catalog Deleted" msgstr "Dimensione catalogo" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../admin/catalog.php:115 +#: ../../admin/catalog.php:112 #, fuzzy msgid "Songs Removed" msgstr "Brani abilitati" -#: ../../admin/catalog.php:118 +#: ../../admin/catalog.php:115 msgid "No Songs Removed" msgstr "" -#: ../../admin/catalog.php:121 +#: ../../admin/catalog.php:118 #, fuzzy msgid "Disabled Songs Processed" msgstr "Mostra brani disabilitati" -#: ../../admin/catalog.php:141 +#: ../../admin/catalog.php:138 #, fuzzy msgid "Catalog Cleaned" msgstr "Pulizia catalogo terminata" -#: ../../admin/catalog.php:191 +#: ../../admin/catalog.php:188 #, fuzzy msgid "Catalog Created" msgstr "Nome catalogo" -#: ../../admin/catalog.php:208 +#: ../../admin/catalog.php:205 #, fuzzy msgid "Catalog statistics cleared" msgstr "Statistiche catalogo" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "Now Playing Cleared" msgstr "'In esecuzione ora' cancellato" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "All now playing data has been cleared" msgstr "Tutti gli 'In esecuzione ora' sono stati cancellati" -#: ../../admin/catalog.php:233 +#: ../../admin/catalog.php:230 #, fuzzy msgid "No Disabled songs found" msgstr "Mostra brani disabilitati" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 #, fuzzy msgid "Delete Catalog" msgstr "Aggiorna cataloghi" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Do you really want to delete this catalog?" msgstr "Vuoi veramente cancellare questo catalogo?" -#: ../../admin/catalog.php:261 +#: ../../admin/catalog.php:258 msgid "Album Art Search Finished" msgstr "Ricerca copertine terminata" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 -msgid "Error Username Required" -msgstr "Errore, E' necessario un nome utente" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "Song Updated" +msgstr "Voto aggiornato" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 -msgid "Error Passwords don't match" -msgstr "Errore password non corrispondente" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "The requested song has been updated" +msgstr "I brani richiesti sono stati disabilitati" + +#: ../../admin/flag.php:139 +#, fuzzy +msgid "Album Updated" +msgstr "Aggiornato" + +#: ../../admin/flag.php:181 +#, fuzzy +msgid "Artist Updated" +msgstr "Playlist aggiornata" + +#: ../../admin/flag.php:246 +#, fuzzy +msgid "Songs Updated" +msgstr "Voto aggiornato" + +#: ../../admin/flag.php:254 +#, fuzzy +msgid "Flag Removed" +msgstr "Modifica marcati" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "" + +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "Brani disabilitati" -#: ../../admin/users.php:79 +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "I brani richiesti sono stati disabilitati" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "Brani abilitati" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "I brani richiesti sono stati abilitati" + +#: ../../admin/flag.php:305 +#, fuzzy +msgid "Flagged Records" +msgstr "Marcata da" + +#: ../../admin/users.php:78 msgid "User Updated" msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/users.php:78 msgid "updated" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "Errore, Nome utente già in uso" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 #: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 #: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 msgid "Guest" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "Utente" - -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../admin/users.php:119 +#: ../../admin/users.php:118 msgid "New User Added" msgstr "" -#: ../../admin/users.php:124 +#: ../../admin/users.php:123 msgid "User Enabled" msgstr "" -#: ../../admin/users.php:129 +#: ../../admin/users.php:128 msgid "User Disabled" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" -msgstr "Errore" - -#: ../../admin/users.php:132 +#: ../../admin/users.php:131 msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../admin/users.php:154 +#: ../../admin/users.php:153 msgid "User Deleted" msgstr "Utente cancellato" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Delete Error" msgstr "Errore di cancellazione" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Unable to delete last Admin User" msgstr "Impossibile cancellare l' ultimo utente amministratore" -#: ../../admin/users.php:163 +#: ../../admin/users.php:162 msgid "Deletion Request" msgstr "" -#: ../../admin/users.php:164 +#: ../../admin/users.php:163 msgid "Are you sure you want to permanently delete" msgstr "Sei sicuro di volere cancellare permanentemente" @@ -331,419 +1148,87 @@ msgstr "Cancellato" msgid "Your Access List Entry has been removed" msgstr "" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "Aggiunti" - #: ../../admin/access.php:40 msgid "Your new Access List Entry has been created" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" -msgstr "Aggiornato" - #: ../../admin/access.php:45 #, fuzzy msgid "Access List Entry updated" msgstr "Aggiungi voce a lista accessi" -#: ../../admin/system.php:64 -#, fuzzy -msgid "Export Failed" -msgstr "Errore Captcha fallito" - -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" -msgstr "Non è stato trovato alcun catalogo" - -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "Aggiungi un catalogo" - -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "Statistiche catalogo" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "giorno" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "giorni" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "ora" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "ore" - -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "Totale utenti" - -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "Utenti connessi" - -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "Albums" - -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "Artisti" - -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "Brani" - -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "Dimensione catalogo" - -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "Durata catalogo" - -#: ../../admin/mail.php:260 +#: ../../admin/mail.php:57 #, fuzzy msgid "E-mail Sent" msgstr "Gestione E-mail" -#: ../../admin/mail.php:261 +#: ../../admin/mail.php:58 msgid "Your E-mail was successfully sent." msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" - -#: ../../preferences.php:86 -msgid "Error Update Failed" -msgstr "" - -#: ../../preferences.php:91 -msgid "Your Account has been updated" -msgstr "" - -#: ../../flag.php:45 -#, fuzzy -msgid "Item Flagged" -msgstr "Marcata da" - -#: ../../flag.php:45 -#, fuzzy -msgid "The specified item has been flagged" -msgstr "La playlist richiesta è stata cancellata" - -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -#, fuzzy -msgid "Catalogs" -msgstr "Catalogo" - -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" -msgstr "Nome" - -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "Azione" - -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" -msgstr "Aggiungi" - -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" -msgstr "" - -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -#, fuzzy -msgid "Clean" -msgstr "Cancella informazioni" - -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "Tutti" - -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "Cancella" - -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" -msgstr "" - -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" -msgstr "" - -#: ../../templates/show_admin_tools.inc.php:68 +#: ../../admin/system.php:64 #, fuzzy -msgid "No Catalogs Found" -msgstr "Non è stato trovato alcun catalogo" +msgid "Export Failed" +msgstr "Errore Captcha fallito" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -#, fuzzy -msgid "Clean All" -msgstr "Vuota tutti i cataloghi" +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "Riproduci" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -#, fuzzy -msgid "Add to All" -msgstr "Aggiungi a" - -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -#, fuzzy -msgid "Update All" -msgstr "Aggiornato" - -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "Azzera stato del catalogo" - -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "Mostra brani duplicati" - -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" -msgstr "Cancella 'Ora in ascolto'" - -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -#, fuzzy -msgid "Generate New Config" -msgstr "Scrivi configurazione" - -#: ../../templates/show_admin_tools.inc.php:93 +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 #, fuzzy -msgid "Preferences Permissions" -msgstr "Impostazioni" - -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" -msgstr "" +msgid "Clear Playlist" +msgstr "Nuova playlist" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -#, fuzzy -msgid "Check for New Version" -msgstr "Controllo configurazione" - -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "Seleziona" - -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -#, fuzzy -msgid "Object" -msgstr "Oggetto" - -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "Marcatura" - -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" -msgstr "Commento" - -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" -msgstr "Stato" - -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -#, fuzzy -msgid "No Records Found" -msgstr "Non è stato trovato alcun catalogo" - -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" -msgstr "Rifiuta" +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "Dati insufficienti" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -#, fuzzy -msgid "Update" -msgstr "Aggiornato" - -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -#, fuzzy -msgid "Show All" -msgstr "Mostra tutto" - #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "Installazione Ampache" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -754,9 +1239,9 @@ msgstr "" "i seguenti pre-requisiti" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -772,9 +1257,9 @@ msgstr "" "config/ampache.cfg.dist.php" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -783,8 +1268,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "Passo 1 - Creazione ed inserimento del database Ampache" @@ -793,8 +1278,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "Passo 2 - Creazione del file ampache.cfg.php" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "Passo 3 -Impostazione account iniziale" @@ -811,192 +1296,286 @@ msgid "Create Admin Account" msgstr "Crea account Amministratore" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "Nome utente" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "Password" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "Crea account" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "Aggiungi un catalogo" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" +"Nel formulario seguente inserisci od un percorso locale (ad es. /data/" +"musica) o l' ULR ad una installazione remota di Ampache (ad es. http://" +"theotherampache.com)" + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "Nome catalogo" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "Inserimento automatico campi" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "nome album" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "nome artista" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr " commento id3" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "genere" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "numero traccia (con aggiunta di 0 in fronte)" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "tiolo brano" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "anno" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "altro" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "Percorso" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" +msgstr "tipo catalogo" + +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "Locale" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" +msgstr "Remoto" + +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_localplay.inc.php:30 -#: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 -msgid "Actions" -msgstr "Azioni" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" +msgstr "Filtro nome file" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" +msgstr "Filtro cartelle" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "(non inizianti o terminanti per '/')" + +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "Genera playliste dai file m3u" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "Aggiungi catalogo" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" +msgstr "Aumenta volume" + +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "Diminuisci volume" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "Titolo" +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "Volume" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "Artista" +#: ../../templates/show_localplay_status.inc.php:34 +#, fuzzy +msgid "Repeat" +msgstr "Rifiuta" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "Casuale" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 #: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "Album" +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "Aggiungi" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "Genere" +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" +msgstr "Nome playlist" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" -msgstr "Bitrate" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" +msgstr "N° Brani" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "Nome file" +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "Proprietario" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_album.inc.php:43 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 +msgid "Actions" +msgstr "Azioni" + +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" +msgstr "" + +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "Modifica" + +#: ../../templates/show_similar_artists.inc.php:23 +#, fuzzy +msgid "Similar Artists" +msgstr "Tutti gli artisti" + +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" msgstr "" +#: ../../templates/show_similar_artists.inc.php:66 +#, fuzzy +msgid "Back" +msgstr "Traccia" + +#: ../../templates/show_similar_artists.inc.php:77 +#, fuzzy +msgid "Rename selected" +msgstr "Aggiorna selezione" + +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "Annulla" + +#: ../../templates/show_similar_artists.inc.php:91 +#, fuzzy +msgid "Advanced Options" +msgstr "Avanzato" + +#: ../../templates/show_similar_artists.inc.php:152 +#, fuzzy +msgid "Search Again" +msgstr "Cerca Ampache" + #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 #, fuzzy msgid "Song Title" msgstr "Titolo brano" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "Playlist" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "" @@ -1009,544 +1588,533 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" -msgstr "" - -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "Sconosciuto" - -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "Nome completo" - -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "Ultimo accesso" - -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "" +#: ../../templates/show_user_stats.inc.php:30 +#, fuzzy +msgid "Favorite Artists" +msgstr "Tutti gli artisti" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" -msgstr "" +#: ../../templates/show_user_stats.inc.php:43 +#, fuzzy +msgid "Favorite Albums" +msgstr "Tutti gli album" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" -msgstr "" +#: ../../templates/show_user_stats.inc.php:56 +#, fuzzy +msgid "Favorite Songs" +msgstr "Totale brani" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" -msgstr "" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "Riproduzione selezione casuale" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -#, fuzzy -msgid "Recently Played" -msgstr "Meno ascoltati" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" +msgstr "Totale voci" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" -msgstr "Traccia" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "Da genere" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" msgstr "Durata" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" -msgstr "Dati insufficienti" - -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" -msgstr "Copertine" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" +msgstr "Illimitato" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" -msgstr "Scarica" - -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "Modifica" - -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "Marca brano" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "" -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -#, fuzzy -msgid "File" -msgstr "file" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" +msgstr "Standard" -#: ../../templates/show_flag.inc.php:49 -#, fuzzy -msgid "Item" -msgstr "Stream" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" +msgstr "Meno ascoltati" -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" -msgstr "Motivo della marcatura" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "Tutti gli album" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" -msgstr "" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" +msgstr "Artista completo" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 +#: ../../templates/show_random.inc.php:76 #, fuzzy -msgid "Other" -msgstr "altro" +msgid "From catalog" +msgstr "da catalogo" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "Trovato" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" +msgstr "Accoda" -#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" +msgstr "Avvio nuova ricerca brano in" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "catalogo" + +#: ../../templates/show_adds_catalog.inc.php:25 #: ../../templates/show_verify_catalog.inc.php:26 #: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 #: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 msgid "Reading" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:26 +#, fuzzy +msgid "Editing Playlist" +msgstr "Playlist" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" msgstr "" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" msgstr "" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +#, fuzzy +msgid "Update" +msgstr "Aggiornato" + +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" msgstr "" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "Ricordami" + +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" +msgstr "Registra" + +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "Riproduci album" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "Azione" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" -msgstr "Volume" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" +msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 #, fuzzy -msgid "Repeat" -msgstr "Rifiuta" +msgid "Clean" +msgstr "Cancella informazioni" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "Casuale" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" +msgstr "" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 +#: ../../templates/show_admin_tools.inc.php:68 #, fuzzy -msgid "Remove" -msgstr "Remoto" +msgid "No Catalogs Found" +msgstr "Non è stato trovato alcun catalogo" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +#, fuzzy +msgid "Clean All" +msgstr "Vuota tutti i cataloghi" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" -msgstr "Aggiungi voce" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" +msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "Indirizzo iniziale" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +#, fuzzy +msgid "Add to All" +msgstr "Aggiungi a" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "Indirizzo finale" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +#, fuzzy +msgid "Update All" +msgstr "Aggiornato" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "Livello" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "Azzera stato del catalogo" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "Mostra brani duplicati" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "Nome completo" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "Cancella 'Ora in ascolto'" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "Data registrazione" +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +#, fuzzy +msgid "Generate New Config" +msgstr "Scrivi configurazione" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 +#: ../../templates/show_admin_tools.inc.php:93 #, fuzzy -msgid "Last Ip" -msgstr "Ultimo accesso" +msgid "Preferences Permissions" +msgstr "Impostazioni" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "In linea" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" +msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:96 #, fuzzy -msgid "Base Playlist" -msgstr "Nuova playlist" - -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "Crea nuova playlist" +msgid "Check for New Version" +msgstr "Controllo configurazione" -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 -msgid "Rating" -msgstr "Voto" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" +msgstr "Marca brano" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "Brano" +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +#, fuzzy +msgid "File" +msgstr "file" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr "Passso 2 - Creazione del file Ampache.cfg.php" +#: ../../templates/show_flag.inc.php:49 +#, fuzzy +msgid "Item" +msgstr "Stream" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" -msgstr "" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" +msgstr "Motivo della marcatura" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" -msgstr "Percorso Web" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "Marcatura" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" -msgstr "Nome del database desiderato" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" +msgstr "Sfoglia" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "Server MySQL" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "Uscita" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "Nome utente MySQL" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" +msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "Password MySQL" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" +msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" -msgstr "Scrivi configurazione" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" +msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "Ampache.cfg.php esiste" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" +msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "Ampache.cfg.php Configurato?" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" +msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" -msgstr "Controllo configurazione" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "Nome completo" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" -msgstr "Modifica utente esistente" - -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" -msgstr "E-mail" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "Ultimo accesso" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" -msgstr "Conferma password" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" +msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "Livello accesso utente" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" +msgstr "" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "Aggiorna utente" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" +msgstr "" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "Vari" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" +msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "Cerca" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "Album per" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" -msgstr "" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "Mostra tutti i brani di" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -#, fuzzy -msgid "Create" -msgstr "Bitrate" - -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "Continua" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" +msgstr "Aggiorna dai Tags" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "Annulla" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" +msgstr "" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "Inizio" +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 +msgid "Rating" +msgstr "Voto" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "Sfoglia" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +#, fuzzy +msgid "Current Playlist" +msgstr "Crea nuova playlist" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 #, fuzzy -msgid "Localplay" -msgstr "Riproduzione locale" +msgid "No Records Found" +msgstr "Non è stato trovato alcun catalogo" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "Impostazioni" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "Parametro" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" -msgstr "Uscita" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "Valore" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "Aggiornamento di" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "Applica a tutti" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "Catalogo" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." -msgstr "controllo informazioni tag dei brani trovati." +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "descrizione" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -#, fuzzy -msgid "Current Playlist" -msgstr "Crea nuova playlist" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" +msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/header.inc.php:71 +msgid "Log out" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" msgstr "" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "Riproduci" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" +msgstr "Consenso utente" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" -msgstr "Successivo" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" +msgstr "Accetto" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -#, fuzzy -msgid "Description" -msgstr "descrizione" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" +msgstr "Informazioni utente" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" +msgstr "E-mail" + +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" +msgstr "Conferma password" + +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "Registra utente" + +#: ../../templates/show_edit_album.inc.php:23 #, fuzzy -msgid "Version" -msgstr "Versione PHP" +msgid "Edit Album" +msgstr "Album" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" -msgstr "Disabilitato" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" +msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_edit_album.inc.php:47 #, fuzzy -msgid "Activate" -msgstr "Utente attivato" +msgid "Update Album" +msgstr "Riproduci album" + +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" +msgstr "" + +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" +msgstr "" #: ../../templates/show_install.inc.php:54 msgid "" @@ -1555,10 +2123,25 @@ msgid "" "depending upon the speed of your computer" msgstr "" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr "Passso 2 - Creazione del file Ampache.cfg.php" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "Nome del database desiderato" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "Server MySQL" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "Utente amministratore MySQL" @@ -1587,288 +2170,81 @@ msgstr "" msgid "Insert Database" msgstr "Inserisci database" -#: ../../templates/show_similar_artists.inc.php:23 -#, fuzzy -msgid "Similar Artists" -msgstr "Tutti gli artisti" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_similar_artists.inc.php:66 -#, fuzzy -msgid "Back" -msgstr "Traccia" - -#: ../../templates/show_similar_artists.inc.php:77 -#, fuzzy -msgid "Rename selected" -msgstr "Aggiorna selezione" - -#: ../../templates/show_similar_artists.inc.php:91 -#, fuzzy -msgid "Advanced Options" -msgstr "Avanzato" - -#: ../../templates/show_similar_artists.inc.php:152 -#, fuzzy -msgid "Search Again" -msgstr "Cerca Ampache" - #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "Crea nuova playlist" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" -msgstr "Rinomina" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +#, fuzzy +msgid "Create" +msgstr "Bitrate" + +#: ../../templates/show_edit_song.inc.php:23 +#, fuzzy +msgid "Edit Song" +msgstr "Modifica" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "O" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "" - -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" -msgstr "Aggiorna tags Id3" - -#: ../../templates/show_playlist.inc.php:30 -#, fuzzy -msgid "Normalize Tracks" -msgstr "Tracce totali" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -#, fuzzy -msgid "Play Random" -msgstr "Riproduzione casuale brani" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "Copertina" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "Anno" - -#: ../../templates/show_preference_admin.inc.php:22 -#, fuzzy -msgid "Preference Administration" -msgstr "Impostazioni" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "Parametro" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "minutes ago" -msgstr "Minuti" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "hours ago" -msgstr "ore" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "days ago" -msgstr "giorni" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "years ago" -msgstr "anno" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "Cerca Ampache" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "Parola chiave" - -#: ../../templates/show_search.inc.php:72 -msgid "Played" -msgstr "Ascoltato" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "Si" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "No" - -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" -msgstr "Bitrate min." - -#: ../../templates/show_search.inc.php:95 -#, fuzzy -msgid "One Star" -msgstr "Proprietario" - -#: ../../templates/show_search.inc.php:96 +#: ../../templates/show_edit_song.inc.php:88 #, fuzzy -msgid "Two Stars" -msgstr "Totale utenti" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "Operatore" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "E" - -#: ../../templates/show_search.inc.php:111 -msgid "Method" -msgstr "Modo" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "Fuzzy" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "Esatto" +msgid "Update Song" +msgstr "Aggiorna cataloghi" -#: ../../templates/show_search.inc.php:118 +#: ../../templates/show_edit_catalog.inc.php:22 #, fuzzy -msgid "Maximum Results" -msgstr "N° massimo risultati" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "Illimitato" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" -msgstr "" +msgid "Settings for" +msgstr "Impostazioni per catalogo in" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" +msgstr "Filtro nome file" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" +msgstr "Salva impostazioni catalogo" #: ../../templates/show_edit_access.inc.php:22 msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 #, fuzzy msgid "ACL Type" msgstr "tipo catalogo" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 #, fuzzy msgid "Stream Access" msgstr "Stream" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1876,411 +2252,375 @@ msgstr "" msgid "Start IP Address" msgstr "Indirizzo IP iniziale" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "Indirizzo IP finale" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 #, fuzzy msgid "Remote Key" msgstr "Remoto" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "Visualizza" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -#, fuzzy -msgid "Read" -msgstr "Casuale" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "Livello" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" -msgstr "Registrazione nuovo utente Ampache" - -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" -msgstr "Consenso utente" - -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" -msgstr "Accetto" - -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" -msgstr "Informazioni utente" - -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" -msgstr "Cancella informazioni" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "Riproduci album" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "Registra utente" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" +msgstr "Brano" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "Ricordami" - -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" -msgstr "Registra" - -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "Artista più popolare" - -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "Album più popolare" - -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" -msgstr "Genere più popolare" - -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "Brani più popolari" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" +msgstr "" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_edit_song.inc.php:23 +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 #, fuzzy -msgid "Edit Song" -msgstr "Modifica" +msgid "Show All" +msgstr "Mostra tutto" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" -msgstr "" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "Data" -#: ../../templates/show_edit_song.inc.php:88 +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 #, fuzzy -msgid "Update Song" -msgstr "Aggiorna cataloghi" +msgid "IP Address" +msgstr "Indirizzo IP finale" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" -msgstr "Generi" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" +msgstr "Importazione playlist da file" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "Nome file" + +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "Tipo playlist" + +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" +msgstr "Importa playlist" + +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" +msgstr "Visualizzazione..." + +#: ../../templates/show_mail_users.inc.php:23 #, fuzzy msgid "Send E-mail to Users" msgstr "Posta utenti" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "Statistiche catalogo" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "Album più popolare" + +#: ../../templates/show_mail_users.inc.php:53 #, fuzzy msgid "Latest Artist Additions" msgstr "Nuovi artisti aggiunti recentemente" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "Artista più popolare" + +#: ../../templates/show_mail_users.inc.php:64 #, fuzzy msgid "Latest Album Additions" msgstr "Nuovi album aggiunti recentemente" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "Brani più popolari" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 #, fuzzy msgid "Disabled Songs" msgstr "Mostra brani disabilitati" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 #, fuzzy msgid "Most Popular Threshold in days" msgstr "Brani più popolari" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "Oggetto" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "Messaggio" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "Invia Mail" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "Aggiunta di un nuovo utente" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "Aggiungi utente" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" +msgstr "" -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "Aggiungi accesso ad un Host" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" +msgstr "" -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_add_access.inc.php:82 +#: ../../templates/show_preference_admin.inc.php:22 #, fuzzy -msgid "Create ACL" -msgstr "Crea account" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "Valore" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "Applica a tutti" - -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" -msgstr "" +msgid "Preference Administration" +msgstr "Impostazioni" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" -msgstr "descrizione" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" +msgstr "Modifica utente esistente" -#: ../../templates/show_playlist_edit.inc.php:26 -#, fuzzy -msgid "Editing Playlist" -msgstr "Playlist" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "Livello accesso utente" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "Aggiorna utente" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" -msgstr "" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "Utenti connessi" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "Trova duplicati" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "Totale utenti" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "Tipo di ricerca" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "Dimensione catalogo" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "Artista e titolo" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "Durata catalogo" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "Artista, album e titolo" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" +msgstr "Brani duplicati" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" -msgstr "" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" +msgstr "Dimensione" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "Inizio ricerca copertine." +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "Continua" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "Cercato" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "Seleziona" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 #, fuzzy -msgid "None" -msgstr "No" +msgid "Object" +msgstr "Oggetto" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "Album per" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" +msgstr "Stato" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "Mostra tutti i brani di" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" +msgstr "Rifiuta" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "Riproduci tutti i brani di" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" +msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "Riproduci a caso i brani di" +#: ../../templates/show_song.inc.php:22 +msgid "Details" +msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" -msgstr "Aggiorna dai Tags" +#: ../../templates/show_song.inc.php:49 +msgid "Label" +msgstr "" -#: ../../templates/show_artist_box.inc.php:39 -#, fuzzy -msgid "Find duplicate artists" -msgstr "Trova duplicati" +#: ../../templates/show_song.inc.php:53 +msgid "Language" +msgstr "" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "Riproduzione selezione casuale" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" -msgstr "Totale voci" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "Rinomina" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "Da genere" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" -msgstr "Standard" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" +msgstr "Aggiorna tags Id3" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" -msgstr "Meno ascoltati" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "Trova duplicati" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "Tutti gli album" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "Tipo di ricerca" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" -msgstr "Artista completo" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "Artista e titolo" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" -msgstr "Minuti" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "Artista, album e titolo" -#: ../../templates/show_random.inc.php:59 +#: ../../templates/show_playlist.inc.php:30 #, fuzzy -msgid "From catalog" -msgstr "da catalogo" +msgid "Normalize Tracks" +msgstr "Tracce totali" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" -msgstr "Accoda" - -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" -msgstr "In esecuzione" - -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" -msgstr "Visualizzazione..." - -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -#, fuzzy -msgid "Modules" -msgstr "Modo" - -#: ../../templates/sidebar_preferences.inc.php:34 -#, fuzzy -msgid "Localplay Modules" -msgstr "Controllo riproduzione locale" - -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" -msgstr "" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" +msgstr "Successivo" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" -msgstr "" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +#, fuzzy +msgid "Base Playlist" +msgstr "Nuova playlist" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" -msgstr "" +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" +msgstr "Crea nuova playlist" #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" @@ -2299,88 +2639,32 @@ msgstr "Riproduzione locale" msgid "Get Art" msgstr "Preleva copertina" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "Ampache Debug" - -#: ../../templates/show_edit_catalog.inc.php:22 +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 #, fuzzy -msgid "Settings for" -msgstr "Impostazioni per catalogo in" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "Inserimento automatico campi" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "nome album" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "nome artista" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr " commento id3" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "genere" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "numero traccia (con aggiunta di 0 in fronte)" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "tiolo brano" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "anno" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "altro" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "tipo catalogo" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "Filtro nome file" +msgid "Description" +msgstr "descrizione" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "Filtro cartelle" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +#, fuzzy +msgid "Version" +msgstr "Versione PHP" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" -msgstr "(non inizianti o terminanti per '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +#, fuzzy +msgid "Activate" +msgstr "Utente attivato" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" -msgstr "Salva impostazioni catalogo" +#: ../../templates/show_plugins.inc.php:46 +#, fuzzy +msgid "Deactivate" +msgstr "Utente attivato" #: ../../templates/show_democratic_playlist.inc.php:38 msgid "Playing from base Playlist" @@ -2400,47 +2684,26 @@ msgstr "" msgid "Add Vote" msgstr "" -#: ../../templates/show_edit_artist.inc.php:23 -#, fuzzy -msgid "Edit Artist" -msgstr "Artista" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "Genere più popolare" -#: ../../templates/show_edit_artist.inc.php:41 -msgid "Update Artist" +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -#, fuzzy -msgid "Edit Album" -msgstr "Album" - -#: ../../templates/show_edit_album.inc.php:47 -#, fuzzy -msgid "Update Album" -msgstr "Riproduci album" - -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" msgstr "" -#: ../../templates/show_plugins.inc.php:46 +#: ../../templates/show_edit_artist.inc.php:23 #, fuzzy -msgid "Deactivate" -msgstr "Utente attivato" - -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "Stream" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "" +msgid "Edit Artist" +msgstr "Artista" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" +#: ../../templates/show_edit_artist.inc.php:41 +msgid "Update Artist" msgstr "" #: ../../templates/show_play_selected.inc.php:28 @@ -2463,185 +2726,224 @@ msgstr "Rimuovi brani selezionati" msgid "Add to" msgstr "Aggiungi a" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "Aggiunta di un nuovo utente" + +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "Aggiungi utente" + +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "Copertina" + +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "Data" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "" + +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "Trova copertina album" + +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" +msgstr "Scarica" + +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "Nome completo" + +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" +msgstr "Data registrazione" + +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 #, fuzzy -msgid "IP Address" -msgstr "Indirizzo IP finale" +msgid "Last Ip" +msgstr "Ultimo accesso" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "In linea" + +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -"Nel formulario seguente inserisci od un percorso locale (ad es. /data/" -"musica) o l' ULR ad una installazione remota di Ampache (ad es. http://" -"theotherampache.com)" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" -msgstr "Nome catalogo" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" +msgstr "Aggiornamento di" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "Locale" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "Catalogo" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" -msgstr "Remoto" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." +msgstr "controllo informazioni tag dei brani trovati." -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" -msgstr "Filtro nome file" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" +msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "Genera playliste dai file m3u" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" +msgstr "Copertine" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "Aggiungi catalogo" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -#, fuzzy -msgid "Clear Playlist" -msgstr "Nuova playlist" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" +msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" -msgstr "Importazione playlist da file" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" +msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "Tipo playlist" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "Posta utenti" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" -msgstr "Importa playlist" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "Precedente" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -#, fuzzy -msgid "Favorite Artists" -msgstr "Tutti gli artisti" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" +msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -#, fuzzy -msgid "Favorite Albums" -msgstr "Tutti gli album" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" +msgstr "" -#: ../../templates/show_user_stats.inc.php:56 +#: ../../templates/sidebar_preferences.inc.php:32 #, fuzzy -msgid "Favorite Songs" -msgstr "Totale brani" - -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" -msgstr "Brani duplicati" - -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" -msgstr "Durata" - -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" -msgstr "Dimensione" +msgid "Modules" +msgstr "Modo" -#: ../../templates/show_list_duplicates.inc.php:96 +#: ../../templates/sidebar_preferences.inc.php:34 #, fuzzy -msgid "Disable Songs" -msgstr "Mostra brani disabilitati" +msgid "Localplay Modules" +msgstr "Controllo riproduzione locale" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" -msgstr "" +#: ../../templates/show_account.inc.php:40 +#, fuzzy +msgid "New Password" +msgstr "Password" + +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "Azzera stati" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 +#: ../../templates/show_account.inc.php:64 #, fuzzy -msgid "Statistics" -msgstr "Statistiche catalogo" +msgid "Update Account" +msgstr "Crea account" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" -msgstr "" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" +msgstr "Modifica" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" -msgstr "" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "impostazioni" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" -msgstr "" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" +msgstr "Aggiorna impostazioni" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" -msgstr "" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" +msgstr "Ampache Debug" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2653,14 +2955,6 @@ msgstr "Aggiornamento di" msgid "Checking" msgstr "Controllo in corso" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "Avvio nuova ricerca brano in" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "catalogo" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2755,6 +3049,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "Ampache.cfg.php esiste" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2762,6 +3061,11 @@ msgid "" "\tit is not currently readable by your webserver." msgstr "" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "Ampache.cfg.php Configurato?" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2778,484 +3082,326 @@ msgid "" "cfg.php" msgstr "" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "Cerca Ampache" -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" +msgstr "Parola chiave" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" +#: ../../templates/show_search.inc.php:72 +msgid "Played" +msgstr "Ascoltato" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "Modifica" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "Si" -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "impostazioni" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "No" -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "Aggiorna impostazioni" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" +msgstr "Bitrate min." -#: ../../templates/show_account.inc.php:40 +#: ../../templates/show_search.inc.php:95 #, fuzzy -msgid "New Password" -msgstr "Password" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "Azzera stati" +msgid "One Star" +msgstr "Proprietario" -#: ../../templates/show_account.inc.php:64 +#: ../../templates/show_search.inc.php:96 #, fuzzy -msgid "Update Account" -msgstr "Crea account" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "Precedente" +msgid "Two Stars" +msgstr "Totale utenti" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" +msgstr "Operatore" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" +#: ../../templates/show_search.inc.php:105 +msgid "AND" +msgstr "E" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" +#: ../../templates/show_search.inc.php:111 +msgid "Method" +msgstr "Modo" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" +msgstr "Fuzzy" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" +msgstr "Esatto" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "Riproduci casualmente dall' album" +#: ../../templates/show_search.inc.php:118 +#, fuzzy +msgid "Maximum Results" +msgstr "N° massimo risultati" -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "Trova copertina album" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "Nome playlist" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" +msgstr "" -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "N° Brani" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" +msgstr "" -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "Proprietario" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" +msgstr "" -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "Non c'è nessun utente registrato con questo nome" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" +msgstr "" -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "La chiave di validazione usata non è corretta" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" +msgstr "Aggiungi voce" -#: ../../activate.php:51 -msgid "User activated" -msgstr "Utente attivato" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "Indirizzo iniziale" -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "ID utente attivato ed utilizzabile" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "Indirizzo finale" -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../democratic.php:80 -#, fuzzy -msgid "Playlist Cleared" -msgstr "Playlist creata." +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "Aggiungi accesso ad un Host" -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/flag.class.php:280 -#, fuzzy -msgid "Approved" -msgstr "Spostato" - -#: ../../lib/class/flag.class.php:281 +#: ../../templates/show_add_access.inc.php:84 #, fuzzy -msgid "Pending" -msgstr "Aggiunta" +msgid "Create ACL" +msgstr "Crea account" -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" -msgstr "aggiornato a" - -#: ../../lib/class/song.class.php:341 -msgid "Rate" -msgstr "Voto" - -#: ../../lib/class/song.class.php:345 -msgid "Mode" -msgstr "Modo" - -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "Dimensione file" - -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" -msgstr "Gestione utenti" - -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "Playlists" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "Errore: Impossibile aprire" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" -msgstr "Errore: Impossibile cambiare alla cartella" - -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "Errore, impossibile leggere la dimensione del file" - -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "non è leggibile da ampache" - -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" -msgstr "Avvio costruzione catalogo" - -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" -msgstr "Sincronizzazione remota in corso" - -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" -msgstr "Aggiunta playlist da" +#: ../../templates/show_disabled_songs.inc.php:65 +#, fuzzy +msgid "Remove" +msgstr "Remoto" -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" -msgstr "Catalogo terminato" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" +msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "Tempo impiegato" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" +msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "Totale brani" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" +msgstr "Percorso Web" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" -msgstr "Brani per secondo" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "Nome utente MySQL" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" -msgstr "Non è necessario aggiornare" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "Password MySQL" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" -msgstr "Aggiornamento remoto in corso" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" +msgstr "Scrivi configurazione" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" -msgstr "Aggiornamento catalogo terminato" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" +msgstr "Controllo configurazione" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -"Impossibile caricare la libreria XMLRPC, verifica che XML-RPC sia abilitato" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "Errore connettendosi a" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" -msgstr "Codice" - -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" -msgstr "Motivazione" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" -msgstr "Terminato aggiornamento remoto catalogo(ghi)." - -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" -msgstr "Pulizia catalogo terminata" - -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" -msgstr "files rimossi" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" +msgstr "ID utente attivato ed utilizzabile" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr "TROVATO" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "Ricerca nuova copertina" - -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Update Finished." -msgstr "Aggiornamento catalogo terminato" - -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Checked" -msgstr "Controllo in corso" - -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "songs updated." -msgstr "è stata aggiornata" - -#: ../../lib/class/localplay.class.php:647 -#, fuzzy -msgid "Stopped" -msgstr "Arresta" - -#: ../../lib/class/localplay.class.php:650 -#, fuzzy -msgid "Paused" -msgstr "Pausa" - -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" -msgstr "Abilitato" - -#: ../../lib/preferences.php:272 -msgid "M3U" -msgstr "M3U" - -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "M3U semplice" - -#: ../../lib/preferences.php:274 -msgid "PLS" -msgstr "PLS" - -#: ../../lib/preferences.php:275 -msgid "Asx" -msgstr "Asx" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" +msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" -msgstr "RAM" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" +msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:310 -#, fuzzy -msgid "Disabled" -msgstr "Disabilitato" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" +msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" -msgstr "Non riprodurre" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" +msgstr "Errore: Nessuna parola chiave inserita" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" -msgstr "" +#: ../../ratings.php:32 +msgid "Rating Updated" +msgstr "Voto aggiornato" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" -msgstr "E' ok" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" +msgstr "Il voto per questo oggetto è stato aggiornato" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" -msgstr "lo adoro!" - -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "Inglese" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" +msgstr "" -#: ../../lib/general.lib.php:496 -msgid "British English" -msgstr "Inglese britannico" +#: ../../preferences.php:91 +msgid "Error Update Failed" +msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" -msgstr "Turco" +#: ../../preferences.php:96 +msgid "Your Account has been updated" +msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" -msgstr "Cinese semplificato" +#: ../../update.php:51 +#, fuzzy +msgid "Ampache Update" +msgstr "Ampache Debug" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" +msgstr "Inizio aggiornamento da Tags" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" +msgstr "Aggiornamento da Tags ultimato" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" -msgstr "Errore Accesso negato" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" +msgstr "Ritorna" -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "" +#: ../../artists.php:186 +msgid "Show Artists starting with" +msgstr "Mostra artisti che iniziano per" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" -msgstr "Riproduzione locale" +#: ../../playlist.php:57 +msgid "Playlist Created" +msgstr "Playlist creata." -#: ../../lib/ui.lib.php:556 -#, fuzzy -msgid "Random Play" -msgstr "Casuale" +#: ../../playlist.php:57 +msgid " has been created" +msgstr " è stata creata" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -#, fuzzy -msgid "Admin-Catalog" -msgstr "Aggiungi catalogo" +#: ../../playlist.php:78 +msgid "Playlist Updated" +msgstr "Playlist aggiornata" -#: ../../lib/ui.lib.php:576 +#: ../../playlist.php:79 #, fuzzy -msgid "Admin-User Management" -msgstr "Gestione utenti" +msgid "has been updated and is now" +msgstr "è stata aggiornata" -#: ../../lib/ui.lib.php:580 +#: ../../playlist.php:101 #, fuzzy -msgid "Admin-Mail Users" -msgstr "Posta utenti" +msgid "Playlist Imported" +msgstr "Playlist creata." -#: ../../lib/ui.lib.php:584 +#: ../../playlist.php:130 #, fuzzy -msgid "Admin-Manage Access Lists" -msgstr "Liste accesso" +msgid "Empty Playlists Deleted" +msgstr "Playlist cancellata" -#: ../../lib/ui.lib.php:588 +#: ../../flag.php:45 #, fuzzy -msgid "Admin-Site Preferences" -msgstr "Impostazioni amministrazione" - -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "" +msgid "Item Flagged" +msgstr "Marcata da" -#: ../../lib/ui.lib.php:596 +#: ../../flag.php:45 #, fuzzy -msgid "Browse Music" -msgstr "Sfoglia" +msgid "The specified item has been flagged" +msgstr "La playlist richiesta è stata cancellata" #: ../../albums.php:32 msgid "Album Art Cleared" @@ -3280,127 +3426,112 @@ msgstr "" "La copertina non può essere rintracciata ora.Può essere dovuto al fatto che " "Amazon è occupato o l' album non è presente nella loro collezione." -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "Copertina inserita" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "Inizio aggiornamento da Tags" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "Aggiornamento da Tags ultimato" +#: ../../register.php:73 +msgid "Error Captcha Required" +msgstr "Errore Captcha richiesto" -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "Ritorna" +#: ../../register.php:80 +msgid "Error Captcha Failed" +msgstr "Errore Captcha fallito" -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" +#: ../../register.php:92 +msgid "You did not enter a username" +msgstr "Non hai inserito un nome utente" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "file" +#: ../../register.php:122 +msgid "You must enter a password" +msgstr "Devi inserire una password" -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "" +#: ../../register.php:126 +msgid "Your passwords do not match" +msgstr "Le passord non corrispondono" -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "" +#: ../../register.php:158 +msgid "Error: Insert Failed" +msgstr "Errore: inserimento fallito" -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "" +#: ../../register.php:175 +msgid "Registration Complete" +msgstr "Registrazione completata" -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../modules/horde/Browser.php:903 -#, php-format +#: ../../democratic.php:80 +#, fuzzy +msgid "Playlist Cleared" +msgstr "Playlist creata." + +#: ../../bin/print_tags.inc:66 msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +"[print_tags.php.inc]\n" +"This commandline script will display the tag information for the specified " +"filename as it will \n" +"appear to Ampache. \n" +" \n" msgstr "" -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "" +#: ../../bin/print_tags.inc:72 +msgid "Filename:" +msgstr "Nome file:" -#: ../../playlist.php:57 -msgid "Playlist Created" -msgstr "Playlist creata." +#~ msgid "No Catalogs Found!" +#~ msgstr "Non è stato trovato alcun catalogo" -#: ../../playlist.php:57 -msgid " has been created" -msgstr " è stata creata" +#, fuzzy +#~ msgid "Play Random" +#~ msgstr "Riproduzione casuale brani" -#: ../../playlist.php:78 -msgid "Playlist Updated" -msgstr "Playlist aggiornata" +#~ msgid "Ampache New User Registration" +#~ msgstr "Registrazione nuovo utente Ampache" -#: ../../playlist.php:79 -#, fuzzy -msgid "has been updated and is now" -msgstr "è stata aggiornata" +#~ msgid "Clear Info" +#~ msgstr "Cancella informazioni" -#: ../../playlist.php:101 -#, fuzzy -msgid "Playlist Imported" -msgstr "Playlist creata." +#~ msgid "Play All Songs By" +#~ msgstr "Riproduci tutti i brani di" + +#~ msgid "Play Random Songs By" +#~ msgstr "Riproduci a caso i brani di" -#: ../../playlist.php:130 #, fuzzy -msgid "Empty Playlists Deleted" -msgstr "Playlist cancellata" +#~ msgid "Find duplicate artists" +#~ msgstr "Trova duplicati" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "" +#~ msgid "Minutes" +#~ msgstr "Minuti" -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "" +#, fuzzy +#~ msgid "Disable Songs" +#~ msgstr "Mostra brani disabilitati" -#: ../../login.php:96 -msgid "No local account found" -msgstr "" +#~ msgid "Play Random from Album" +#~ msgstr "Riproduci casualmente dall' album" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" -msgstr "Errore: Nessuna parola chiave inserita" +#~ msgid "No user with this name registered" +#~ msgstr "Non c'è nessun utente registrato con questo nome" -#: ../../artists.php:186 -msgid "Show Artists starting with" -msgstr "Mostra artisti che iniziano per" +#~ msgid "The validation key used isn't correct." +#~ msgstr "La chiave di validazione usata non è corretta" -#: ../../bin/print_tags.inc:66 -msgid "" -"[print_tags.php.inc]\n" -"This commandline script will display the tag information for the specified " -"filename as it will \n" -"appear to Ampache. \n" -" \n" -msgstr "" +#~ msgid "User activated" +#~ msgstr "Utente attivato" -#: ../../bin/print_tags.inc:72 -msgid "Filename:" -msgstr "Nome file:" +#~ msgid "Error Access Denied" +#~ msgstr "Errore Accesso negato" #~ msgid "Album Art Already Found" #~ msgstr "Copertina album già trovata" @@ -3470,9 +3601,6 @@ msgstr "Nome file:" #~ msgid "Users" #~ msgstr "Utenti" -#~ msgid "Mail Users" -#~ msgstr "Posta utenti" - #, fuzzy #~ msgid "Config" #~ msgstr "Scrivi configurazione" @@ -3792,12 +3920,6 @@ msgstr "Nome file:" #~ msgid "Playback" #~ msgstr "Riproduzione" -#~ msgid "Increase Volume" -#~ msgstr "Aumenta volume" - -#~ msgid "Decrease Volume" -#~ msgstr "Diminuisci volume" - #~ msgid "Clear queue" #~ msgstr "Cancella coda" diff --git a/locale/nl_NL/LC_MESSAGES/messages.po b/locale/nl_NL/LC_MESSAGES/messages.po index 6c4b570e..1a71622b 100644 --- a/locale/nl_NL/LC_MESSAGES/messages.po +++ b/locale/nl_NL/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Ampache SVN 693\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: 2006-11-14 08:00+0100\n" "Last-Translator: Terence Theijn <terence.theijn@gmail.com>\n" "Language-Team: Dutch <terence.theijn@gmail.com>\n" @@ -16,281 +16,1100 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" -msgstr "Fout: Verificatie Verplicht" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" +msgstr "Sessie Verlopen: log opnieuw in op" -#: ../../register.php:89 -msgid "Error Captcha Failed" -msgstr "Fout: Verificatie Niet Goed" +#: ../../lib/class/album.class.php:217 +msgid "Disk" +msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" -msgstr "U <U>moet</U> de gebruikersovereenkomst accepteren" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "Artiesten" -#: ../../register.php:101 -msgid "You did not enter a username" -msgstr "U heeft geen gebruikersnaam opgegeven" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "Diverse" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" -msgstr "Vul uw voor- en achternaam in" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "Fout: Kan niet openen" -#: ../../register.php:131 -msgid "You must enter a password" -msgstr "U moet een paswoord opgeven" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "Alles" -#: ../../register.php:135 -msgid "Your passwords do not match" -msgstr "Uw opgegeven paswoorden komen niet overeen" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "Bekijk" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" -msgstr "Fout Gebruikersnaam bestaat al" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +#, fuzzy +msgid "Read" +msgstr "Lees" -#: ../../register.php:157 -msgid "Error: Insert Failed" -msgstr "Fout: Gebruiker kon niet worden aangemaakt" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" +msgstr "Lezen/Schrijven" -#: ../../register.php:174 -msgid "Registration Complete" -msgstr "Registratie Compleet" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" +msgstr "" -#: ../../update.php:51 +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "dag" + +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "dagen" + +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "uur" + +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "uren" + +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" +msgstr "Start Remote Synchronisatie" + +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "Fout: Kan niet naar directory veranderen" + +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "Fout: Kan bestands grootte niet opvragen voor" + +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "is niet leesbaar voor Ampache" + +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" +msgstr "Start bouwen van Catalogus" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "Gevonden" + +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 #, fuzzy -msgid "Ampache Update" -msgstr "Ampache Bijwerken" +msgid "None" +msgstr "Nee" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" -msgstr "Sessie Verlopen: log opnieuw in op" +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" +msgstr "Speellijst toegevoegd van" -#: ../../ratings.php:32 -msgid "Rating Updated" -msgstr "Waardering Bijgewerkt" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" +msgstr "Start Zoeken naar Album Hoes" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" -msgstr "Uw Waardeering voor dit object is bijgewerkt" +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "Doorzocht" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" +msgstr "Catalogus Klaar" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "Totale Tijd" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "Totaal Aantal Liedjes" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "Liedjes per Seconde" + +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "Bijgewerkt" + +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "Geen Update Nodig" + +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "Bezig met bijwerken van Remote Catalogus" + +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" +msgstr "Bijwerken Catalogus Gereed" + +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "Fout" + +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +msgstr "Kan XMLRPC library niet laden, check of XML-RPC aanstaat" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "Fout met connectie naar" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" msgstr "" -#: ../../admin/flag.php:97 +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "Reden" + +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "Klaar met Bijwerken van Remote Catalogus(sen)" + +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "Toegevoegd" + +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" +msgstr "" + +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "Opschoning Catalogus Gereed" + +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "files verwijderd" + +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" + +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr " GEVONDEN" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "Bezig met zoeken naar nieuwe album hoes" + +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Song Updated" -msgstr "Liedje Bijgewerkt" +msgid "Update Finished." +msgstr "Bijwerken Catalogus Gereed" -#: ../../admin/flag.php:97 +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "The requested song has been updated" -msgstr "Het gevraagde liedje is bijgewerkt" +msgid "Checked" +msgstr "Bezig met Controleren" -#: ../../admin/flag.php:139 +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Album Updated" -msgstr "Bijgewerkt" +msgid "songs updated." +msgstr "liedjes bijgewerkt." -#: ../../admin/flag.php:181 +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "Titel" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "bijgewerkt naar" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "Modus" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "Tijd" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "Nummer" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "Bestands grootte" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "Artiest" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "Album" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "Jaar" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "Commentaar" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "Genre" + +#: ../../lib/class/flag.class.php:280 #, fuzzy -msgid "Artist Updated" -msgstr "Speellijst bijgewerkt" +msgid "Approved" +msgstr "Verplaatst" -#: ../../admin/flag.php:246 +#: ../../lib/class/flag.class.php:281 #, fuzzy -msgid "Songs Updated" -msgstr "Liedje Bijgewerkt" +msgid "Pending" +msgstr "Bezig met Toevoegen" -#: ../../admin/flag.php:254 +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "Verwijder" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "Opnieuw Taggen" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "Opnieuw encoderen" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 #, fuzzy -msgid "Flag Removed" -msgstr "Markering verwijderd" +msgid "Other" +msgstr "anders" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" -msgstr "Markering verwijderd van" +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "Onbekend" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "Nu Speelt" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "Gestopt" + +#: ../../lib/class/localplay.class.php:633 +#, fuzzy +msgid "Paused" +msgstr "Gespeeld" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 +msgid "Error Username Required" +msgstr "Fout Gebruikersnaam Verplicht" + +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 +msgid "Error Passwords don't match" +msgstr "Fout Paswoorden zijn niet gelijk" + +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "Liedjes" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" -msgstr "Liedjes Gedeactiveerd" +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" +msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" -msgstr "De gevraagde liedjes zijn gedeactiveerd" +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" +msgstr "Beheer Gebruikers" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" -msgstr "Liedjes Geactiveerd" +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" +msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" -msgstr "De Gevraagde liedjes zijn geactiveerd" +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "Speellijsten" -#: ../../admin/flag.php:305 +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" +msgstr "" + +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 #, fuzzy -msgid "Flagged Records" -msgstr "Gemarkeerd door" +msgid "Catalogs" +msgstr "Catalogus" + +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" +msgstr "" + +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" +msgstr "" + +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" +msgstr "" + +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" +msgstr "" + +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" +msgstr "" + +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" +msgstr "Niet Afspelen" + +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "Het is vrij slecht" + +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "Het is goed" + +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "Het is Vrij Goed" + +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "Ik ben er gek van" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "Het is te Gek" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "Niet te geloven" + +#: ../../lib/preferences.php:160 +msgid "Enable" +msgstr "Activeer" + +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" +msgstr "Deactiveer" + +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" +msgstr "" + +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "Democratisch" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +#, fuzzy +msgid "Localplay" +msgstr "Lokaal Afspelen" + +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" +msgstr "" + +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "" + +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "" + +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:226 +#, fuzzy +msgid "Disabled" +msgstr "Deactiveer" + +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "Gebruiker" + +#: ../../lib/preferences.php:228 +msgid "Manager" +msgstr "" + +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" +msgstr "Beheer" + +#: ../../lib/preferences.php:249 +msgid "Send on Add" +msgstr "" + +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" + +#: ../../lib/preferences.php:251 +msgid "Clear on Send" +msgstr "" + +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" +msgstr "" + +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "" + +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "Amerikaans Engels" + +#: ../../lib/general.lib.php:436 +msgid "British English" +msgstr "Engels" + +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "Turks" + +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "Simpel Chinees" + +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "Aan" + +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "Uit" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "seconden geleden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "minutes ago" +msgstr "minuten geleden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "hours ago" +msgstr "uren geleden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "days ago" +msgstr "dagen geleden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "weken gelden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "maanden geleden" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +#, fuzzy +msgid "years ago" +msgstr "jaren geleden" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "Begin" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "Lokaal Afspelen" + +#: ../../lib/ui.lib.php:487 +#, fuzzy +msgid "Random Play" +msgstr "Willekeurig Aspelen" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "Speellijst" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "Zoeken" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "Instellingen" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +#, fuzzy +msgid "Admin-Catalog" +msgstr "Voeg Catalogus Toe" + +#: ../../lib/ui.lib.php:507 +#, fuzzy +msgid "Admin-User Management" +msgstr "Gebruikers Overeenkomst" + +#: ../../lib/ui.lib.php:511 +#, fuzzy +msgid "Admin-Mail Users" +msgstr "Mail Gebruikers" + +#: ../../lib/ui.lib.php:515 +#, fuzzy +msgid "Admin-Manage Access Lists" +msgstr "Toegangs Regels" + +#: ../../lib/ui.lib.php:519 +#, fuzzy +msgid "Admin-Site Preferences" +msgstr "Beheer Site Instellingen" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "Beheer Modules" + +#: ../../lib/ui.lib.php:527 +#, fuzzy +msgid "Browse Music" +msgstr "Bladeren" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +#, fuzzy +msgid "Statistics" +msgstr "Statistieken" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "Aanbevelingen" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 +msgid "Name" +msgstr "Naam" + +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" + +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" +msgstr "" + +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +#, fuzzy +msgid "Recently Played" +msgstr "Minst Gespeeld" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "Paswoord" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "bestand" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "Bestands uploads niet gesupport" + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "Geen bestand geupload" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "Er was een probleem met de bestands upload: %s is niet geupload" + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" +"Er was een probleem met de bestands upload: de bestands groote %s was groter " +"dan het maximummaximum grootte (%d bytes)" + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" +"Er was een probleem met de bestands upload: Het bestand %s is gedeeltelijk " +"geupload." #: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 #, fuzzy msgid "Catalog Updated" msgstr "Bijwerken Catalogus Gereed" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 #, fuzzy msgid "Catalog Deleted" msgstr "Catalogus Type" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../admin/catalog.php:115 +#: ../../admin/catalog.php:112 #, fuzzy msgid "Songs Removed" msgstr "Liedjes verwijderd" -#: ../../admin/catalog.php:118 +#: ../../admin/catalog.php:115 msgid "No Songs Removed" msgstr "Geen Liedjes Verwijderd" -#: ../../admin/catalog.php:121 +#: ../../admin/catalog.php:118 #, fuzzy msgid "Disabled Songs Processed" msgstr "Laat gedeactiveerde Liedjes Zien" -#: ../../admin/catalog.php:141 +#: ../../admin/catalog.php:138 #, fuzzy msgid "Catalog Cleaned" msgstr "Opschoning Catalogus Gereed" -#: ../../admin/catalog.php:191 +#: ../../admin/catalog.php:188 #, fuzzy msgid "Catalog Created" msgstr "Catalogus Gecreeerd" -#: ../../admin/catalog.php:208 +#: ../../admin/catalog.php:205 #, fuzzy msgid "Catalog statistics cleared" msgstr "Catalogus Statistieken opgeschoond" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "Now Playing Cleared" msgstr "Nu Speelt Opgeschoond" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "All now playing data has been cleared" msgstr "Alle Nu Speelt data opgeschoond" -#: ../../admin/catalog.php:233 +#: ../../admin/catalog.php:230 #, fuzzy msgid "No Disabled songs found" msgstr "Geen Gedeactiveerde Liedjes gevonden" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 #, fuzzy msgid "Delete Catalog" msgstr "Verwijder Catalogus" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Do you really want to delete this catalog?" msgstr "Weet je zeker dat je deze catalogus wilt verwijderen?" -#: ../../admin/catalog.php:261 +#: ../../admin/catalog.php:258 msgid "Album Art Search Finished" msgstr "Album Hoes Zoeken beeindigd" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 -msgid "Error Username Required" -msgstr "Fout Gebruikersnaam Verplicht" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "Song Updated" +msgstr "Liedje Bijgewerkt" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 -msgid "Error Passwords don't match" -msgstr "Fout Paswoorden zijn niet gelijk" +#: ../../admin/flag.php:97 +#, fuzzy +msgid "The requested song has been updated" +msgstr "Het gevraagde liedje is bijgewerkt" + +#: ../../admin/flag.php:139 +#, fuzzy +msgid "Album Updated" +msgstr "Bijgewerkt" + +#: ../../admin/flag.php:181 +#, fuzzy +msgid "Artist Updated" +msgstr "Speellijst bijgewerkt" + +#: ../../admin/flag.php:246 +#, fuzzy +msgid "Songs Updated" +msgstr "Liedje Bijgewerkt" + +#: ../../admin/flag.php:254 +#, fuzzy +msgid "Flag Removed" +msgstr "Markering verwijderd" -#: ../../admin/users.php:79 +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "Markering verwijderd van" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "" + +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "Liedjes Gedeactiveerd" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "De gevraagde liedjes zijn gedeactiveerd" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "Liedjes Geactiveerd" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "De Gevraagde liedjes zijn geactiveerd" + +#: ../../admin/flag.php:305 +#, fuzzy +msgid "Flagged Records" +msgstr "Gemarkeerd door" + +#: ../../admin/users.php:78 msgid "User Updated" msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/users.php:78 msgid "updated" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "Fout Gebruikersnaam bestaat al" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 #: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 #: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 msgid "Guest" msgstr "Gast" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "Gebruiker" - -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" -msgstr "Beheer" - -#: ../../admin/users.php:119 +#: ../../admin/users.php:118 msgid "New User Added" msgstr "" -#: ../../admin/users.php:124 +#: ../../admin/users.php:123 msgid "User Enabled" msgstr "" -#: ../../admin/users.php:129 +#: ../../admin/users.php:128 msgid "User Disabled" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" -msgstr "Fout" - -#: ../../admin/users.php:132 +#: ../../admin/users.php:131 msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../admin/users.php:154 +#: ../../admin/users.php:153 msgid "User Deleted" msgstr "Gebruiker Verwijderd" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Delete Error" msgstr "Verwijder Fout" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Unable to delete last Admin User" msgstr "Kan de laatste admin gebruiker niet verwijderen" -#: ../../admin/users.php:163 +#: ../../admin/users.php:162 msgid "Deletion Request" msgstr "Verwijder Verzoek" -#: ../../admin/users.php:164 +#: ../../admin/users.php:163 msgid "Are you sure you want to permanently delete" msgstr "Weet je zeker dat je dit permanent wilt verwijderem" @@ -329,417 +1148,86 @@ msgstr "Verwijderd" msgid "Your Access List Entry has been removed" msgstr "Uw Toegangs Regel is verwijderd" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "Toegevoegd" - #: ../../admin/access.php:40 msgid "Your new Access List Entry has been created" msgstr "Uw Nieuwe Toegangs Regel is gecreerd" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" -msgstr "Bijgewerkt" - #: ../../admin/access.php:45 #, fuzzy msgid "Access List Entry updated" msgstr "Uw Toegangs Regel is bijgewerkt" -#: ../../admin/system.php:64 -#, fuzzy -msgid "Export Failed" -msgstr "Export Gefaalt" - -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" -msgstr "Geen Catalogus Gevonden" - -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "Voeg Catalogus Toe" - -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "Catalogus Statistieken" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "dag" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "dagen" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "uur" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "uren" - -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "Gebruikers Totaal" - -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "Actieve Gebruikers" - -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "" - -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "Artiesten" - -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "Liedjes" - -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "Catalogus Grootte" - -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "Catalogus Tijd" - -#: ../../admin/mail.php:260 +#: ../../admin/mail.php:57 msgid "E-mail Sent" msgstr "E-mail Verzonden" -#: ../../admin/mail.php:261 +#: ../../admin/mail.php:58 msgid "Your E-mail was successfully sent." msgstr "Uw E-mail is succesvol verzonden." -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" - -#: ../../preferences.php:86 -msgid "Error Update Failed" -msgstr "" - -#: ../../preferences.php:91 -msgid "Your Account has been updated" -msgstr "" - -#: ../../flag.php:45 -#, fuzzy -msgid "Item Flagged" -msgstr "Item Gemarkeerd" - -#: ../../flag.php:45 -#, fuzzy -msgid "The specified item has been flagged" -msgstr "Het gevraagde item is gemaarkeerd" - -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -#, fuzzy -msgid "Catalogs" -msgstr "Catalogus" - -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" -msgstr "Naam" - -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "Actie" - -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" -msgstr "Voeg Toe" - -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" -msgstr "Verifieer" - -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 +#: ../../admin/system.php:64 #, fuzzy -msgid "Clean" -msgstr "Wis" - -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "Alles" +msgid "Export Failed" +msgstr "Export Gefaalt" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "Verwijder" +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "Speel" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -#, fuzzy -msgid "No Catalogs Found" -msgstr "Geen Catalogus Gevonden" - -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -#, fuzzy -msgid "Clean All" -msgstr "Schoon Alle" - -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" -msgstr "Verifieer Alle" - -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -#, fuzzy -msgid "Add to All" -msgstr "Voeg Toe aan Alle" - -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -#, fuzzy -msgid "Update All" -msgstr "Werk Alle bij" - -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "Schoon Catalogus Statistieken op" - -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" -msgstr "Vergaar Albums Hoesjes" - -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" -msgstr "Andere Gereedschappen" - -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "Laat dubbele liedjes zien" - -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" -msgstr "Leeg Nu Speelt" - -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -#, fuzzy -msgid "Generate New Config" -msgstr "Schrijf Config" - -#: ../../templates/show_admin_tools.inc.php:93 -#, fuzzy -msgid "Preferences Permissions" -msgstr "Instellingen Permissies" - -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" -msgstr "Exporteer naar Itunes DB" - -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 #, fuzzy -msgid "Check for New Version" -msgstr "Check voor Nieuwe Versie" - -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "Selecteer" +msgid "Clear Playlist" +msgstr "Maak Speellijst Leeg" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "Markeer" - -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" -msgstr "Commentaar" +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "Niet voldoende gegevens" -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -#, fuzzy -msgid "No Records Found" -msgstr "Geen Records Gevonden" - -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" -msgstr "Wijgeren" - -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -#, fuzzy -msgid "Update" -msgstr "Bijwerken" - -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -#, fuzzy -msgid "Show All" -msgstr "Alles" - #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "Ampache Installatie" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -750,9 +1238,9 @@ msgstr "" "controleer of u voldoet aanonderstaande eisen" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -768,9 +1256,9 @@ msgstr "" "hetampache.cfg.dist.php bestand" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -784,8 +1272,8 @@ msgstr "" "bewerken" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "Stap 1 - Aanmaken en vullen van de Ampache Database" @@ -794,8 +1282,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "Stap 2 - Aanmaken vna het ampache.cfg.php bestand" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "Stap 3 - Opzet Initeel Account" @@ -812,192 +1300,286 @@ msgid "Create Admin Account" msgstr "Maak een Beheer Account aan" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "Gebruikersnaam" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "Paswoord" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "Maak Account aan" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "Voeg Catalogus Toe" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" +"In het formulier hieronder geef je een lokale directory (bijv. /data/music) " +"of deurl naar een remote Ampache installatie (bijv. http://eenandervoorbeeld." +"com) op" + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "Catalogus Naam" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "Automatisch toegevoegde velden" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "album naam" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "artiest naam" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr "id3 commentaar" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "nummer van liedje (voorafgaand met een 0)" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "naam liedje" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "jaar" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "anders" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "Directory" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" +msgstr "Catalogus Type" + +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "Lokaal" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" +msgstr "Verplicht voor Remote Catalogus" + +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" +msgstr "Bestands Patroon" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" +msgstr "Directory Patroon" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "(niet beginnen of eindigen met een '/')" + +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" +msgstr "Vergaar Albums Hoesjes" + +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "Maak Speellijsten van m3u bestanden" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "Voeg Catalogus Toe" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "" + +#: ../../templates/show_localplay_status.inc.php:34 +#, fuzzy +msgid "Repeat" +msgstr "Herhalen" + +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "Willekeurig" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "Voeg Toe" + +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" +msgstr "Naam Speellijst" + +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" +msgstr "# Liedjes" + +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "Eigenaar" + +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 #: ../../templates/show_artist_box.inc.php:32 #: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 #: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 msgid "Actions" msgstr "Acties" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" -msgstr "XSPF Speler" - -#: ../../templates/show_song.inc.php:22 -msgid "Details" -msgstr "" +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "Bewerk" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "Titel" +#: ../../templates/show_similar_artists.inc.php:23 +#, fuzzy +msgid "Similar Artists" +msgstr "Gelijkwaardige Artiest" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "Artiest" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" +msgstr "Controleer aub de artiest die u wilt samenvoegen met de huidige" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "Album" +#: ../../templates/show_similar_artists.inc.php:66 +#, fuzzy +msgid "Back" +msgstr "Terug" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "Genre" +#: ../../templates/show_similar_artists.inc.php:77 +#, fuzzy +msgid "Rename selected" +msgstr "Hernoem Geselecteerde" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "Annuleer" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "Bestandsnaam" +#: ../../templates/show_similar_artists.inc.php:91 +#, fuzzy +msgid "Advanced Options" +msgstr "Geavanceerde Opties" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:152 +#, fuzzy +msgid "Search Again" +msgstr "Doorzoek Opnieuw" #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 #, fuzzy msgid "Song Title" msgstr "Naam Liedje" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "Speellijst" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "" @@ -1010,122 +1592,278 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" +msgstr "Favorieten" + +#: ../../templates/show_user_stats.inc.php:30 +#, fuzzy +msgid "Favorite Artists" +msgstr "Favorieten" + +#: ../../templates/show_user_stats.inc.php:43 +#, fuzzy +msgid "Favorite Albums" +msgstr "Favorieten" + +#: ../../templates/show_user_stats.inc.php:56 +#, fuzzy +msgid "Favorite Songs" +msgstr "Favorieten" + +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "Speel Willekeurige Selectie" + +#: ../../templates/show_random.inc.php:26 +msgid "Item count" +msgstr "Item aantal" + +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "Van Genre" + +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" +msgstr "Lengte" + +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" +msgstr "Ongelimiteerd" + +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "Onbekend" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "Volledige Naam" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" +msgstr "Standaard" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" +msgstr "Minst Gespeeld" + +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "Volledige Albums" + +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" +msgstr "Volledige Artiest" + +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "Laatst Gezien" +#: ../../templates/show_random.inc.php:76 +#, fuzzy +msgid "From catalog" +msgstr "Uit catalogus" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "Activiteit" +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" +msgstr "Grootte Limiet" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" +msgstr "Start Nieuwe Zoekopdracht voor liedje" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "catalogus" + +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_playlist_edit.inc.php:26 +#, fuzzy +msgid "Editing Playlist" +msgstr "Bewerk Speellijst" + +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "Publiek" + +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" +msgstr "Prive" + +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +#, fuzzy +msgid "Update" +msgstr "Bijwerken" + +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" +msgstr "Inloggen" + +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "Onthoud mij" + +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" +msgstr "Registreer" + +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" +msgstr "Bericht van de Dag" + +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "Actie" + +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" +msgstr "Verifieer" + +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +#, fuzzy +msgid "Clean" +msgstr "Wis" + +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" +msgstr "" + +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 +#: ../../templates/show_admin_tools.inc.php:68 #, fuzzy -msgid "Recently Played" -msgstr "Minst Gespeeld" +msgid "No Catalogs Found" +msgstr "Geen Catalogus Gevonden" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" -msgstr "Nummer" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +#, fuzzy +msgid "Clean All" +msgstr "Schoon Alle" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" -msgstr "Tijd" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" +msgstr "Verifieer Alle" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" -msgstr "Niet voldoende gegevens" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +#, fuzzy +msgid "Add to All" +msgstr "Voeg Toe aan Alle" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" -msgstr "Album Hoes" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +#, fuzzy +msgid "Update All" +msgstr "Werk Alle bij" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" -msgstr "Klik om venster te sluiten" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "Schoon Catalogus Statistieken op" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" +msgstr "Andere Gereedschappen" + +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "Laat dubbele liedjes zien" + +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "Leeg Nu Speelt" + +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +#, fuzzy +msgid "Generate New Config" +msgstr "Schrijf Config" + +#: ../../templates/show_admin_tools.inc.php:93 +#, fuzzy +msgid "Preferences Permissions" +msgstr "Instellingen Permissies" + +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" +msgstr "Exporteer naar Itunes DB" + +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "Bewerk" +#: ../../templates/show_admin_tools.inc.php:96 +#, fuzzy +msgid "Check for New Version" +msgstr "Check voor Nieuwe Versie" #: ../../templates/show_flag.inc.php:41 #, fuzzy @@ -1150,410 +1888,239 @@ msgstr "Reden van markering" msgid "Incorrect Tags" msgstr "Incorrecte Tags" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" -msgstr "Opnieuw encoderen" - -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -#, fuzzy -msgid "Other" -msgstr "anders" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "Markeer" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" -msgstr "van" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" +msgstr "Bladeren" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "Gevonden" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "Uitloggen" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" -msgstr "Vereisten" - -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -"Uw webserver leesrechten heeft op de files /sql/ampache.sql en de file /" -"config/ampache.cfg.php.dist" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" -msgstr "Start Configuratie" - -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "Speel Album" - -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 -#, fuzzy -msgid "Repeat" -msgstr "Herhalen" - -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "Willekeurig" - -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" -msgstr "Tijd van toevoegen" - -#: ../../templates/show_disabled_songs.inc.php:65 -#, fuzzy -msgid "Remove" -msgstr "Verwijder" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "Volledige Naam" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" -msgstr "Voeg Entry Toe" - -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "Start Adres" - -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "Eind Adres" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "Laatst Gezien" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "Niveau" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" +msgstr "Activiteit" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" -msgstr "Sleutel" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" +msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "Volledige Naam" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" +msgstr "" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "Registratie Datum" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "Albums bij" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -#, fuzzy -msgid "Last Ip" -msgstr "Laatste Ip Adres" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "Alle Liedjes van" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "Actief" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" +msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -#, fuzzy -msgid "Base Playlist" -msgstr "Basis Speellijst" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" +msgstr "Werk bij via tags" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "Maak Nieuwe Speellijst aan" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" +msgstr "" +#: ../../templates/show_songs.inc.php:48 #: ../../templates/show_now_playing_row.inc.php:36 #: ../../templates/show_search.inc.php:91 msgid "Rating" msgstr "Waardering" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "Liedje" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +#, fuzzy +msgid "Current Playlist" +msgstr "Huidige Speellijst" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr " Stap 2 - Creeer het ampache.cfg.php bestand" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +#, fuzzy +msgid "No Records Found" +msgstr "Geen Records Gevonden" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" -msgstr "" -"Deze stappen zorgen voor de basis configuratie opties. Hierna zal een poging " -"gedaan worden om het bestand direct op uw webserver op te slaan. Indien dit " -"faalt kunt uu de config file downloaden en moet u deze in de /config " -"directory plaatsen" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "Instelling" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" -msgstr "" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "Waarde" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" -msgstr "Web Directory" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "Pas toe op iedereen" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" -msgstr "Gewenste Database Naam" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "MySQL Hostnaam" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "beschrijving" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "MySQl Gebruikersnaam" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" +msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "MySQL Paswoord" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" +msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" -msgstr "Schrijf Config" +#: ../../templates/header.inc.php:71 +msgid "Log out" +msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "Ampache.cfg.php Bestaat" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" +msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "Ampache.cfg.php Geconfigureerd?" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" +msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" -msgstr "Check voor Config" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" +msgstr "Gebruikers Overeenkomst" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" -msgstr "" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" +msgstr "Ik ben Akkoord" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" -msgstr "Bewerk bestaande Gebruiker" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" +msgstr "Gebruikers Informatie" +#: ../../templates/show_user_registration.inc.php:94 #: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 #: ../../templates/show_add_user.inc.php:44 #: ../../templates/show_account.inc.php:34 msgid "E-mail" msgstr "" +#: ../../templates/show_user_registration.inc.php:112 #: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 #: ../../templates/show_add_user.inc.php:61 #: ../../templates/show_account.inc.php:47 msgid "Confirm Password" msgstr "Typ Nogmaals uw paswoord" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "Gebruikers toegangs niveau" - -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "Bewerk Gebruiker" - -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "Diverse" - -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "Zoeken" - -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -#, fuzzy -msgid "Create" -msgstr "Creeer" - -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "Ga Verder" - -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "Annuleer" - -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "Begin" - -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "Bladeren" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "Registreer Gebruiker" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 +#: ../../templates/show_edit_album.inc.php:23 #, fuzzy -msgid "Localplay" -msgstr "Lokaal Afspelen" - -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "Instellingen" - -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "Werk bij de" - -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "Catalogus" - -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." -msgstr "Liedje gevonden bezig met controleren van tag informatie" +msgid "Edit Album" +msgstr "Bewerk Album" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" -msgstr "Geverifieerd" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" +msgstr "Markeer voor opnieuw Taggen" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 +#: ../../templates/show_edit_album.inc.php:47 #, fuzzy -msgid "Current Playlist" -msgstr "Huidige Speellijst" - -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" -msgstr "" +msgid "Update Album" +msgstr "Werk Alle bij" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" -msgstr "" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" +msgstr "Vereisten" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" - -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "Speel" - -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" -msgstr "Volgende" - -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -#, fuzzy -msgid "Description" -msgstr "beschrijving" - -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -#, fuzzy -msgid "Version" -msgstr "PHP Versie" - -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" -msgstr "Deactiveer" - -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -#, fuzzy -msgid "Activate" -msgstr "Activeer" +"Uw webserver leesrechten heeft op de files /sql/ampache.sql en de file /" +"config/ampache.cfg.php.dist" #: ../../templates/show_install.inc.php:54 msgid "" @@ -1565,10 +2132,25 @@ 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:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr " Stap 2 - Creeer het ampache.cfg.php bestand" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "Gewenste Database Naam" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "MySQL Hostnaam" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "MySQl Administratieve Gebruikersnaam" @@ -1597,286 +2179,81 @@ msgstr "" msgid "Insert Database" msgstr "Maak Database" -#: ../../templates/show_similar_artists.inc.php:23 -#, fuzzy -msgid "Similar Artists" -msgstr "Gelijkwaardige Artiest" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" -msgstr "Controleer aub de artiest die u wilt samenvoegen met de huidige" - -#: ../../templates/show_similar_artists.inc.php:66 -#, fuzzy -msgid "Back" -msgstr "Terug" - -#: ../../templates/show_similar_artists.inc.php:77 -#, fuzzy -msgid "Rename selected" -msgstr "Hernoem Geselecteerde" - -#: ../../templates/show_similar_artists.inc.php:91 -#, fuzzy -msgid "Advanced Options" -msgstr "Geavanceerde Opties" - -#: ../../templates/show_similar_artists.inc.php:152 -#, fuzzy -msgid "Search Again" -msgstr "Doorzoek Opnieuw" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" +msgstr "Start Configuratie" #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "Maak een nieuwe speellijst aan" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" -msgstr "Hernoem" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +#, fuzzy +msgid "Create" +msgstr "Creeer" + +#: ../../templates/show_edit_song.inc.php:23 +#, fuzzy +msgid "Edit Song" +msgstr "Bewerk Liedje" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "OF" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "Voeg Huidige Toe" - -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" -msgstr "Werk id3 tags bij" - -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" -msgstr "Normalizeer Nummers" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -#, fuzzy -msgid "Play Random" -msgstr "Speel Willekeurige Liedjes" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "Hoes" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "Jaar" - -#: ../../templates/show_preference_admin.inc.php:22 -#, fuzzy -msgid "Preference Administration" -msgstr "Beheer Instellingen" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "Instelling" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "seconden geleden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "minutes ago" -msgstr "minuten geleden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "hours ago" -msgstr "uren geleden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "days ago" -msgstr "dagen geleden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "weken gelden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "maanden geleden" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -#, fuzzy -msgid "years ago" -msgstr "jaren geleden" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "Doorzoek Ampache" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "Kern Woorden" - -#: ../../templates/show_search.inc.php:72 -msgid "Played" -msgstr "Gespeeld" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "Ja" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "Nee" - -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" -msgstr "" - -#: ../../templates/show_search.inc.php:95 +#: ../../templates/show_edit_song.inc.php:88 #, fuzzy -msgid "One Star" -msgstr "Een Ster" +msgid "Update Song" +msgstr "Werk Liedjes bij" -#: ../../templates/show_search.inc.php:96 +#: ../../templates/show_edit_catalog.inc.php:22 #, fuzzy -msgid "Two Stars" -msgstr "Twee Sterren" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "Drie Sterren" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "Vier Sterren" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "Vijf Sterren" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "Combinatie" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "EN" - -#: ../../templates/show_search.inc.php:111 -msgid "Method" -msgstr "Methode" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "Ongeveer" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "" - -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" -msgstr "Maximum resultaten" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "Ongelimiteerd" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" -msgstr "" +msgid "Settings for" +msgstr "Instelling voor catalogus in" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" +msgstr "Bestandsnaam patroon" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" +msgstr "Sla Catalogus instellingen op" #: ../../templates/show_edit_access.inc.php:22 msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 #, fuzzy msgid "ACL Type" msgstr "Toegangs Type" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 #, fuzzy msgid "Stream Access" msgstr "Stream Toegang" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "Lokale Netwerk Defenitie" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1884,411 +2261,373 @@ msgstr "" msgid "Start IP Address" msgstr "Start Ip Adres" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "Eind IP Adres" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "Remote Sleutel" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "Bekijk" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -#, fuzzy -msgid "Read" -msgstr "Lees" - -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" -msgstr "Lezen/Schrijven" - -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" -msgstr "Ampache Nieuwe Gebruikers Registratie" - -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" -msgstr "Gebruikers Overeenkomst" - -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" -msgstr "Ik ben Akkoord" - -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" -msgstr "Gebruikers Informatie" - -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" -msgstr "Wis Formulier" - -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "Registreer Gebruiker" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "Niveau" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" -msgstr "Inloggen" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" +msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "Onthoud mij" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "Speel Album" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" -msgstr "Registreer" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" +msgstr "Liedje" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" -msgstr "Bericht van de Dag" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" +msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "Meest Populaire Artiesten" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" +msgstr "Album Aanbeveling" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "Meest Populaire Albums" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" +msgstr "Nummer Aanbeveling" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" -msgstr "Meest Populaire Genres" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" +msgstr "IP Geschiedenis" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "Meest Populaire Nummers" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" +msgstr "Laat Unieke zien" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" -msgstr "" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +#, fuzzy +msgid "Show All" +msgstr "Alles" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" -msgstr "" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "Datum" -#: ../../templates/show_edit_song.inc.php:23 +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 #, fuzzy -msgid "Edit Song" -msgstr "Bewerk Liedje" +msgid "IP Address" +msgstr "Eind IP Adres" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" -msgstr "Markeer voor opnieuw Taggen" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" +msgstr "Importeer speellijst vanuit een bestand" -#: ../../templates/show_edit_song.inc.php:88 -#, fuzzy -msgid "Update Song" -msgstr "Werk Liedjes bij" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "Bestandsnaam" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" -msgstr "" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "Speellijst Type" + +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" +msgstr "Importeer Speellijst" + +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" +msgstr "Bekijken" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_mail_users.inc.php:23 #, fuzzy msgid "Send E-mail to Users" msgstr "Mail Gebruikers" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "Mail naar" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "Catalogus Statistieken" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "Meest Populaire Albums" + +#: ../../templates/show_mail_users.inc.php:53 #, fuzzy msgid "Latest Artist Additions" msgstr "Laatste Toegevoegde Artiesten" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "Meest Populaire Artiesten" + +#: ../../templates/show_mail_users.inc.php:64 #, fuzzy msgid "Latest Album Additions" msgstr "Laatste Toegevoegde Albums" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "Meest Populaire Nummers" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 #, fuzzy msgid "Disabled Songs" msgstr "Laat gedeactiveerde Liedjes Zien" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 #, fuzzy msgid "Most Popular Threshold in days" msgstr "Meest Populaire Nummers" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "Onderwerp" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "Bericht" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "Verzend Mail" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "Nieuwe gebruiker toevoegen" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "Voeg Gebruiker Toe" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "Maak Toegang voor Host" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_add_access.inc.php:82 -#, fuzzy -msgid "Create ACL" -msgstr "Maak Toegangs Entry aan" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "Waarde" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "Pas toe op iedereen" - -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" -msgstr "beschrijving" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" +msgstr "Laatste tien gemarkeerde records" -#: ../../templates/show_playlist_edit.inc.php:26 +#: ../../templates/show_preference_admin.inc.php:22 #, fuzzy -msgid "Editing Playlist" -msgstr "Bewerk Speellijst" - -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "Publiek" +msgid "Preference Administration" +msgstr "Beheer Instellingen" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" -msgstr "Prive" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" +msgstr "Bewerk bestaande Gebruiker" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "Zoek Dubbele" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "Gebruikers toegangs niveau" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "Zoek Type" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "Bewerk Gebruiker" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "Artiest en Titel" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "Actieve Gebruikers" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "Artiest, Album en Titel" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "Gebruikers Totaal" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" -msgstr "" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "Catalogus Grootte" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "Start Zoeken naar Album Hoes" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "Catalogus Tijd" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "Doorzocht" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" +msgstr "Dubbele Liedjes" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -#, fuzzy -msgid "None" -msgstr "Nee" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" +msgstr "Grootte" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "Albums bij" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "Ga Verder" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "Alle Liedjes van" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "Selecteer" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "Speel Alle Liedjes van" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" +msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "Speel Willekeurige Liedjes van" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" +msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" -msgstr "Werk bij via tags" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" +msgstr "Wijgeren" -#: ../../templates/show_artist_box.inc.php:39 -#, fuzzy -msgid "Find duplicate artists" -msgstr "Zoek Dubbele Artiesten" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "Speel Willekeurige Selectie" - -#: ../../templates/show_random.inc.php:26 -msgid "Item count" -msgstr "Item aantal" +#: ../../templates/show_song.inc.php:49 +msgid "Label" +msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "Van Genre" +#: ../../templates/show_song.inc.php:53 +msgid "Language" +msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" -msgstr "Standaard" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" +msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" -msgstr "Minst Gespeeld" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "Volledige Albums" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "Hernoem" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" -msgstr "Volledige Artiest" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "Voeg Huidige Toe" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" -msgstr "Minuten" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" +msgstr "Werk id3 tags bij" -#: ../../templates/show_random.inc.php:59 -#, fuzzy -msgid "From catalog" -msgstr "Uit catalogus" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "Zoek Dubbele" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" -msgstr "Grootte Limiet" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "Zoek Type" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" -msgstr "" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "Artiest en Titel" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" -msgstr "Nu Speelt" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "Artiest, Album en Titel" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" -msgstr "Bekijken" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" +msgstr "Normalizeer Nummers" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -#, fuzzy -msgid "Account" -msgstr "Maak Account aan" - -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -#, fuzzy -msgid "Localplay Modules" -msgstr "Lokaal Afspelen" - -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" -msgstr "Aanwezige Plugins" - -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" -msgstr "" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" +msgstr "Volgende" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +#, fuzzy +msgid "Base Playlist" +msgstr "Basis Speellijst" + +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" +msgstr "Maak Nieuwe Speellijst aan" + #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" msgstr "Pas Zoekopdracht aan" @@ -2306,88 +2645,32 @@ msgstr "Lokaal Hoesje" msgid "Get Art" msgstr "Haal Hoesje op" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:22 +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 #, fuzzy -msgid "Settings for" -msgstr "Instelling voor catalogus in" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "Automatisch toegevoegde velden" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "album naam" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "artiest naam" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "id3 commentaar" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "nummer van liedje (voorafgaand met een 0)" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "naam liedje" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "jaar" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "anders" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "Catalogus Type" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "Bestandsnaam patroon" +msgid "Description" +msgstr "beschrijving" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "Directory Patroon" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +#, fuzzy +msgid "Version" +msgstr "PHP Versie" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" -msgstr "(niet beginnen of eindigen met een '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +#, fuzzy +msgid "Activate" +msgstr "Activeer" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" -msgstr "Sla Catalogus instellingen op" +#: ../../templates/show_plugins.inc.php:46 +#, fuzzy +msgid "Deactivate" +msgstr "Deactiveer" #: ../../templates/show_democratic_playlist.inc.php:38 #, fuzzy @@ -2408,6 +2691,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "Meest Populaire Genres" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "" + #: ../../templates/show_edit_artist.inc.php:23 #, fuzzy msgid "Edit Artist" @@ -2417,40 +2713,6 @@ msgstr "Artiest" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -#, fuzzy -msgid "Edit Album" -msgstr "Bewerk Album" - -#: ../../templates/show_edit_album.inc.php:47 -#, fuzzy -msgid "Update Album" -msgstr "Werk Alle bij" - -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" -msgstr "Laatste tien gemarkeerde records" - -#: ../../templates/show_plugins.inc.php:46 -#, fuzzy -msgid "Deactivate" -msgstr "Deactiveer" - -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "Democratisch" - -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" -msgstr "" - #: ../../templates/show_play_selected.inc.php:28 msgid "Play Selected" msgstr "Speel Geselecteerde" @@ -2471,185 +2733,224 @@ msgstr "Verwijder Geselecteerd Nummers" msgid "Add to" msgstr "Voeg Toe" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" -msgstr "IP Geschiedenis" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "Nieuwe gebruiker toevoegen" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" -msgstr "Laat Unieke zien" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "Voeg Gebruiker Toe" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "Datum" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" +msgstr "XSPF Speler" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -#, fuzzy -msgid "IP Address" -msgstr "Eind IP Adres" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "Hoes" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -"In het formulier hieronder geef je een lokale directory (bijv. /data/music) " -"of deurl naar een remote Ampache installatie (bijv. http://eenandervoorbeeld." -"com) op" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" -msgstr "Catalogus Naam" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "Lokaal" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "Reset Album Hoes" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "Zoek Album Hoes" + +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" -msgstr "Verplicht voor Remote Catalogus" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "Volledige Naam" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" -msgstr "Bestands Patroon" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" +msgstr "Registratie Datum" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "Maak Speellijsten van m3u bestanden" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +#, fuzzy +msgid "Last Ip" +msgstr "Laatste Ip Adres" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "Voeg Catalogus Toe" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "Actief" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -#, fuzzy -msgid "Clear Playlist" -msgstr "Maak Speellijst Leeg" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" +msgstr "van" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" -msgstr "Aanbevelingen" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" +msgstr "Werk bij de" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" -msgstr "" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "Catalogus" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" -msgstr "Album Aanbeveling" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." +msgstr "Liedje gevonden bezig met controleren van tag informatie" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" -msgstr "Nummer Aanbeveling" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" +msgstr "Geverifieerd" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" -msgstr "Importeer speellijst vanuit een bestand" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" +msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "Speellijst Type" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" +msgstr "Album Hoes" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" -msgstr "Importeer Speellijst" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "Klik om venster te sluiten" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" -msgstr "Favorieten" - -#: ../../templates/show_user_stats.inc.php:30 -#, fuzzy -msgid "Favorite Artists" -msgstr "Favorieten" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" +msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -#, fuzzy -msgid "Favorite Albums" -msgstr "Favorieten" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" +msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -#, fuzzy -msgid "Favorite Songs" -msgstr "Favorieten" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" -msgstr "Dubbele Liedjes" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" -msgstr "Lengte" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" -msgstr "Grootte" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "Mail Gebruikers" -#: ../../templates/show_list_duplicates.inc.php:96 -#, fuzzy -msgid "Disable Songs" -msgstr "Laat gedeactiveerde Liedjes Zien" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "Vorige" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 +#: ../../templates/sidebar_preferences.inc.php:18 #, fuzzy -msgid "Statistics" -msgstr "Statistieken" +msgid "Account" +msgstr "Maak Account aan" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" -msgstr "" +#: ../../templates/sidebar_preferences.inc.php:34 +#, fuzzy +msgid "Localplay Modules" +msgstr "Lokaal Afspelen" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" +msgstr "Aanwezige Plugins" + +#: ../../templates/show_account.inc.php:40 +#, fuzzy +msgid "New Password" +msgstr "Nieuwe Paswoord" + +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "Maak Stats Leeg" + +#: ../../templates/show_account.inc.php:64 +#, fuzzy +msgid "Update Account" +msgstr "Maak Account aan" + +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" +msgstr "Bezig met Bewerken" + +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "instellingen" + +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" +msgstr "Werk Instellingen bij" + +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2661,14 +2962,6 @@ msgstr "Bijwerken van" msgid "Checking" msgstr "Bezig met Controleren" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "Start Nieuwe Zoekopdracht voor liedje" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "catalogus" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2766,6 +3059,11 @@ msgstr "" "limieten kunnen aanpassen. Dit is niet verplicht maar kan wel ten koste gaan " "van bepaalde onderdelen van Ampache" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "Ampache.cfg.php Bestaat" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2776,6 +3074,11 @@ msgstr "" "op de goede locatie aanwezig of\n" "\t niet leesbaar door de webserver." +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "Ampache.cfg.php Geconfigureerd?" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2793,482 +3096,329 @@ msgid "" msgstr "" "Hier proberen we de database te benaderen met de waarden vanuit amapche" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "Doorzoek Ampache" -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" +msgstr "Kern Woorden" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" +#: ../../templates/show_search.inc.php:72 +msgid "Played" +msgstr "Gespeeld" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "Bezig met Bewerken" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "Ja" -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "instellingen" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "Nee" -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "Werk Instellingen bij" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" +msgstr "" -#: ../../templates/show_account.inc.php:40 +#: ../../templates/show_search.inc.php:95 #, fuzzy -msgid "New Password" -msgstr "Nieuwe Paswoord" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "Maak Stats Leeg" +msgid "One Star" +msgstr "Een Ster" -#: ../../templates/show_account.inc.php:64 +#: ../../templates/show_search.inc.php:96 #, fuzzy -msgid "Update Account" -msgstr "Maak Account aan" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "Vorige" +msgid "Two Stars" +msgstr "Twee Sterren" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" +msgstr "Drie Sterren" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" +msgstr "Vier Sterren" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" +msgstr "Vijf Sterren" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" +msgstr "Combinatie" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" +#: ../../templates/show_search.inc.php:105 +msgid "AND" +msgstr "EN" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" +#: ../../templates/show_search.inc.php:111 +msgid "Method" +msgstr "Methode" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" +msgstr "Ongeveer" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "Speel Willekeurig van Album" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "Reset Album Hoes" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "Zoek Album Hoes" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" +msgstr "Maximum resultaten" -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "Naam Speellijst" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "# Liedjes" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "Eigenaar" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "Geen Gebruiker met deze naam geregistreerd" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "De validatie key die u gebuikt is niet correct" - -#: ../../activate.php:51 -msgid "User activated" -msgstr "Gebruiker geactiveerd" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "Dit Gebruikers Account is Geactiveerd en kan gebruikt worden" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../democratic.php:80 -#, fuzzy -msgid "Playlist Cleared" -msgstr "Speellijst aangemaakt" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../lib/class/flag.class.php:280 -#, fuzzy -msgid "Approved" -msgstr "Verplaatst" - -#: ../../lib/class/flag.class.php:281 -#, fuzzy -msgid "Pending" -msgstr "Bezig met Toevoegen" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" -msgstr "Opnieuw Taggen" - -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" -msgstr "bijgewerkt naar" - -#: ../../lib/class/song.class.php:341 -msgid "Rate" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/song.class.php:345 -msgid "Mode" -msgstr "Modus" - -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "Bestands grootte" - -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" -msgstr "Beheer Gebruikers" - -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "Speellijsten" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "Fout: Kan niet openen" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" -msgstr "Fout: Kan niet naar directory veranderen" - -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "Fout: Kan bestands grootte niet opvragen voor" - -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "is niet leesbaar voor Ampache" - -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" -msgstr "Start bouwen van Catalogus" - -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" -msgstr "Start Remote Synchronisatie" - -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" -msgstr "Speellijst toegevoegd van" - -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" -msgstr "Catalogus Klaar" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "Totale Tijd" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "Totaal Aantal Liedjes" - -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" -msgstr "Liedjes per Seconde" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" +msgstr "" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" -msgstr "Geen Update Nodig" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" +msgstr "Voeg Entry Toe" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" -msgstr "Bezig met bijwerken van Remote Catalogus" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "Start Adres" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" -msgstr "Bijwerken Catalogus Gereed" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "Eind Adres" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" -msgstr "Kan XMLRPC library niet laden, check of XML-RPC aanstaat" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" +msgstr "Sleutel" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "Fout met connectie naar" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "Maak Toegang voor Host" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" -msgstr "Reden" - -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" -msgstr "Klaar met Bijwerken van Remote Catalogus(sen)" +#: ../../templates/show_add_access.inc.php:84 +#, fuzzy +msgid "Create ACL" +msgstr "Maak Toegangs Entry aan" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" -msgstr "Opschoning Catalogus Gereed" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" +msgstr "Tijd van toevoegen" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" -msgstr "files verwijderd" +#: ../../templates/show_disabled_songs.inc.php:65 +#, fuzzy +msgid "Remove" +msgstr "Verwijder" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" +"Deze stappen zorgen voor de basis configuratie opties. Hierna zal een poging " +"gedaan worden om het bestand direct op uw webserver op te slaan. Indien dit " +"faalt kunt uu de config file downloaden en moet u deze in de /config " +"directory plaatsen" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr " GEVONDEN" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "Bezig met zoeken naar nieuwe album hoes" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" +msgstr "" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Update Finished." -msgstr "Bijwerken Catalogus Gereed" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" +msgstr "Web Directory" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Checked" -msgstr "Bezig met Controleren" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "MySQl Gebruikersnaam" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "songs updated." -msgstr "liedjes bijgewerkt." +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "MySQL Paswoord" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" -msgstr "Gestopt" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" +msgstr "Schrijf Config" -#: ../../lib/class/localplay.class.php:650 -#, fuzzy -msgid "Paused" -msgstr "Gespeeld" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" +msgstr "Check voor Config" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" -msgstr "Activeer" - -#: ../../lib/preferences.php:272 -msgid "M3U" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" +msgstr "Dit Gebruikers Account is Geactiveerd en kan gebruikt worden" -#: ../../lib/preferences.php:274 -msgid "PLS" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:310 -#, fuzzy -msgid "Disabled" -msgstr "Deactiveer" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" +msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" -msgstr "Niet Afspelen" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" +msgstr "Liedje(s) Verwijderd van Speellijst " -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" -msgstr "Het is vrij slecht" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" +msgstr "Fout: Geen Zoekwoord opgegeven" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" -msgstr "Het is goed" +#: ../../ratings.php:32 +msgid "Rating Updated" +msgstr "Waardering Bijgewerkt" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" -msgstr "Het is Vrij Goed" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" +msgstr "Uw Waardeering voor dit object is bijgewerkt" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" -msgstr "Ik ben er gek van" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" +msgstr "Gebruiker gedeactiveerd neem contact op met beheerder" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" -msgstr "Het is te Gek" +#: ../../login.php:83 +msgid "Unable to create new account" +msgstr "Niet in staat op nieuw account aan te maken" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" -msgstr "Niet te geloven" +#: ../../login.php:92 +msgid "No local account found" +msgstr "Geen lokaal account gevonden" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "Amerikaans Engels" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" +msgstr "" -#: ../../lib/general.lib.php:496 -msgid "British English" -msgstr "Engels" +#: ../../preferences.php:91 +msgid "Error Update Failed" +msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" -msgstr "Turks" +#: ../../preferences.php:96 +msgid "Your Account has been updated" +msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" -msgstr "Simpel Chinees" +#: ../../update.php:51 +#, fuzzy +msgid "Ampache Update" +msgstr "Ampache Bijwerken" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "Aan" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" +msgstr "Start met bijwerken vanuit Tags" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "Uit" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" +msgstr "Bijwerken vanuit Tags voltooid" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" -msgstr "Fout Toegang Gewijgerd" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" +msgstr "Terug" -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "" +#: ../../artists.php:186 +msgid "Show Artists starting with" +msgstr "Artiesten beginnend met" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" -msgstr "Lokaal Afspelen" +#: ../../playlist.php:57 +msgid "Playlist Created" +msgstr "Speellijst aangemaakt" -#: ../../lib/ui.lib.php:556 -#, fuzzy -msgid "Random Play" -msgstr "Willekeurig Aspelen" +#: ../../playlist.php:57 +msgid " has been created" +msgstr " is aangemaakt" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -#, fuzzy -msgid "Admin-Catalog" -msgstr "Voeg Catalogus Toe" +#: ../../playlist.php:78 +msgid "Playlist Updated" +msgstr "Speellijst bijgewerkt" -#: ../../lib/ui.lib.php:576 +#: ../../playlist.php:79 #, fuzzy -msgid "Admin-User Management" -msgstr "Gebruikers Overeenkomst" +msgid "has been updated and is now" +msgstr " is bijgewerkt" -#: ../../lib/ui.lib.php:580 +#: ../../playlist.php:101 #, fuzzy -msgid "Admin-Mail Users" -msgstr "Mail Gebruikers" +msgid "Playlist Imported" +msgstr "Speellijst bijgewerkt" -#: ../../lib/ui.lib.php:584 +#: ../../playlist.php:130 #, fuzzy -msgid "Admin-Manage Access Lists" -msgstr "Toegangs Regels" +msgid "Empty Playlists Deleted" +msgstr "Speellijst Verwijderd" -#: ../../lib/ui.lib.php:588 +#: ../../flag.php:45 #, fuzzy -msgid "Admin-Site Preferences" -msgstr "Beheer Site Instellingen" - -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "Beheer Modules" +msgid "Item Flagged" +msgstr "Item Gemarkeerd" -#: ../../lib/ui.lib.php:596 +#: ../../flag.php:45 #, fuzzy -msgid "Browse Music" -msgstr "Bladeren" +msgid "The specified item has been flagged" +msgstr "Het gevraagde item is gemaarkeerd" #: ../../albums.php:32 msgid "Album Art Cleared" @@ -3292,131 +3442,112 @@ msgstr "" "Album Hoesje kon op dit moment niet gevonden worden. Dit kan komen door de " "drukte bij Amazon, of omdat het album niet in hun collectie aanwezig is." -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "Album Hoesje Toegevoegd" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "Start met bijwerken vanuit Tags" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "Bijwerken vanuit Tags voltooid" +#: ../../register.php:73 +msgid "Error Captcha Required" +msgstr "Fout: Verificatie Verplicht" -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "Terug" +#: ../../register.php:80 +msgid "Error Captcha Failed" +msgstr "Fout: Verificatie Niet Goed" -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" +msgstr "U <U>moet</U> de gebruikersovereenkomst accepteren" -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" +#: ../../register.php:92 +msgid "You did not enter a username" +msgstr "U heeft geen gebruikersnaam opgegeven" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" +msgstr "Vul uw voor- en achternaam in" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "bestand" +#: ../../register.php:122 +msgid "You must enter a password" +msgstr "U moet een paswoord opgeven" -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "Bestands uploads niet gesupport" +#: ../../register.php:126 +msgid "Your passwords do not match" +msgstr "Uw opgegeven paswoorden komen niet overeen" -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "Geen bestand geupload" +#: ../../register.php:158 +msgid "Error: Insert Failed" +msgstr "Fout: Gebruiker kon niet worden aangemaakt" -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "Er was een probleem met de bestands upload: %s is niet geupload" +#: ../../register.php:175 +msgid "Registration Complete" +msgstr "Registratie Compleet" -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -"Er was een probleem met de bestands upload: de bestands groote %s was groter " -"dan het maximummaximum grootte (%d bytes)" -#: ../../modules/horde/Browser.php:903 -#, php-format +#: ../../democratic.php:80 +#, fuzzy +msgid "Playlist Cleared" +msgstr "Speellijst aangemaakt" + +#: ../../bin/print_tags.inc:66 msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +"[print_tags.php.inc]\n" +"This commandline script will display the tag information for the specified " +"filename as it will \n" +"appear to Ampache. \n" +" \n" msgstr "" -"Er was een probleem met de bestands upload: Het bestand %s is gedeeltelijk " -"geupload." -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "Liedje(s) Verwijderd van Speellijst " +#: ../../bin/print_tags.inc:72 +msgid "Filename:" +msgstr "Bestandsnaam" -#: ../../playlist.php:57 -msgid "Playlist Created" -msgstr "Speellijst aangemaakt" +#~ msgid "No Catalogs Found!" +#~ msgstr "Geen Catalogus Gevonden" -#: ../../playlist.php:57 -msgid " has been created" -msgstr " is aangemaakt" +#, fuzzy +#~ msgid "Play Random" +#~ msgstr "Speel Willekeurige Liedjes" -#: ../../playlist.php:78 -msgid "Playlist Updated" -msgstr "Speellijst bijgewerkt" +#~ msgid "Ampache New User Registration" +#~ msgstr "Ampache Nieuwe Gebruikers Registratie" -#: ../../playlist.php:79 -#, fuzzy -msgid "has been updated and is now" -msgstr " is bijgewerkt" +#~ msgid "Clear Info" +#~ msgstr "Wis Formulier" -#: ../../playlist.php:101 -#, fuzzy -msgid "Playlist Imported" -msgstr "Speellijst bijgewerkt" +#~ msgid "Play All Songs By" +#~ msgstr "Speel Alle Liedjes van" + +#~ msgid "Play Random Songs By" +#~ msgstr "Speel Willekeurige Liedjes van" -#: ../../playlist.php:130 #, fuzzy -msgid "Empty Playlists Deleted" -msgstr "Speellijst Verwijderd" +#~ msgid "Find duplicate artists" +#~ msgstr "Zoek Dubbele Artiesten" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "Gebruiker gedeactiveerd neem contact op met beheerder" +#~ msgid "Minutes" +#~ msgstr "Minuten" -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "Niet in staat op nieuw account aan te maken" +#, fuzzy +#~ msgid "Disable Songs" +#~ msgstr "Laat gedeactiveerde Liedjes Zien" -#: ../../login.php:96 -msgid "No local account found" -msgstr "Geen lokaal account gevonden" +#~ msgid "Play Random from Album" +#~ msgstr "Speel Willekeurig van Album" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" -msgstr "Fout: Geen Zoekwoord opgegeven" +#~ msgid "No user with this name registered" +#~ msgstr "Geen Gebruiker met deze naam geregistreerd" -#: ../../artists.php:186 -msgid "Show Artists starting with" -msgstr "Artiesten beginnend met" +#~ msgid "The validation key used isn't correct." +#~ msgstr "De validatie key die u gebuikt is niet correct" -#: ../../bin/print_tags.inc:66 -msgid "" -"[print_tags.php.inc]\n" -"This commandline script will display the tag information for the specified " -"filename as it will \n" -"appear to Ampache. \n" -" \n" -msgstr "" +#~ msgid "User activated" +#~ msgstr "Gebruiker geactiveerd" -#: ../../bin/print_tags.inc:72 -msgid "Filename:" -msgstr "Bestandsnaam" +#~ msgid "Error Access Denied" +#~ msgstr "Fout Toegang Gewijgerd" #~ msgid "album's with art" #~ msgstr "album's met hoesje" @@ -3510,9 +3641,6 @@ msgstr "Bestandsnaam" #~ msgid "Users" #~ msgstr "Gebruikers" -#~ msgid "Mail Users" -#~ msgstr "Mail Gebruikers" - #, fuzzy #~ msgid "Config" #~ msgstr "Schrijf Config" diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po index bb9062c3..4eab9faf 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.po +++ b/locale/ru_RU/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ampache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: 2007-02-05 21:58-0000\n" "Last-Translator: Alexey Illarionov <littlesavage@orionet.ru>\n" "Language-Team: British English <en@li.org>\n" @@ -15,264 +15,1057 @@ msgstr "" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" +msgstr "÷ÒÅÍÑ ÓÅÓÓÉÉ ÉÓÞÅÒÐÁÎÏ: ÐÏÖÁÌÕÊÓÔÁ, ÚÁÊÄÉÔÅ ÅÝÅ ÒÁÚ" + +#: ../../lib/class/album.class.php:217 +msgid "Disk" msgstr "" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" +msgstr "éÓÐÏÌÎÉÔÅÌÉ" + +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" +msgstr "òÁÚÌÉÞÎÙÅ" + +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" +msgstr "ïÛÉÂËÁ: îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ" + +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" +msgstr "÷ÓÅ" + +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" +msgstr "ðÒÏÓÍÏÔÒ" + +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" +msgstr "þÔÅÎÉÅ" + +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" +msgstr "þÔÅÎÉÅ/úÁÐÉÓØ" + +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" -msgstr "÷Ù <U>ÄÏÌÖÎÙ</U> ÐÒÉÎÑÔØ ÐÏÌØÚÏ×ÁÔÅÌØÓËÏÅ ÓÏÇÌÁÛÅÎÉÅ" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgstr "ÄÅÎØ" -#: ../../register.php:101 -msgid "You did not enter a username" -msgstr "÷Ù ÎÅ ××ÅÌÉ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ" +#: ../../lib/class/catalog.class.php:176 +msgid "days" +msgstr "ÄÎÉ" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" -msgstr "ðÏÖÁÌÕÊÓÔÁ, ××ÅÄÉÔÅ ×ÁÛÅ ÐÏÌÎÏÅ ÉÍÑ (éÍÑ æÁÍÉÌÉÑ)" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgstr "ÞÁÓ" -#: ../../register.php:131 -msgid "You must enter a password" -msgstr "÷Ù ÄÏÌÖÎÙ ××ÅÓÔÉ ÐÁÒÏÌØ" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" +msgstr "ÞÁÓÙ" -#: ../../register.php:135 -msgid "Your passwords do not match" -msgstr "÷ÁÛ ÐÁÒÏÌØ ÎÅ ÓÏ×ÐÁÄÁÅÔ" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" +msgstr "úÁÐÕÝÅÎÏ ÕÄÁÌÅÎÎÏÅ ÏÂÎÏ×ÌÅÎÉÅ" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" -msgstr "ïÛÉÂËÁ: ðÏÌØÚÏ×ÁÔÅÌØ Ó ÔÁËÉÍ ÉÍÅÎÅÍ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ" +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "ïÛÉÂËÁ: îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÄÉÒÅËÔÏÒÉÀ" -#: ../../register.php:157 -msgid "Error: Insert Failed" -msgstr "ïÛÉÂËÁ: äÏÂÁ×ÌÅÎÉÅ ÚÁËÏÎÞÉÌÏÓØ ÎÅÕÄÁÞÅÊ" +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" +msgstr "ïÛÉÂËÁ: îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÒÁÚÍÅÒ ÆÁÊÌÁ ÄÌÑ" -#: ../../register.php:174 -msgid "Registration Complete" -msgstr "òÅÇÉÓÔÒÁÃÉÑ ÚÁ×ÅÒÛÅÎÁ" +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "ÎÅ ÞÉÔÁÅÍ ÐÒÏÇÒÁÍÍÏÊ ampache" -#: ../../update.php:51 -msgid "Ampache Update" -msgstr "ïÂÎÏ×ÌÅÎÉÅ Ampache" +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" +msgstr "îÁÞÁÔÏ ÐÏÓÔÒÏÅÎÉÅ ËÁÔÁÌÏÇÁ" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" -msgstr "÷ÒÅÍÑ ÓÅÓÓÉÉ ÉÓÞÅÒÐÁÎÏ: ÐÏÖÁÌÕÊÓÔÁ, ÚÁÊÄÉÔÅ ÅÝÅ ÒÁÚ" +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "îÁÊÄÅÎÏ" -#: ../../ratings.php:32 -msgid "Rating Updated" -msgstr "òÅÊÔÉÎÇ ÏÂÎÏ×ÌÅÎ" +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" +msgstr "îÅÔ" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" -msgstr "÷ÁÛ ÒÅÊÔÉÎÇ ÄÌÑ ÄÁÎÎÏÇÏ ÏÂßÅËÔÁ ÏÂÎÏ×ÌÅÎ" +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" +msgstr "äÏÂÁ×ÌÅÎ ÐÌÅÊÌÉÓÔ ÉÚ" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" +msgstr "îÁÞÁÔ ÐÏÉÓË ÁÌØÂÏÍÎÙÈ ÏÂÌÏÖÅË" + +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" +msgstr "ðÒÏÓÍÏÔÒÅÎÏ" + +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" +msgstr "ëÁÔÁÌÏÇ çÏÔÏ×" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" +msgstr "ðÏÌÎÏÅ ×ÒÅÍÑ" + +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" +msgstr "÷ÓÅÇÏ ÐÅÓÅÎ" + +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "ðÅÓÅÎ × ÓÅËÕÎÄÕ" + +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "ïÂÎÏ×ÌÅÎÏ" + +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "ïÂÎÏ×ÌÅÎÉÅ ÎÅ ÔÒÅÂÕÅÔÓÑ" + +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" +msgstr "úÁÐÕÝÅÎÏ ÕÄÁÌÅÎÎÏÅ ÏÂÎÏ×ÌÅÎÉÅ" + +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" +msgstr "ïÂÎÏ×ÌÅÎÉÅ ËÁÔÁÌÏÇÁ ÚÁ×ÅÒÛÅÎÏ" + +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" +msgstr "ïÛÉÂËÁ" + +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÇÒÕÚÉÔØ ÂÉÂÌÉÏÔÅËÕ XMLRPC, ÕÂÅÄÉÔÅÓØ ÞÔÏ XML-RPC ×ËÌÀÞÅÎÏ" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "ïÛÉÂËÁ ÐÒÉ ÓÏÅÄÉÎÅÎÉÉ Ó" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "ëÏÄ" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "ðÒÉÞÉÎÁ" + +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "úÁËÏÎÞÅÎÏ ÏÂÎÏ×ÌÅÎÉÅ ÕÄÁÌÅÎÎÙÈ ËÁÔÁÌÏÇÏ×" + +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "äÏÂÁ×ÌÅÎÏ" + +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../admin/flag.php:97 -msgid "Song Updated" -msgstr "ðÅÓÎÑ ÏÂÎÏ×ÌÅÎÙ" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "ïÞÉÓÔËÁ ËÁÔÁÌÏÇÁ ÚÁ×ÅÒÛÅÎÁ" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" -msgstr "úÁÐÒÏÛÅÎÎÁÑ ÐÅÓÎÑ ÂÙÌÁ ÏÂÎÏ×ÌÅÎÁ" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "ÆÁÊÌÙ ÕÄÁÌÅÎÙ" -#: ../../admin/flag.php:139 -msgid "Album Updated" -msgstr "áÌØÂÏÍ ÏÂÎÏ×ÌÅÎ" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" -#: ../../admin/flag.php:181 -msgid "Artist Updated" -msgstr "éÓÐÏÌÎÉÔÅÌØ ÏÂÎÏ×ÌÅÎ" +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr " îáêäåîï" -#: ../../admin/flag.php:246 -msgid "Songs Updated" -msgstr "ðÅÓÎÉ ÏÂÎÏ×ÌÅÎÙ" +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "ðÏÉÓË ÎÏ×ÏÊ ÏÂÌÏÖËÉ ÁÌØÂÏÍÁ" -#: ../../admin/flag.php:254 -msgid "Flag Removed" -msgstr "æÌÁÇ ÓÎÑÔ" +#: ../../lib/class/catalog.class.php:1788 +msgid "Update Finished." +msgstr "ïÂÎÏ×ÌÅÎÉÅ ÚÁ×ÅÒÛÅÎÏ" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" -msgstr "æÌÁÇ ÓÎÑÔ Ó" +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "ïÔÍÅÞÅÎ" -#: ../../admin/flag.php:270 -msgid "Flags Updated" -msgstr "æÌÁÇ ÏÂÎÏ×ÌÅÎ" +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "ÐÅÓÅÎ ÏÂÎÏ×ÌÅÎÏ." -#: ../../admin/flag.php:289 -msgid "Songs Disabled" -msgstr "ðÅÓÎÉ ÏÔËÌÀÞÅÎÙ" +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" -msgstr "úÁÐÒÁÛÉ×ÁÅÍÙÅ ÐÅÓÎÑ(É) ÏÔËÌÀÞÅÎÙ" +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "îÁÚ×ÁÎÉÅ" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" -msgstr "ðÅÓÎÉ ÷ËÌÀÞÅÎÙ" +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "ÏÂÎÏ×ÌÅÎÏ ×" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" -msgstr "úÁÐÒÁÛÉ×ÁÅÍÙÅ ÐÅÓÎÑ(É) ×ËÌÀÞÅÎÙ" +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "âÉÔÒÅÊÄ" -#: ../../admin/flag.php:305 -msgid "Flagged Records" -msgstr "ïÔÍÅÞÅÎÎÙÅ ÚÁÐÉÓÉ" +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "óËÏÒÏÓÔØ" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "òÅÖÉÍ" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "÷ÒÅÍÑ" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "ôÒÅË" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "òÁÚÍÅÒ ÆÁÊÌÁ" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "éÓÐÏÌÎÉÔÅÌØ" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "áÌØÂÏÍ" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "çÏÄ" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "ëÏÍÍÅÎÔÁÒÉÉ" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "óÔÉÌØ" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "ïÄÏÂÒÅÎÏ" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "îÁ ÒÁÓÓÍÏÔÒÅÎÉÉ" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "õÄÁÌÉÔØ" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "éÚÍÅÎÉÔØ ÔÅÇ" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "ðÅÒÅËÏÄÉÒÏ×ÁÔØ" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" +msgstr "äÒÕÇÏÅ" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "îÅÉÚ×ÅÓÔÎÏ" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "óÅÊÞÁÓ ÓÌÕÛÁÀÔ" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "ïÓÔÁÎÏ×ÌÅÎÏ" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" +msgstr "ðÁÕÚÁ" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 +msgid "Error Username Required" +msgstr "ïÛÉÂËÁ: ÔÒÅÂÕÅÔÓÑ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ" + +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 +msgid "Error Passwords don't match" +msgstr "ïÛÉÂËÁ: ðÁÒÏÌØ ÎÅ ÓÏ×ÐÁÄÁÅÔ" + +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" +msgstr "ðÅÓÎÉ" + +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" +msgstr "áÌØÂÏÍÙ" + +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" +msgstr "" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" +msgstr "õÐÒÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ" + +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" +msgstr "" + +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" +msgstr "ðÌÅÊÌÉÓÔÙ" + +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" +msgstr "" + +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +msgid "Catalogs" +msgstr "ëÁÔÁÌÏÇÉ" + +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" +msgstr "" + +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" +msgstr "" + +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" +msgstr "" + +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" +msgstr "" + +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" +msgstr "" + +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" +msgstr "îÅ ÉÇÒÁÔØ" + +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" +msgstr "ðÌÏÈÏ" + +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" +msgstr "èÏÒÏÛÏ" + +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" +msgstr "ïÞÅÎØ ÈÏÒÏÛÏ" + +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" +msgstr "ðÒÏÓÔÏ ÓÕÐÅÒ!" + +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" +msgstr "" + +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" +msgstr "" + +#: ../../lib/preferences.php:160 +msgid "Enable" +msgstr "÷ËÌÀÞÅÎÏ" + +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" +msgstr "÷ÙËÌÀÞÅÎÏ" + +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" +msgstr "ðÏÔÏË" + +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" +msgstr "äÅÍÏËÒÁÔÉÞÎÙÊ" + +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" +msgstr "ìÏËÁÌØÎÏÅ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÅ" + +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" +msgstr "" + +#: ../../lib/preferences.php:187 +msgid "M3U" +msgstr "M3U" + +#: ../../lib/preferences.php:188 +msgid "Simple M3U" +msgstr "ðÒÏÓÔÏÊ M3U" + +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "PLS" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "Asx" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "RAM" + +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "XSPF" + +#: ../../lib/preferences.php:226 +msgid "Disabled" +msgstr "ïÔËÌÀÞÅÎÏ" + +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" +msgstr "ðÏÌØÚÏ×ÁÔÅÌØ" + +#: ../../lib/preferences.php:228 +msgid "Manager" +msgstr "" + +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" +msgstr "áÄÍÉÎËÁ" + +#: ../../lib/preferences.php:249 +msgid "Send on Add" +msgstr "" + +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" +msgstr "" + +#: ../../lib/preferences.php:251 +msgid "Clear on Send" +msgstr "" + +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" +msgstr "" + +#: ../../lib/preferences.php:260 +msgid "Always" +msgstr "" + +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" +msgstr "English" + +#: ../../lib/general.lib.php:436 +msgid "British English" +msgstr "" + +#: ../../lib/general.lib.php:442 +msgid "Turkish" +msgstr "Turkish" + +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" +msgstr "" + +#: ../../lib/general.lib.php:504 +msgid "On" +msgstr "÷ËÌ" + +#: ../../lib/general.lib.php:507 +msgid "Off" +msgstr "÷ÙËÌ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" +msgstr "ÓÅËÕÎÄ ÎÁÚÁÄ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" +msgstr "ÍÉÎÕÔ ÎÁÚÁÄ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" +msgstr "ÞÁÓÏ× ÎÁÚÁÄ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" +msgstr "ÄÎÅÊ ÎÁÚÁÄ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "ÎÅÄÅÌØ ÎÁÚÁÄ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "ÍÅÓÑÃÅ× ÎÁÚÁÄ" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" +msgstr "ÌÅÔ ÎÁÚÁÄ" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "çÌÁ×ÎÁÑ" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "úÁËÁÞÁÔØ" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "ìÏËÁÌØÎÏÅ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÅ" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "óÌÕÞÁÊÎÏÅ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÅ" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "ðÌÅÊÌÉÓÔ" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "ðÏÉÓË" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "ðÒÅÄÐÏÞÔÅÎÉÑ" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "áÄÍÉÎËÁ-ëÁÔÁÌÏÇ" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" +msgstr "áÄÍÉÎËÁ-õÐÒÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ" + +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" +msgstr "áÄÍÉÎËÁ-ðÏÞÔÏ×ÙÅ ÐÏÌØÚÏ×ÁÔÅÌÉ" + +#: ../../lib/ui.lib.php:515 +msgid "Admin-Manage Access Lists" +msgstr "áÄÍÉÎËÁ-ÐÒÁ×ÉÔØ ÓÐÉÓËÉ ÄÏÓÔÕÐÁ" + +#: ../../lib/ui.lib.php:519 +msgid "Admin-Site Preferences" +msgstr "áÄÍÉÎËÁ-ÐÒÅÄÐÏÞÔÅÎÉÑ ÓÁÊÔÁ" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "áÄÍÉÎËÁ-ÐÒÁ×ÉÔØ ÍÏÄÕÌÉ" + +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "óÍÏÔÒÅÔØ ÍÕÚÙËÕ" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "óÔÁÔÉÓÔÉËÁ" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "òÅËÏÍÅÎÄÁÃÉÉ" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 +msgid "Name" +msgstr "éÍÑ" + +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" +msgstr "" + +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" +msgstr "" + +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" +msgstr "îÅÄÁ×ÎÏ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÎÙÅ" + +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "ðÁÒÏÌØ" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "ÆÁÊÌ" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "úÁÇÒÕÚËÁ ÆÁÊÌÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ." + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "îÅÔ ÚÁÇÒÕÖÅÎÎÙÈ ÆÁÊÌÏ×" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "âÙÌÁ ÐÒÏÂÌÅÍÁ Ó ÚÁÇÒÕÚËÏÊ ÆÁÊÌÁ: %s ÎÅ ÂÙÌ ÚÁÇÒÕÖÅÎ." + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" +"âÙÌÁ ÐÒÏÂÌÅÍÁ Ó ÚÁÇÒÕÚËÏÊ ÆÁÊÌÁ: ÒÁÚÍÅÒ ÚÁÇÒÕÖÁÅÍÏÇÏ ÆÁÊÌÁ %s ÐÒÅ×ÙÛÁÅÔ " +"ÍÁËÉÍÁÌØÎÏ ÄÏÍÕÓÔÉÍÙÊ ÒÁÚÍÅÒ (%d ÂÁÊÔ)." + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "âÙÌÁ ÐÒÏÂÌÅÍÁ Ó ÚÁÇÒÕÚËÏÊ ÆÁÊÌÁ: ÆÁÊÌ ÂÙÌ ÚÁÇÒÕÖÅÎ ÞÁÓÔÉÞÎÏ." #: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 msgid "Catalog Updated" msgstr "ëÁÔÁÌÏÇ ÏÂÎÏ×ÌÅÎ" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "Catalog Deleted" msgstr "ëÁÔÁÌÏÇ ÕÄÁÌÅÎ" -#: ../../admin/catalog.php:106 +#: ../../admin/catalog.php:103 msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../admin/catalog.php:115 +#: ../../admin/catalog.php:112 msgid "Songs Removed" msgstr "ðÅÓÎÉ ÕÄÁÌÅÎÙ" -#: ../../admin/catalog.php:118 +#: ../../admin/catalog.php:115 msgid "No Songs Removed" msgstr "ðÅÓÎÉ ÎÅ ÕÄÁÌÅÎÙ" -#: ../../admin/catalog.php:121 +#: ../../admin/catalog.php:118 msgid "Disabled Songs Processed" msgstr "ïÔËÌÀÞÅÎÎÙÅ ÐÅÓÎÉ ÏÂÒÁÂÏÔÁÎÙ" -#: ../../admin/catalog.php:141 +#: ../../admin/catalog.php:138 msgid "Catalog Cleaned" msgstr "ëÁÔÁÌÏÇ ÏÞÉÝÅÎ" -#: ../../admin/catalog.php:191 +#: ../../admin/catalog.php:188 msgid "Catalog Created" msgstr "ëÁÔÁÌÏÇ ÓÏÚÄÁÎ" -#: ../../admin/catalog.php:208 +#: ../../admin/catalog.php:205 msgid "Catalog statistics cleared" msgstr "óÔÁÔÉÓÔÉËÁ ËÁÔÁÌÏÇÁ ÕÄÁÌÅÎÁ" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "Now Playing Cleared" msgstr "ðÒÏÉÇÒÙ×ÁÎÉÅ ÏÞÉÝÅÎÎÙÈ" -#: ../../admin/catalog.php:223 +#: ../../admin/catalog.php:220 msgid "All now playing data has been cleared" msgstr "÷ÓÑ ÐÒÏÉÇÒÁÎÎÙÅ ÔÒÅËÉ ÕÄÁÌÅÎÙ" -#: ../../admin/catalog.php:233 +#: ../../admin/catalog.php:230 msgid "No Disabled songs found" msgstr "ïÔËÌÀÞÅÎÎÙÈ ÐÅÓÅÎ ÎÅ ÎÁÊÄÅÎÏ" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Delete Catalog" msgstr "õÄÁÌÉÔØ ËÁÔÁÌÏÇ" -#: ../../admin/catalog.php:242 +#: ../../admin/catalog.php:239 msgid "Do you really want to delete this catalog?" msgstr "÷Ù ÄÅÊÓÔ×ÉÔÅÌØÎÏ ÈÏÔÉÔÅ ÕÄÁÌÉÔØ ÜÔÏÔ ËÁÔÁÌÏÇ?" -#: ../../admin/catalog.php:261 +#: ../../admin/catalog.php:258 msgid "Album Art Search Finished" msgstr "ðÏÉÓË ÁÌØÂÏÍÎÙÈ ÏÂÌÏÖÅË ÚÁ×ÅÒÛÅÎ" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 -msgid "Error Username Required" -msgstr "ïÛÉÂËÁ: ÔÒÅÂÕÅÔÓÑ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ" +#: ../../admin/flag.php:97 +msgid "Song Updated" +msgstr "ðÅÓÎÑ ÏÂÎÏ×ÌÅÎÙ" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 -msgid "Error Passwords don't match" -msgstr "ïÛÉÂËÁ: ðÁÒÏÌØ ÎÅ ÓÏ×ÐÁÄÁÅÔ" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" +msgstr "úÁÐÒÏÛÅÎÎÁÑ ÐÅÓÎÑ ÂÙÌÁ ÏÂÎÏ×ÌÅÎÁ" + +#: ../../admin/flag.php:139 +msgid "Album Updated" +msgstr "áÌØÂÏÍ ÏÂÎÏ×ÌÅÎ" + +#: ../../admin/flag.php:181 +msgid "Artist Updated" +msgstr "éÓÐÏÌÎÉÔÅÌØ ÏÂÎÏ×ÌÅÎ" + +#: ../../admin/flag.php:246 +msgid "Songs Updated" +msgstr "ðÅÓÎÉ ÏÂÎÏ×ÌÅÎÙ" + +#: ../../admin/flag.php:254 +msgid "Flag Removed" +msgstr "æÌÁÇ ÓÎÑÔ" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" +msgstr "æÌÁÇ ÓÎÑÔ Ó" + +#: ../../admin/flag.php:270 +msgid "Flags Updated" +msgstr "æÌÁÇ ÏÂÎÏ×ÌÅÎ" -#: ../../admin/users.php:79 +#: ../../admin/flag.php:289 +msgid "Songs Disabled" +msgstr "ðÅÓÎÉ ÏÔËÌÀÞÅÎÙ" + +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" +msgstr "úÁÐÒÁÛÉ×ÁÅÍÙÅ ÐÅÓÎÑ(É) ÏÔËÌÀÞÅÎÙ" + +#: ../../admin/flag.php:300 +msgid "Songs Enabled" +msgstr "ðÅÓÎÉ ÷ËÌÀÞÅÎÙ" + +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "úÁÐÒÁÛÉ×ÁÅÍÙÅ ÐÅÓÎÑ(É) ×ËÌÀÞÅÎÙ" + +#: ../../admin/flag.php:305 +msgid "Flagged Records" +msgstr "ïÔÍÅÞÅÎÎÙÅ ÚÁÐÉÓÉ" + +#: ../../admin/users.php:78 msgid "User Updated" msgstr "" -#: ../../admin/users.php:79 +#: ../../admin/users.php:78 msgid "updated" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" +msgstr "ïÛÉÂËÁ: ðÏÌØÚÏ×ÁÔÅÌØ Ó ÔÁËÉÍ ÉÍÅÎÅÍ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ" + +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 #: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 #: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 msgid "Guest" msgstr "çÏÓÔØ" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" -msgstr "ðÏÌØÚÏ×ÁÔÅÌØ" - -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" -msgstr "áÄÍÉÎËÁ" - -#: ../../admin/users.php:119 +#: ../../admin/users.php:118 msgid "New User Added" msgstr "" -#: ../../admin/users.php:124 +#: ../../admin/users.php:123 msgid "User Enabled" msgstr "" -#: ../../admin/users.php:129 +#: ../../admin/users.php:128 msgid "User Disabled" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" -msgstr "ïÛÉÂËÁ" - -#: ../../admin/users.php:132 +#: ../../admin/users.php:131 msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../admin/users.php:154 +#: ../../admin/users.php:153 msgid "User Deleted" msgstr "ðÏÌØÚÏ×ÁÔÅÌØ ÕÄÁÌÅÎ" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Delete Error" msgstr "ïÛÉÂËÁ ÕÄÁÌÅÎÉÑ" -#: ../../admin/users.php:157 +#: ../../admin/users.php:156 msgid "Unable to delete last Admin User" msgstr "îÅÌØÚÑ ÕÄÁÌÉÔØ ÐÏÓÌÅÄÎÅÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ - ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ" -#: ../../admin/users.php:163 +#: ../../admin/users.php:162 msgid "Deletion Request" msgstr "úÁÐÒÏÓ ÎÁ ÕÄÁÌÅÎÉÅ" -#: ../../admin/users.php:164 +#: ../../admin/users.php:163 msgid "Are you sure you want to permanently delete" msgstr "÷Ù Õ×ÅÒÅÎÙ ÞÔÏ ÈÏÔÉÔÅ ÕÄÁÌÉÔØ ÐÏÌÎÏÓÔØÀ" @@ -308,401 +1101,83 @@ msgstr "õÄÁÌÅÎ" msgid "Your Access List Entry has been removed" msgstr "úÁÐÉÓØ ÓÐÉÓËÁ ÄÏÓÔÕÐÁ ÂÙÌÁ ÕÄÁÌÅÎÁ" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" -msgstr "äÏÂÁ×ÌÅÎÏ" - #: ../../admin/access.php:40 msgid "Your new Access List Entry has been created" msgstr "îÏ×ÁÑ ÚÁÐÉÓØ ÓÐÉÓËÁ ÄÏÓÔÕÐÁ ÓÏÚÄÁÎÁ" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" -msgstr "ïÂÎÏ×ÌÅÎÏ" - #: ../../admin/access.php:45 msgid "Access List Entry updated" msgstr "úÁÐÉÓØ ÓÐÉÓËÁ ÄÏÓÔÕÐÁ ÏÂÎÏ×ÌÅÎÁ" -#: ../../admin/system.php:64 -msgid "Export Failed" -msgstr "üËÓÐÏÒÔ ÎÅ ÕÄÁÌÓÑ" - -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" -msgstr "ëÁÔÁÌÏÇÏ× ÎÅ ÎÁÊÄÅÎÏ" - -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" -msgstr "äÏÂÁ×ÉÔØ ËÁÔÁÌÏÇ" - -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" -msgstr "óÔÁÔÉÓÔÉËÁ ËÁÔÁÌÏÇÁ" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" -msgstr "ÄÅÎØ" - -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" -msgstr "ÄÎÉ" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" -msgstr "ÞÁÓ" - -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" -msgstr "ÞÁÓÙ" - -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "÷ÓÅÇÏ ÐÏÌØÚÏ×ÁÔÅÌÅÊ" - -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" -msgstr "ðÏÄËÌÀÞÅÎÏ ÐÏÌØÚÏ×ÁÔÅÌÅÊ" - -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" -msgstr "áÌØÂÏÍÙ" - -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" -msgstr "éÓÐÏÌÎÉÔÅÌÉ" - -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" -msgstr "ðÅÓÎÉ" - -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" -msgstr "òÁÚÍÅÒ ËÁÔÁÌÏÇÁ" - -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" -msgstr "÷ÒÅÍÑ ËÁÔÁÌÏÇÁ" - -#: ../../admin/mail.php:260 +#: ../../admin/mail.php:57 msgid "E-mail Sent" msgstr "å-ÍÁÊÌ ÏÔÐÒÁ×ÌÅÎ" -#: ../../admin/mail.php:261 +#: ../../admin/mail.php:58 msgid "Your E-mail was successfully sent." msgstr "÷ÁÛÅ Å-ÍÁÊÌ ÓÏÏÂÝÅÎÉÅ ÕÓÐÅÛÎÏ ÏÔÐÒÁ×ÌÅÎÏ" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" -msgstr "" +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "üËÓÐÏÒÔ ÎÅ ÕÄÁÌÓÑ" -#: ../../preferences.php:86 -msgid "Error Update Failed" -msgstr "" +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "éÇÒÁÔØ" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" -msgstr "ðÏÚÉÃÉÑ ÏÔÍÅÞÅÎÁ" - -#: ../../flag.php:45 -msgid "The specified item has been flagged" -msgstr "õËÁÚÁÎÎÁÑ ÐÏÚÉÃÉÑ ÏÔÍÅÞÅÎÁ" - -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -msgid "Catalogs" -msgstr "ëÁÔÁÌÏÇÉ" - -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" -msgstr "éÍÑ" - -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" -msgstr "äÅÊÓÔ×ÉÅ" - -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" -msgstr "äÏÂÁ×ÉÔØ" - -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" -msgstr "ðÒÏ×ÅÒÉÔØ" - -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" -msgstr "ïÞÉÓÔÉÔØ" - -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" -msgstr "÷ÓÅ" - -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" -msgstr "õÄÁÌÉÔØ" - -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" -msgstr "âÙÓÔÒÏ" - -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" -msgstr "÷ÙÂÒÁÔØ ÏÂÌÏÖËÕ" - -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" -msgstr "ëÁÔÁÌÏÇÏ× ÎÅ ÎÁÊÄÅÎÏ" - -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" -msgstr "ïÞÉÓÔÉÔØ ×ÓÅ" - -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" -msgstr "ðÒÏ×ÅÒÉÔØ ×ÓÅ" - -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" -msgstr "äÏÂÁ×ÉÔØ ×Ï ×ÓÅ" - -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -msgid "Update All" -msgstr "ïÂÎÏ×ÉÔØ ×ÓÅ" - -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" -msgstr "óÔÁÔÉÓÔÉËÁ ÕÄÁÌÅÎÎÙÈ ËÁÔÁÌÏÇÏ×" - -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" -msgstr "ðÏÄÏÂÒÁÔØ ÏÂÌÏÖËÕ ÁÌØÂÏÍÁ" - -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" -msgstr "äÒÕÇÉÅ ÓÒÅÄÓÔ×Á" - -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" -msgstr "ðÏËÁÚÁÔØ ÄÕÂÌÉÒÕÀÝÉÅÓÑ ÐÅÓÎÉ" - -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" -msgstr "óÏÚÄÁÔØ ÎÏ×ÙÊ ËÏÎÆÉÇ" - -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" -msgstr "äÏÓÔÕÐ Ë ÐÒÅÄÐÏÞÔÅÎÉÑÍ" - -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" -msgstr "üËÓÐÏÒÔÉÒÏ×ÁÔØ × Itunes âä" - -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" -msgstr "ðÒÏ×ÅÒÉÔØ ÎÏ×ÕÀ ×ÅÒÓÉÀ" - -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" -msgstr "÷ÙÂÒÁÔØ" +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +msgid "Clear Playlist" +msgstr "ïÞÉÓÔÉÔØ ÐÌÅÊÌÉÓÔ" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" -msgstr "ïÔÍÅÞÅÎÎÙÅ" - -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" -msgstr "ëÏÍÍÅÎÔÁÒÉÉ" - -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" -msgstr "óÔÁÔÕÓ" - -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -msgid "No Records Found" -msgstr "úÁÐÉÓÅÊ ÎÅ ÎÁÊÄÅÎÏ" - -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" -msgstr "ïÔËÌÏÎÉÔØ" - -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" -msgstr "ïÄÏÂÒÉÔØ" - -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -msgid "Update" -msgstr "ïÂÎÏ×ÉÔØ" +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "îÅÄÏÓÔÁÔÏÞÎÏ ÄÁÎÎÙÈ" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -msgid "Show All" -msgstr "ðÏËÁÚÁÔØ ×ÓÅ" +#: ../../templates/rightbar.inc.php:104 +msgid "More" +msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "õÓÔÁÎÏ×ËÁ Ampache" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -713,9 +1188,9 @@ msgstr "" "ÕÂÅÄÉÔÅÓØ ÞÔÏ Õ ×ÁÓ ×ÙÐÏÌÎÅÎÙ ÓÌÅÄÕÀÝÉÅ ÕÓÌÏ×ÉÑ:" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -731,9 +1206,9 @@ msgstr "" "ampache.cfg.dist.php" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -746,8 +1221,8 @@ msgstr "" "config/ampache.cfg.php" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "ûÁÇ 1 - óÏÚÄÁÎÉÅ É ÄÏÂÁ×ÌÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ Ampache" @@ -756,8 +1231,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "ûÁÇ 2 - óÏÚÄÁÎÉÅ ÆÁÊÌÁ ampache.cfg.php" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "ûÁÇ 3 - îÁÓÔÒÏÊËÁ ÐÅÒ×ÉÞÎÏÇÏ ÁËËÁÕÎÔÁ" @@ -775,191 +1250,279 @@ msgid "Create Admin Account" msgstr "óÏÚÄÁÎÉÅ ÁËËÁÕÎÔÁ ÁÄÍÉÎÉÓÔÒÁÔÏÒÁ " #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "ðÏÌØÚÏ×ÁÔÅÌØ" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "ðÁÒÏÌØ" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "óÏÚÄÁÔØ ÁËËÁÕÎÔ" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" +msgstr "äÏÂÁ×ÉÔØ ËÁÔÁÌÏÇ" + +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" +msgstr "" +"÷×ÅÄÉÔÅ × ÓÌÅÄÕÀÝÕÀ ÆÏÒÍÕ ÌÏËÁÌØÎÙÊ ÐÕÔØ (ÎÁÐÒ. /data/music), ÉÌÉ URL " +"ËÕÄÁÌÅÎÎÏÊ ÉÎÓÔÁÌÑÃÉÉ Apache (ÎÁÐÒ.http://theotherampache.com)" + +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" +msgstr "ëÁÔÁÌÏÇ" + +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" +msgstr "á×ÔÏÍÁÔÉÞÅÓËÉ ÄÏÂÁ×ÌÅÎÎÙÅ ÐÏÌÑ" + +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" +msgstr "ÎÁÚ×ÁÎÉÅ ÁÌØÂÏÍÁ" + +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" +msgstr "ÉÍÑ ÉÓÐÏÌÎÉÔÅÌÑ" + +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" +msgstr "id3 ËÏÍÍÅÎÔÁÒÉÉ" + +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" +msgstr "ÖÁÎÒ" + +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" +msgstr "ÎÏÍÅÒ ÔÒÅËÁ (ÚÁÐÏÌÎÅÎÎÙÊ ÎÁÞÁÌØÎÙÍ 0)" + +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" +msgstr "ÎÁÚ×ÁÎÉÅ ÐÅÓÎÉ" + +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" +msgstr "ÇÏÄ" + +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" +msgstr "ÄÒÕÇÏÅ" + +#: ../../templates/show_add_catalog.inc.php:48 #: ../../templates/show_catalogs.inc.php:33 #: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 msgid "Path" msgstr "ðÕÔØ" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" +msgstr "ôÉÐ ËÁÔÁÌÏÇÁ" + +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" +msgstr "ìÏËÁÌØÎÙÊ" + +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" +msgstr "õÄÁÌÅÎÎÙÊ" + +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" +msgstr "XML-RPC ËÌÀÞ" + +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" +msgstr "ôÒÅÂÕÅÔÓÑ ÄÌÑ ÕÄÁÌÅÎÎÙÈ ËÁÔÁÌÏÇÏ×" + +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" +msgstr "ûÁÂÌÏÎ ÉÍÅÎÉ ÆÁÊÌÁ" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" +msgstr "ûÁÂÌÏÎ ÐÁÐËÉ" + +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" +msgstr "(ÂÅÚ ÎÁÞÁÌØÎÏÇÏ ÉÌÉ ÚÁ×ÅÒÛÁÀÝÅÇÏ '/')" + +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" +msgstr "ðÏÄÏÂÒÁÔØ ÏÂÌÏÖËÕ ÁÌØÂÏÍÁ" + +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" +msgstr "óÏÚÄÁ×ÁÔØ ÐÌÅÊÌÉÓÔÙ ÉÚ m3u ÆÁÊÌÏ×" + +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" +msgstr "äÏÂÁ×ÉÔØ ËÁÔÁÌÏÇ" + +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" +msgstr "Increase Volume" + +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "Decrease Volume" + +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" +msgstr "çÒÏÍËÏÓÔØ" + +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" +msgstr "ðÏ×ÔÏÒÑÔØ" + +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" +msgstr "óÌÕÞÁÊÎÏ" + +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" +msgstr "äÏÂÁ×ÉÔØ" + +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" +msgstr "ðÌÅÊÌÉÓÔ" + +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" +msgstr "No ðÅÓÎÉ" + +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" +msgstr "÷ÌÁÄÅÌÅÃ" + +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 #: ../../templates/show_artist_box.inc.php:32 #: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 #: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 msgid "Actions" msgstr "äÅÊÓÔ×ÉÑ" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" -msgstr "XSPF ÐÒÏÉÇÒÙ×ÁÔÅÌØ" - -#: ../../templates/show_song.inc.php:22 -msgid "Details" -msgstr "" +#: ../../templates/show_album_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 +#: ../../templates/show_artist_row.inc.php:36 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_row.inc.php:36 +msgid "Edit" +msgstr "éÚÍÅÎÉÔØ" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" -msgstr "îÁÚ×ÁÎÉÅ" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" +msgstr "ðÏÈÏÖÉÅ ÉÓÐÏÌÎÉÔÅÌÉ" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" -msgstr "éÓÐÏÌÎÉÔÅÌØ" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" +msgstr "" +"ðÏÖÁÌÕÊÓÔÁ ×ÙÄÅÌÉÔÅ ÉÓÐÏÌÎÉÔÅÌÅÊ, ËÏÔÏÒÙÈ ×Ù ÈÏÔÉÔÅ ÏÂßÅÄÉÎÉÔØ Ó ÔÅËÕÝÉÍ" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" -msgstr "áÌØÂÏÍ" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" +msgstr "îÁÚÁÄ" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" -msgstr "óÔÉÌØ" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" +msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ ×ÙÄÅÌÅÎÎÙÅ" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" -msgstr "âÉÔÒÅÊÄ" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" +msgstr "ïÔÍÅÎÉÔØ" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" -msgstr "æÁÊÌ" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" +msgstr "äÏÐÏÌÎÉÔÅÌØÎÙÅ ÎÁÓÔÒÏÊËÉ" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" +msgstr "éÓËÁÔØ ÅÝÅ" #: ../../templates/sidebar_browse.inc.php:3 msgid "Browse By" msgstr "" #: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 #: ../../templates/show_playlist_songs.inc.php:42 #: ../../templates/show_playlist_songs.inc.php:63 msgid "Song Title" msgstr "ðÅÓÎÑ" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" -msgstr "ðÌÅÊÌÉÓÔ" - -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" -msgstr "" - #: ../../templates/sidebar_browse.inc.php:18 msgid "Filters" msgstr "" @@ -972,121 +1535,264 @@ msgstr "" msgid "Rated" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 +#: ../../templates/sidebar_browse.inc.php:27 msgid "Unplayed" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 +#: ../../templates/sidebar_browse.inc.php:30 msgid "Show Art" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" -msgstr "" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" +msgstr "ìÀÂÉÍÙÅ" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" -msgstr "îÅÉÚ×ÅÓÔÎÏ" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" +msgstr "ìÀÂÉÍÙÅ ÉÓÐÏÌÎÉÔÅÌÉ" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" -msgstr "ðÏÌÎÏÅ ÉÍÑ" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" +msgstr "ìÀÂÉÍÙÅ ÁÌØÂÏÍÙ" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" -msgstr "" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" +msgstr "ìÀÂÉÍÙÅ ÐÅÓÎÉ" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "ðÏÓÌÅÄÎÅÅ ÐÏÑ×ÌÅÎÉÅ" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" +msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÙÊ ÎÁÂÏÒ" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "áËÔÉ×ÎÏÓÔØ" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" +msgstr "ëÏÌÉÞÅÓÔ×Ï" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" +msgstr "öÁÎÒÁ" + +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" +msgstr "ðÒÏÄÏÌÖÉÔÅÌØÎÏÓÔØ" + +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" +msgstr "îÅ ÏÇÒÁÎÉÞÅÎÏ" + +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 +msgid "Type" +msgstr "ôÉÐ" + +#: ../../templates/show_random.inc.php:65 +msgid "Standard" +msgstr "óÔÁÎÄÁÒÔÎÙÊ" + +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" +msgstr "òÅÖÅ ÐÒÏÉÇÒÙ×ÁÅÍÙÅ" + +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" +msgstr "ðÏÌÎÏÓÔØÀ ÁÌØÂÏÍÙ" + +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" +msgstr "ðÏÌÎÏÓÔØÀ ÉÓÐÏÌÎÉÔÅÌÉ" + +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_random.inc.php:76 +msgid "From catalog" +msgstr "ëÁÔÁÌÏÇÁ" + +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" +msgstr "ìÉÍÉÔ ÐÏ ÒÁÚÍÅÒÕ" + +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" +msgstr "÷ ÏÞÅÒÅÄØ" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" +msgstr "îÁÞÁÔ ÐÏÉÓË ÎÏ×ÙÈ ÐÅÓÅÎ ×" + +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" +msgstr "ËÁÔÁÌÏÇ" + +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" -msgstr "îÅÄÁ×ÎÏ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÎÙÅ" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" +msgstr "òÅÄÁËÔÉÒÏ×ÁÎÉÅ ÐÌÅÊÌÉÓÔÁ" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" -msgstr "ôÒÅË" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "ïÂÝÅÅ" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" -msgstr "÷ÒÅÍÑ" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" +msgstr "þÁÓÔÎÏÅ" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" -msgstr "îÅÄÏÓÔÁÔÏÞÎÏ ÄÁÎÎÙÈ" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +msgid "Update" +msgstr "ïÂÎÏ×ÉÔØ" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" -msgstr "ïÂÌÏÖËÁ ÁÌØÂÏÍÁ" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" +msgstr "ìÏÇÉÎ" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" -msgstr "ýÅÌËÎÉÔÅ ÄÌÑ ÚÁËÒÙÔÉÑ ÏËÎÁ" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" +msgstr "úÁÐÏÍÎÉÔØ ÍÅÎÑ" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" -msgstr "óËÁÞÁÔØ" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" +msgstr "òÅÇÉÓÔÒÁÃÉÑ" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 -#: ../../templates/show_playlist_row.inc.php:36 -msgid "Edit" -msgstr "éÚÍÅÎÉÔØ" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" +msgstr "æÒÁÚÁ ÄÎÑ" + +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" +msgstr "äÅÊÓÔ×ÉÅ" + +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" +msgstr "ðÒÏ×ÅÒÉÔØ" + +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +msgid "Clean" +msgstr "ïÞÉÓÔÉÔØ" + +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" +msgstr "âÙÓÔÒÏ" + +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" +msgstr "÷ÙÂÒÁÔØ ÏÂÌÏÖËÕ" + +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" +msgstr "ëÁÔÁÌÏÇÏ× ÎÅ ÎÁÊÄÅÎÏ" + +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" +msgstr "ïÞÉÓÔÉÔØ ×ÓÅ" + +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" +msgstr "ðÒÏ×ÅÒÉÔØ ×ÓÅ" + +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" +msgstr "äÏÂÁ×ÉÔØ ×Ï ×ÓÅ" + +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +msgid "Update All" +msgstr "ïÂÎÏ×ÉÔØ ×ÓÅ" + +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" +msgstr "óÔÁÔÉÓÔÉËÁ ÕÄÁÌÅÎÎÙÈ ËÁÔÁÌÏÇÏ×" + +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" +msgstr "äÒÕÇÉÅ ÓÒÅÄÓÔ×Á" + +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" +msgstr "ðÏËÁÚÁÔØ ÄÕÂÌÉÒÕÀÝÉÅÓÑ ÐÅÓÎÉ" + +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" +msgstr "" + +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" +msgstr "óÏÚÄÁÔØ ÎÏ×ÙÊ ËÏÎÆÉÇ" + +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" +msgstr "äÏÓÔÕÐ Ë ÐÒÅÄÐÏÞÔÅÎÉÑÍ" + +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" +msgstr "üËÓÐÏÒÔÉÒÏ×ÁÔØ × Itunes âä" + +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" +msgstr "" + +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" +msgstr "ðÒÏ×ÅÒÉÔØ ÎÏ×ÕÀ ×ÅÒÓÉÀ" #: ../../templates/show_flag.inc.php:41 msgid "Flag Song" @@ -1109,399 +1815,235 @@ msgstr "ðÒÉÞÉÎÁ ÏÔÍÅÔËÉ" msgid "Incorrect Tags" msgstr "îÅ×ÅÒÎÙÅ ÔÅÇÉ" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" -msgstr "ðÅÒÅËÏÄÉÒÏ×ÁÔØ" - -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" -msgstr "äÒÕÇÏÅ" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" +msgstr "ïÔÍÅÞÅÎÎÙÅ" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" -msgstr "ÉÚ" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" +msgstr "ðÒÏÓÍÏÔÒ" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "îÁÊÄÅÎÏ" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" +msgstr "÷ÙÊÔÉ" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" -msgstr "ôÒÅÂÏ×ÁÎÉÑ" - -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" -msgstr "áÌØÂÏÍÙ ÍÇÎÏ×ÅÎÉÑ" - -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" -msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÁÌØÂÏÍ" - -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" -msgstr "çÒÏÍËÏÓÔØ" - -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" -msgstr "ðÏ×ÔÏÒÑÔØ" - -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "óÌÕÞÁÊÎÏ" - -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" -msgstr "÷ÒÅÍÑ ÄÏÂÁ×ÌÅÎÉÑ" - -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" -msgstr "õÄÁÌÉÔØ" - -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" -msgstr "äÏÂÁ×ÉÔØ ÚÁÐÉÓØ" - -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" -msgstr "îÁÞÁÌØÎÙÊ ÁÄÒÅÓ" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" +msgstr "ðÏÌÎÏÅ ÉÍÑ" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" -msgstr "ëÏÎÅÞÎÙÊ ÁÄÒÅÓ" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" +msgstr "" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" -msgstr "õÒÏ×ÅÎØ" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" +msgstr "ðÏÓÌÅÄÎÅÅ ÐÏÑ×ÌÅÎÉÅ" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" -msgstr "ëÌÀÞ" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" +msgstr "áËÔÉ×ÎÏÓÔØ" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 -msgid "Type" -msgstr "ôÉÐ" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" +msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "éÍÑ" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" +msgstr "" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "äÁÔÁ ÒÅÇÉÓÔÒÁÃÉÉ" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" +msgstr "" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" -msgstr "ðÏÓÌÅÄÎÉÊ IP" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" +msgstr "áÌØÂÏÍÙ" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "On-line" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" +msgstr "ðÏËÁÚÁÔØ ×ÓÅ ÐÅÓÎÉ" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "óÏÚÄÁÔØ ÎÏ×ÙÊ ÐÌÅÊÌÉÓÔ" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" +msgstr "ïÂÎÏ×ÉÔØ ÉÚ ÔÅÇÏ×" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" +msgstr "" + +#: ../../templates/show_songs.inc.php:48 #: ../../templates/show_now_playing_row.inc.php:36 #: ../../templates/show_search.inc.php:91 msgid "Rating" msgstr "òÅÊÔÉÎÇ" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "ðÅÓÎÑ" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" +msgstr "ôÅËÕÝÉÊ ÐÌÅÊÌÉÓÔ" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr "ûÁÇ 2 - óÏÚÄÁÎÉÅ ÆÁÊÌÁ Ampache.cfg.php" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +msgid "No Records Found" +msgstr "úÁÐÉÓÅÊ ÎÅ ÎÁÊÄÅÎÏ" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" -msgstr "" -"îÁ ÜÔÉÈ ÛÁÇÁÈ ÂÕÄÕÔ ÚÁÐÒÏÛÅÎÙ ÏÓÎÏ×ÎÙÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÚÎÁÞÅÎÉÑ É ÂÕÄÅÔ " -"ÐÒÏÉÚ×ÅÄÅÎÁ ÐÏÐÙÔËÁ ÚÁÐÉÓÁÔØ ÉÈ ÎÁÐÒÑÍÕÀ ÎÁ ×Å ÓÅÒ×ÅÒ. åÓÌÉ ÄÏÓÔÕÐ ÂÕÄÅÔ " -"ÚÁÐÒÅÝÅÎ, ÂÕÄÅÔ ÚÁÐÒÏÓ ÎÁ ÓËÁÞÉ×ÁÎÉÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ. ðÏÖÁÌÕÊÓÔÁ, " -"ÐÏÌÏÖÉÔÅ ÓËÁÞÁÎÎÙÊ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ × /config" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" +msgstr "ðÒÅÄÐÏÞÔÅÎÉÅ" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" -msgstr "" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" +msgstr "úÎÁÞÅÎÉÅ" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" -msgstr "÷Å ÐÕÔØ" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" +msgstr "ðÒÉÍÅÎÉÔØ ËÏ ×ÓÅÍ" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" -msgstr "öÅÌÁÅÍÏÅ ÉÍÑ ÂÁÚÙ ÄÁÎÎÙÈ" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" +msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" -msgstr "éÍÑ ÈÏÓÔÁ MySQL" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" +msgstr "ÏÐÉÓÁÎÉÅ" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ MySQL" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" +msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "ðÁÒÏÌØ MySQL" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" +msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" -msgstr "óÏÈÒÁÎÉÔØ ËÏÎÆÉÇÕÒÁÃÉÀ" +#: ../../templates/header.inc.php:71 +msgid "Log out" +msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "Ampache.cfg.php ÓÕÝÅÓÔ×ÕÅÔ" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" +msgstr "ïÛÉÂËÁ: ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ ÕÓÔÁÒÅÌ" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "Ampache.cfg.php ÎÁÓÔÒÏÅÎ?" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" +msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" -msgstr "ðÒÏ×ÅÒÉÔØ ËÏÎÆÉÇÕÒÁÃÉÀ" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" +msgstr "ðÏÌØÚÏ×ÁÔÅÌØÓËÏÅ ÓÏÇÌÁÛÅÎÉÅ" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" -msgstr "" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" +msgstr "ñ ÐÒÉÎÉÍÁÀ" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" -msgstr "òÅÄÁËÔÉÒÏ×ÁÎÉÅ ÓÕÝÅÓÔ×ÕÀÝÅÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" +msgstr "éÎÆÏÒÍÁÃÉÑ Ï ÐÏÌØÚÏ×ÁÔÅÌÅ" +#: ../../templates/show_user_registration.inc.php:94 #: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 #: ../../templates/show_add_user.inc.php:44 #: ../../templates/show_account.inc.php:34 msgid "E-mail" msgstr "å-ÍÁÊÌ" +#: ../../templates/show_user_registration.inc.php:112 #: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 #: ../../templates/show_add_user.inc.php:61 #: ../../templates/show_account.inc.php:47 msgid "Confirm Password" msgstr "ðÏÄÔ×ÅÒÖÄÅÎÉÅ ÐÁÒÏÌÑ" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" -msgstr "õÒÏ×ÅÎØ ÄÏÓÔÕÐÁ ÐÏÌØÚÏ×ÁÔÅÌÑ" - -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "ïÂÎÏ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ" - -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" -msgstr "òÁÚÌÉÞÎÙÅ" - -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "ðÏÉÓË" - -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" -msgstr "" - -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" -msgstr "óÏÚÄÁÔØ" - -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "ðÒÏÄÏÌÖÉÔØ" - -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" -msgstr "ïÔÍÅÎÉÔØ" - -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" -msgstr "çÌÁ×ÎÁÑ" - -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "ðÒÏÓÍÏÔÒ" - -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" -msgstr "ìÏËÁÌØÎÏÅ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÅ" - -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" -msgstr "ðÒÅÄÐÏÞÔÅÎÉÑ" - -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" -msgstr "÷ÙÊÔÉ" - -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "ïÂÎÏ×ÌÅÎÉÅ" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "úÁÒÅÇÉÓÔÒÉÒÏ×ÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" -msgstr "ëÁÔÁÌÏÇ" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" +msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ ÁÌØÂÏÍ" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." -msgstr "ðÅÓÎÉ ÎÁÊÄÅÎÙ, ÐÒÏ×ÅÒËÁ ÉÎÆÏÒÍÁÃÉÉ ÉÚ ÔÅÇÏ×" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" +msgstr "ïÔÍÅÔÉÔØ ÄÌÑ ÉÚÍÅÎÅÎÉÑ ÔÅÇÁ" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" -msgstr "ðÒÏ×ÅÒÅÎÏ" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" +msgstr "ïÂÎÏ×ÉÔØ ÁÌØÂÏÍ" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -msgid "Current Playlist" -msgstr "ôÅËÕÝÉÊ ÐÌÅÊÌÉÓÔ" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" +msgstr "ôÒÅÂÏ×ÁÎÉÑ" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" - -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" -msgstr "Stop" - -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" -msgstr "Pause" - -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" -msgstr "éÇÒÁÔØ" - -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" -msgstr "äÁÌÅÅ" - -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" -msgstr "ïÐÉÓÁÎÉÅ" - -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" -msgstr "÷ÅÒÓÉÑ" - -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" -msgstr "÷ÙËÌÀÞÅÎÏ" - -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" -msgstr "áËÔÉ×ÉÒÏ×ÁÔØ" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" #: ../../templates/show_install.inc.php:54 msgid "" @@ -1513,10 +2055,25 @@ msgstr "" "ÐÒÅÄÏÓÔÁרÔÅ mysql ÁËËÁÕÎÔ Ó ÐÒÁ×ÁÍÉ ÓÏÚÄÁÎÉÑ ÂÁÚ ÄÁÎÎÙÈ. äÁÎÎÙÊ ÛÁÇ ÍÏÖÅÔ " "ÚÁÎÑÔØ ÎÅËÏÔÏÒÏÅ ×ÒÅÍÑ × ÚÁ×ÉÓÉÍÏÓÔÉ ÏÔ ÓËÏÒÏÓÔÉ ÷ÁÛÅÇÏ ËÏÍÐØÀÔÅÒÁ." +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" +msgstr "ûÁÇ 2 - óÏÚÄÁÎÉÅ ÆÁÊÌÁ Ampache.cfg.php" + #: ../../templates/show_install.inc.php:61 msgid "Insert Ampache Database" msgstr "" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" +msgstr "öÅÌÁÅÍÏÅ ÉÍÑ ÂÁÚÙ ÄÁÎÎÙÈ" + +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" +msgstr "éÍÑ ÈÏÓÔÁ MySQL" + #: ../../templates/show_install.inc.php:73 msgid "MySQL Administrative Username" msgstr "" @@ -1545,669 +2102,440 @@ msgstr "" msgid "Insert Database" msgstr "äÏÂÁ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" -msgstr "ðÏÈÏÖÉÅ ÉÓÐÏÌÎÉÔÅÌÉ" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -"ðÏÖÁÌÕÊÓÔÁ ×ÙÄÅÌÉÔÅ ÉÓÐÏÌÎÉÔÅÌÅÊ, ËÏÔÏÒÙÈ ×Ù ÈÏÔÉÔÅ ÏÂßÅÄÉÎÉÔØ Ó ÔÅËÕÝÉÍ" - -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" -msgstr "îÁÚÁÄ" - -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" -msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ ×ÙÄÅÌÅÎÎÙÅ" - -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" -msgstr "äÏÐÏÌÎÉÔÅÌØÎÙÅ ÎÁÓÔÒÏÊËÉ" - -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" -msgstr "éÓËÁÔØ ÅÝÅ" #: ../../templates/show_add_playlist.inc.php:24 msgid "Create a new playlist" msgstr "óÏÚÄÁÔØ ÎÏ×ÙÊ ÐÌÅÊÌÉÓÔ" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" -msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" +msgstr "óÏÚÄÁÔØ" + +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" +msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ ÐÅÓÎÀ" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 #: ../../templates/show_edit_song.inc.php:40 #: ../../templates/show_edit_song.inc.php:48 #: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 msgid "OR" msgstr "éìé" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" -msgstr "äÏÂÁ×ÉÔØ ÔÅËÕÝÕÀ" - -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" -msgstr "ïÂÎÏ×ÉÔØ id3 ÔÅÇÉ" - -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" -msgstr "îÏÒÍÁÌÉÚÉÒÏ×ÁÔØ ÔÒÅËÉ" - -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" -msgstr "" - -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" -msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÏ" - -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" -msgstr "" - -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" -msgstr "" - -#: ../../templates/header.inc.php:71 -msgid "Log out" -msgstr "" - -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" -msgstr "ïÛÉÂËÁ: ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ ÕÓÔÁÒÅÌ" - -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "ïÂÌÏÖËÁ" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "çÏÄ" - -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" -msgstr "õÐÒÁ×ÌÅÎÉÅ ÐÒÅÄÐÏÞÔÅÎÉÑÍÉ" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" -msgstr "ðÒÅÄÐÏÞÔÅÎÉÅ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" -msgstr "ÓÅËÕÎÄ ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" -msgstr "ÍÉÎÕÔ ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" -msgstr "ÞÁÓÏ× ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" -msgstr "ÄÎÅÊ ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" -msgstr "ÎÅÄÅÌØ ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "ÍÅÓÑÃÅ× ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" -msgstr "ÌÅÔ ÎÁÚÁÄ" - -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "ðÏÓÌÅÄÎÉÊ ÒÁÚ" - -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" -msgstr "éÓËÁÔØ" - -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" -msgstr "ëÌÀÞÅ×ÙÅ ÓÌÏ×Á" - -#: ../../templates/show_search.inc.php:72 -msgid "Played" -msgstr "ðÒÏÉÇÒÁÎÎÁÑ" - -#: ../../templates/show_search.inc.php:76 -msgid "Yes" -msgstr "äÁ" - -#: ../../templates/show_search.inc.php:77 -msgid "No" -msgstr "îÅÔ" - -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" -msgstr "íÉÎ ÂÉÔÒÅÊÄ" - -#: ../../templates/show_search.inc.php:95 -msgid "One Star" -msgstr "ïÄÎÁ Ú×ÅÚÄÁ" - -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" -msgstr "ä×Å Ú×ÅÚÄÙ" - -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" -msgstr "ôÒÉ Ú×ÅÚÄÙ" - -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" -msgstr "þÅÔÙÒÅ Ú×ÅÚÄÙ" - -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" -msgstr "ðÑÔØ Ú×ÅÚÄ" - -#: ../../templates/show_search.inc.php:102 -msgid "Operator" -msgstr "ïÐÅÒÁÔÏÒ" - -#: ../../templates/show_search.inc.php:105 -msgid "AND" -msgstr "é" - -#: ../../templates/show_search.inc.php:111 -msgid "Method" -msgstr "íÅÔÏÄ" - -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" -msgstr "îÅÞÅÔËÉÊ" - -#: ../../templates/show_search.inc.php:115 -msgid "Exact" -msgstr "þÅÔËÉÊ" - -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" -msgstr "íÁËÓÉÍÕÍ ÒÅÚÕÌØÔÁÔÏ×" - -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" -msgstr "îÅ ÏÇÒÁÎÉÞÅÎÏ" - -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" -msgstr "" - -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" +msgstr "ïÂÎÏ×ÉÔØ ÐÅÓÎÀ" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" +msgstr "îÁÓÔÒÏÊËÉ ÄÌÑ" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" +msgstr "ûÁÂÌÏÎ ÉÍÅÎÉ ÆÁÊÌÁ" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" -msgstr "" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" +msgstr "óÏÈÒÁÎÉÔØ ÎÁÓÔÒÏÊËÉ ËÁÔÁÌÏÇÁ" #: ../../templates/show_edit_access.inc.php:22 msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "ôÉÐ ACL" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "ðÏÔÏËÏ×ÙÊ ÄÏÓÔÕÐ" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "÷Å ÉÎÔÅÒÆÅÊÓ" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "ïÐÒÅÄÅÌÅÎÉÅ ÌÏËÁÌØÎÙÊ ÓÅÔÉ" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" -msgstr "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" +msgstr "" #: ../../templates/show_edit_access.inc.php:43 #: ../../templates/show_add_access.inc.php:32 msgid "Start IP Address" msgstr "îÁÞÁÌØÎÙÊ IP ÁÄÒÅÓ" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "ëÏÎÅÞÎÙÊ IP ÁÄÒÅÓ" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "õÄÁÌÅÎÎÙÊ ËÌÀÞ" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "ðÒÏÓÍÏÔÒ" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" -msgstr "þÔÅÎÉÅ" - -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" -msgstr "þÔÅÎÉÅ/úÁÐÉÓØ" - -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" -msgstr "òÅÇÉÓÔÒÁÃÉÑ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ Ampache" - -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" -msgstr "ðÏÌØÚÏ×ÁÔÅÌØÓËÏÅ ÓÏÇÌÁÛÅÎÉÅ" - -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" -msgstr "ñ ÐÒÉÎÉÍÁÀ" - -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" -msgstr "éÎÆÏÒÍÁÃÉÑ Ï ÐÏÌØÚÏ×ÁÔÅÌÅ" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" +msgstr "õÒÏ×ÅÎØ" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" -msgstr "ïÞÉÓÔÉÔØ ÉÎÆÏ" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" +msgstr "áÌØÂÏÍÙ ÍÇÎÏ×ÅÎÉÑ" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" -msgstr "úÁÒÅÇÉÓÔÒÉÒÏ×ÁÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" +msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÁÌØÂÏÍ" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" -msgstr "ìÏÇÉÎ" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" +msgstr "ðÅÓÎÑ" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "úÁÐÏÍÎÉÔØ ÍÅÎÑ" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" +msgstr "ðÏÓÌÅÄÎÉÊ ÒÁÚ" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" -msgstr "òÅÇÉÓÔÒÁÃÉÑ" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" +msgstr "òÅËÏÍÅÎÄÕÅÍÙÅ ÉÓÐÏÌÎÉÔÅÌÉ" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" -msgstr "æÒÁÚÁ ÄÎÑ" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" +msgstr "òÅËÏÍÅÎÄÕÅÍÙÅ ÁÌØÂÏÍÙ" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" -msgstr "" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" +msgstr "òÅËÏÍÅÎÄÕÅÍÙÅ ÐÅÓÎÉ" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" -msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÉÓÐÏÌÎÉÔÅÌÉ" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" +msgstr "éÓÔÏÒÉÑ IP" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" -msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÁÌØÂÏÍÙ" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" +msgstr "ðÏËÁÚÁÔØ ÕÎÉËÁÌØÎÙÅ" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" -msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÖÁÎÒÙ" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +msgid "Show All" +msgstr "ðÏËÁÚÁÔØ ×ÓÅ" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" -msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÐÅÓÎÉ" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" +msgstr "äÁÔÁ" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" -msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÐÏÔÏËÉ" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" +msgstr "IP ÁÄÒÅÓ" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" -msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÔÅÇÉ" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" +msgstr "éÍÐÏÒÔÉÒÏ×ÁÔØ ÐÌÅÊÌÉÓÔ ÉÚ ÆÁÊÌÁ" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" -msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ ÐÅÓÎÀ" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" +msgstr "æÁÊÌ" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" -msgstr "ïÔÍÅÔÉÔØ ÄÌÑ ÉÚÍÅÎÅÎÉÑ ÔÅÇÁ" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" +msgstr "ôÉÐ ÐÌÅÊÌÉÓÔÁ" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" -msgstr "ïÂÎÏ×ÉÔØ ÐÅÓÎÀ" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" +msgstr "éÍÐÏÒÔÉÒÏ×ÁÔØ ÐÌÅÊÌÉÓÔ" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" -msgstr "" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" +msgstr "ðÒÏÓÍÏÔÒ" -#: ../../templates/show_mail_users.inc.php:24 +#: ../../templates/show_mail_users.inc.php:23 msgid "Send E-mail to Users" msgstr "ðÏÓÌÁÔØ å-ÍÁÊÌ ÐÏÌØÚÏ×ÁÔÅÌÑÍ" -#: ../../templates/show_mail_users.inc.php:28 +#: ../../templates/show_mail_users.inc.php:27 msgid "Mail to" msgstr "îÁÐÉÓÁÔØ ÐÉÓØÍÏ" -#: ../../templates/show_mail_users.inc.php:54 +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" +msgstr "óÔÁÔÉÓÔÉËÁ ËÁÔÁÌÏÇÁ" + +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" +msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÁÌØÂÏÍÙ" + +#: ../../templates/show_mail_users.inc.php:53 msgid "Latest Artist Additions" msgstr "ðÏÓÌÅÄÎÉÅ ÐÏÓÔÕÐÌÅÎÉÑ ÉÓÐÏÌÎÉÔÅÌÅÊ" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" +msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÉÓÐÏÌÎÉÔÅÌÉ" + +#: ../../templates/show_mail_users.inc.php:64 msgid "Latest Album Additions" msgstr "ðÏÓÌÅÄÎÉÅ ÐÏÓÔÕÐÌÅÎÉÑ ÁÌØÂÏÍÏ×" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÐÅÓÎÉ" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "ïÔÍÅÞÅÎÎÙÅ ÐÅÓÎÉ" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "ïÔËÌÀÞÅÎÎÙÅ ÐÅÓÎÉ" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 msgid "Most Popular Threshold in days" msgstr "" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "ôÅÍÁ" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "óÏÏÂÝÅÎÉÅ" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "ðÏÓÌÁÔØ ÓÏÏÂÝÅÎÉÅ" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "äÏÂÁ×ÌÅÎÉÅ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "äÏÂÁ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "äÏÂÁ×ÉÔØ ÄÏÓÔÕÐ ÄÌÑ ÈÏÓÔÁ" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_add_access.inc.php:82 -msgid "Create ACL" -msgstr "óÏÚÄÁÔØ ACL" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "úÎÁÞÅÎÉÅ" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" -msgstr "ðÒÉÍÅÎÉÔØ ËÏ ×ÓÅÍ" - -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" -msgstr "ÏÐÉÓÁÎÉÅ" - -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" -msgstr "òÅÄÁËÔÉÒÏ×ÁÎÉÅ ÐÌÅÊÌÉÓÔÁ" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" +msgstr "ðÏÓÌÅÄÎÉÅ ÄÅÓÑÔØ ÏÔÍÅÞÅÎÎÙÈ ÚÁÐÉÓÅÊ" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" -msgstr "ïÂÝÅÅ" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" +msgstr "õÐÒÁ×ÌÅÎÉÅ ÐÒÅÄÐÏÞÔÅÎÉÑÍÉ" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" -msgstr "þÁÓÔÎÏÅ" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" +msgstr "òÅÄÁËÔÉÒÏ×ÁÎÉÅ ÓÕÝÅÓÔ×ÕÀÝÅÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" -msgstr "îÁÊÔÉ ÄÕÂÌÉËÁÔÙ" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" +msgstr "õÒÏ×ÅÎØ ÄÏÓÔÕÐÁ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" -msgstr "ôÉÐ ÐÏÉÓËÁ" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" +msgstr "ïÂÎÏ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" -msgstr "éÓÐÏÌÎÉÔÅÌØ É ÎÁÚ×ÁÎÉÅ" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" +msgstr "ðÏÄËÌÀÞÅÎÏ ÐÏÌØÚÏ×ÁÔÅÌÅÊ" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" -msgstr "éÓÐÏÌÎÉÔÅÌØ, ÁÌØÂÏÍ É ÎÁÚ×ÁÎÉÅ" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" +msgstr "÷ÓÅÇÏ ÐÏÌØÚÏ×ÁÔÅÌÅÊ" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" -msgstr "÷ÙÂÒÁÔØ ÎÁÉÂÏÌÅÅ ÐÏÄÈÏÄÑÝÉÊ" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" +msgstr "òÁÚÍÅÒ ËÁÔÁÌÏÇÁ" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" -msgstr "îÁÞÁÔ ÐÏÉÓË ÁÌØÂÏÍÎÙÈ ÏÂÌÏÖÅË" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" +msgstr "÷ÒÅÍÑ ËÁÔÁÌÏÇÁ" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "ðÒÏÓÍÏÔÒÅÎÏ" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" +msgstr "äÕÂÌÉÒÕÀÝÉÅÓÑ ÐÅÓÎÉ" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" -msgstr "îÅÔ" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" +msgstr "òÁÚÍÅÒ" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" -msgstr "áÌØÂÏÍÙ" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" +msgstr "ðÒÏÄÏÌÖÉÔØ" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" -msgstr "ðÏËÁÚÁÔØ ×ÓÅ ÐÅÓÎÉ" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" +msgstr "÷ÙÂÒÁÔØ" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" -msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ×ÓÅ ÐÅÓÎÉ" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" +msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" -msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÏ ÐÅÓÎÉ" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" +msgstr "óÔÁÔÕÓ" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" -msgstr "ïÂÎÏ×ÉÔØ ÉÚ ÔÅÇÏ×" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" +msgstr "ïÔËÌÏÎÉÔØ" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" -msgstr "îÁÊÔÉ ÄÕÂÌÉÒÕÀÝÉÈÓÑ ÉÓÐÏÌÎÉÔÅÌÅÊ" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" +msgstr "ïÄÏÂÒÉÔØ" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" -msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÙÊ ÎÁÂÏÒ" - -#: ../../templates/show_random.inc.php:26 -msgid "Item count" -msgstr "ëÏÌÉÞÅÓÔ×Ï" +#: ../../templates/show_song.inc.php:49 +msgid "Label" +msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" -msgstr "öÁÎÒÁ" +#: ../../templates/show_song.inc.php:53 +msgid "Language" +msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" -msgstr "óÔÁÎÄÁÒÔÎÙÊ" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" +msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" -msgstr "òÅÖÅ ÐÒÏÉÇÒÙ×ÁÅÍÙÅ" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" +msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" -msgstr "ðÏÌÎÏÓÔØÀ ÁÌØÂÏÍÙ" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" -msgstr "ðÏÌÎÏÓÔØÀ ÉÓÐÏÌÎÉÔÅÌÉ" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "äÏÂÁ×ÉÔØ ÔÅËÕÝÕÀ" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" -msgstr "íÉÎÕÔ" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" +msgstr "ïÂÎÏ×ÉÔØ id3 ÔÅÇÉ" -#: ../../templates/show_random.inc.php:59 -msgid "From catalog" -msgstr "ëÁÔÁÌÏÇÁ" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" +msgstr "îÁÊÔÉ ÄÕÂÌÉËÁÔÙ" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" -msgstr "ìÉÍÉÔ ÐÏ ÒÁÚÍÅÒÕ" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" +msgstr "ôÉÐ ÐÏÉÓËÁ" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" -msgstr "÷ ÏÞÅÒÅÄØ" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" +msgstr "éÓÐÏÌÎÉÔÅÌØ É ÎÁÚ×ÁÎÉÅ" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" -msgstr "óÅÊÞÁÓ ÓÌÕÛÁÀÔ" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" +msgstr "éÓÐÏÌÎÉÔÅÌØ, ÁÌØÂÏÍ É ÎÁÚ×ÁÎÉÅ" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" -msgstr "ðÒÏÓÍÏÔÒ" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" +msgstr "îÏÒÍÁÌÉÚÉÒÏ×ÁÔØ ÔÒÅËÉ" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" -msgstr "áËËÁÕÎÔ" - -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" -msgstr "íÏÄÕÌÉ" - -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" -msgstr "äÏÓÔÕÐÎÙÅ ÐÌÁÇÉÎÙ" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" +msgstr "Stop" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" -msgstr "" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" +msgstr "Pause" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" -msgstr "" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" +msgstr "äÁÌÅÅ" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" msgstr "" +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" +msgstr "óÏÚÄÁÔØ ÎÏ×ÙÊ ÐÌÅÊÌÉÓÔ" + #: ../../templates/show_get_albumart.inc.php:23 msgid "Customize Search" msgstr "" @@ -2224,87 +2552,28 @@ msgstr "ìÏËÁÌØÎÏÅ ÉÚÏÂÒÁÖÅÎÉÅ" msgid "Get Art" msgstr "ðÏÌÕÞÉÔØ ÏÂÌÏÖËÕ" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "ïÔÌÁÄËÁ Ampache" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "îÁÓÔÒÏÊËÉ ÄÌÑ" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "á×ÔÏÍÁÔÉÞÅÓËÉ ÄÏÂÁ×ÌÅÎÎÙÅ ÐÏÌÑ" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "ÎÁÚ×ÁÎÉÅ ÁÌØÂÏÍÁ" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "ÉÍÑ ÉÓÐÏÌÎÉÔÅÌÑ" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "id3 ËÏÍÍÅÎÔÁÒÉÉ" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "ÖÁÎÒ" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "ÎÏÍÅÒ ÔÒÅËÁ (ÚÁÐÏÌÎÅÎÎÙÊ ÎÁÞÁÌØÎÙÍ 0)" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "ÎÁÚ×ÁÎÉÅ ÐÅÓÎÉ" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "ÇÏÄ" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "ÄÒÕÇÏÅ" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "ôÉÐ ËÁÔÁÌÏÇÁ" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "XML-RPC ËÌÀÞ" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" -msgstr "ûÁÂÌÏÎ ÉÍÅÎÉ ÆÁÊÌÁ" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" +msgstr "ïÐÉÓÁÎÉÅ" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" -msgstr "ûÁÂÌÏÎ ÐÁÐËÉ" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" +msgstr "÷ÅÒÓÉÑ" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" -msgstr "(ÂÅÚ ÎÁÞÁÌØÎÏÇÏ ÉÌÉ ÚÁ×ÅÒÛÁÀÝÅÇÏ '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" +msgstr "áËÔÉ×ÉÒÏ×ÁÔØ" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" -msgstr "óÏÈÒÁÎÉÔØ ÎÁÓÔÒÏÊËÉ ËÁÔÁÌÏÇÁ" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" +msgstr "äÅÁËÔÉ×ÉÒÏ×ÁÔØ" #: ../../templates/show_democratic_playlist.inc.php:38 msgid "Playing from base Playlist" @@ -2323,6 +2592,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÖÁÎÒÙ" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÐÏÔÏËÉ" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "óÁÍÙÅ ÐÏÐÕÌÑÒÎÙÅ ÔÅÇÉ" + #: ../../templates/show_edit_artist.inc.php:23 msgid "Edit Artist" msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ ÉÓÐÏÌÎÉÔÅÌÑ" @@ -2331,37 +2613,6 @@ msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ ÉÓÐÏÌÎÉÔÅÌÑ" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" -msgstr "òÅÄÁËÔÉÒÏ×ÁÔØ ÁÌØÂÏÍ" - -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" -msgstr "ïÂÎÏ×ÉÔØ ÁÌØÂÏÍ" - -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" -msgstr "ðÏÓÌÅÄÎÉÅ ÄÅÓÑÔØ ÏÔÍÅÞÅÎÎÙÈ ÚÁÐÉÓÅÊ" - -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" -msgstr "äÅÁËÔÉ×ÉÒÏ×ÁÔØ" - -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" -msgstr "ðÏÔÏË" - -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" -msgstr "äÅÍÏËÒÁÔÉÞÎÙÊ" - -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" -msgstr "" - #: ../../templates/show_play_selected.inc.php:28 msgid "Play Selected" msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ×ÙÂÒÁÎÎÙÅ" @@ -2382,177 +2633,219 @@ msgstr "õÄÁÌÉÔØ ×ÙÂÒÁÎÎÙÅ ÔÒÅËÉ" msgid "Add to" msgstr "äÏÂÁ×ÉÔØ ×" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" -msgstr "éÓÔÏÒÉÑ IP" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" +msgstr "äÏÂÁ×ÌÅÎÉÅ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" -msgstr "ðÏËÁÚÁÔØ ÕÎÉËÁÌØÎÙÅ" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" +msgstr "äÏÂÁ×ÉÔØ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" -msgstr "äÁÔÁ" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" +msgstr "XSPF ÐÒÏÉÇÒÙ×ÁÔÅÌØ" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" -msgstr "IP ÁÄÒÅÓ" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" +msgstr "ïÂÌÏÖËÁ" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -"÷×ÅÄÉÔÅ × ÓÌÅÄÕÀÝÕÀ ÆÏÒÍÕ ÌÏËÁÌØÎÙÊ ÐÕÔØ (ÎÁÐÒ. /data/music), ÉÌÉ URL " -"ËÕÄÁÌÅÎÎÏÊ ÉÎÓÔÁÌÑÃÉÉ Apache (ÎÁÐÒ.http://theotherampache.com)" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" -msgstr "ëÁÔÁÌÏÇ" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" +msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" -msgstr "ìÏËÁÌØÎÙÊ" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" +msgstr "óÂÒÏÓÉÔØ ÏÂÌÏÖËÕ ÁÌØÂÏÍÁ" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" -msgstr "õÄÁÌÅÎÎÙÊ" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" +msgstr "îÁÊÔÉ ÏÂÌÏÖËÕ ÁÌØÂÏÍÁ" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" -msgstr "ôÒÅÂÕÅÔÓÑ ÄÌÑ ÕÄÁÌÅÎÎÙÈ ËÁÔÁÌÏÇÏ×" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" +msgstr "óËÁÞÁÔØ" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" -msgstr "ûÁÂÌÏÎ ÉÍÅÎÉ ÆÁÊÌÁ" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" +msgstr "éÍÑ" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" -msgstr "óÏÚÄÁ×ÁÔØ ÐÌÅÊÌÉÓÔÙ ÉÚ m3u ÆÁÊÌÏ×" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" +msgstr "äÁÔÁ ÒÅÇÉÓÔÒÁÃÉÉ" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" -msgstr "äÏÂÁ×ÉÔØ ËÁÔÁÌÏÇ" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" +msgstr "ðÏÓÌÅÄÎÉÊ IP" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" -msgstr "ïÞÉÓÔÉÔØ ÐÌÅÊÌÉÓÔ" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" +msgstr "On-line" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" -msgstr "òÅËÏÍÅÎÄÁÃÉÉ" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" +msgstr "ÉÚ" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" -msgstr "òÅËÏÍÅÎÄÕÅÍÙÅ ÉÓÐÏÌÎÉÔÅÌÉ" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" +msgstr "ïÂÎÏ×ÌÅÎÉÅ" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" -msgstr "òÅËÏÍÅÎÄÕÅÍÙÅ ÁÌØÂÏÍÙ" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" +msgstr "ëÁÔÁÌÏÇ" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" -msgstr "òÅËÏÍÅÎÄÕÅÍÙÅ ÐÅÓÎÉ" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." +msgstr "ðÅÓÎÉ ÎÁÊÄÅÎÙ, ÐÒÏ×ÅÒËÁ ÉÎÆÏÒÍÁÃÉÉ ÉÚ ÔÅÇÏ×" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" -msgstr "éÍÐÏÒÔÉÒÏ×ÁÔØ ÐÌÅÊÌÉÓÔ ÉÚ ÆÁÊÌÁ" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" +msgstr "ðÒÏ×ÅÒÅÎÏ" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" -msgstr "ôÉÐ ÐÌÅÊÌÉÓÔÁ" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" +msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" -msgstr "éÍÐÏÒÔÉÒÏ×ÁÔØ ÐÌÅÊÌÉÓÔ" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" +msgstr "ïÂÌÏÖËÁ ÁÌØÂÏÍÁ" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" -msgstr "" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" +msgstr "ýÅÌËÎÉÔÅ ÄÌÑ ÚÁËÒÙÔÉÑ ÏËÎÁ" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" -msgstr "ìÀÂÉÍÙÅ" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" +msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" -msgstr "ìÀÂÉÍÙÅ ÉÓÐÏÌÎÉÔÅÌÉ" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" +msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" -msgstr "ìÀÂÉÍÙÅ ÁÌØÂÏÍÙ" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" +msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" -msgstr "ìÀÂÉÍÙÅ ÐÅÓÎÉ" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" -msgstr "äÕÂÌÉÒÕÀÝÉÅÓÑ ÐÅÓÎÉ" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" -msgstr "ðÒÏÄÏÌÖÉÔÅÌØÎÏÓÔØ" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" -msgstr "òÁÚÍÅÒ" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" +msgstr "Mail Users" -#: ../../templates/show_list_duplicates.inc.php:96 -msgid "Disable Songs" -msgstr "ïÔËÌÀÞÉÔØ ÐÅÓÎÉ" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "îÁÚÁÄ" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" -msgstr "óÔÁÔÉÓÔÉËÁ" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" +msgstr "áËËÁÕÎÔ" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" -msgstr "" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" +msgstr "íÏÄÕÌÉ" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" +#: ../../templates/sidebar_preferences.inc.php:34 +msgid "Localplay Modules" msgstr "" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" -msgstr "" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" +msgstr "äÏÓÔÕÐÎÙÅ ÐÌÁÇÉÎÙ" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_account.inc.php:40 +msgid "New Password" +msgstr "îÏ×ÙÊ ÐÁÒÏÌØ" + +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" +msgstr "ïÞÉÓÔÉÔØ ÓÔÁÔÉÓÔÉËÕ" + +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" +msgstr "ïÂÎÏ×ÉÔØ ÁËËÁÕÎÔ" + +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" +msgstr "òÅÄÁËÔÉÒÏ×ÁÎÉÅ" + +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" +msgstr "ÐÒÅÄÐÏÞÔÅÎÉÑ" + +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" +msgstr "ïÂÎÏ×ÉÔØ ÐÒÅÄÐÏÞÔÅÎÉÑ" + +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" +msgstr "ïÔÌÁÄËÁ Ampache" + +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2563,14 +2856,6 @@ msgstr "ïÞÉÓÔËÁ" msgid "Checking" msgstr "ðÒÏ×ÅÒËÁ" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "îÁÞÁÔ ÐÏÉÓË ÎÏ×ÙÈ ÐÅÓÅÎ ×" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "ËÁÔÁÌÏÇ" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2664,6 +2949,11 @@ msgstr "" "èÏÔÑ ÜÔÏ É ÎÅ ÔÒÅÂÕÅÔÓÑ, ÂÅÚ ÜÔÉÈ ×ÏÚÍÏÖÎÏÓÔÅÊ ÎÅËÏÔÏÒÙÅ ÆÕÎËÃÉÉAmpache " "ÍÏÇÕÔ ÒÁÂÏÔÁÔØ ÎÅÐÒÁ×ÉÌØÎÏ." +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "Ampache.cfg.php ÓÕÝÅÓÔ×ÕÅÔ" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2674,6 +2964,11 @@ msgstr "" "ÏÚÎÁÞÁÔØ ÞÔÏ ÌÉÂÏ ampache.cfg.php ÉÍÅÅÔ ÎÅ×ÅÒÎÏÅ ÍÅÓÔÏÐÏÌÏÖÅÎÉÅ,\n" "\tÌÉÂÏ ÏÎ ÎÅ ÍÏÖÅÔ ÂÙÔØ ÐÒÏÞÉÔÁÎ ÷ÁÛÉÍ ×ÅÂ-ÓÅÒ×ÅÒÏÍ." +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "Ampache.cfg.php ÎÁÓÔÒÏÅÎ?" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2692,465 +2987,319 @@ msgstr "" "This attempts to connect to your database using the values from your ampache." "cfg.php" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" +msgstr "éÓËÁÔØ" -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" +msgstr "ëÌÀÞÅ×ÙÅ ÓÌÏ×Á" -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" +#: ../../templates/show_search.inc.php:72 +msgid "Played" +msgstr "ðÒÏÉÇÒÁÎÎÁÑ" -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "òÅÄÁËÔÉÒÏ×ÁÎÉÅ" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" +msgstr "äÁ" -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "ÐÒÅÄÐÏÞÔÅÎÉÑ" +#: ../../templates/show_search.inc.php:77 +msgid "No" +msgstr "îÅÔ" -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "ïÂÎÏ×ÉÔØ ÐÒÅÄÐÏÞÔÅÎÉÑ" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" +msgstr "íÉÎ ÂÉÔÒÅÊÄ" -#: ../../templates/show_account.inc.php:40 -msgid "New Password" -msgstr "îÏ×ÙÊ ÐÁÒÏÌØ" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" +msgstr "ïÄÎÁ Ú×ÅÚÄÁ" -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "ïÞÉÓÔÉÔØ ÓÔÁÔÉÓÔÉËÕ" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" +msgstr "ä×Å Ú×ÅÚÄÙ" -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "ïÂÎÏ×ÉÔØ ÁËËÁÕÎÔ" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" +msgstr "ôÒÉ Ú×ÅÚÄÙ" -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "îÁÚÁÄ" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" +msgstr "þÅÔÙÒÅ Ú×ÅÚÄÙ" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" +msgstr "ðÑÔØ Ú×ÅÚÄ" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" +msgstr "ïÐÅÒÁÔÏÒ" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" +#: ../../templates/show_search.inc.php:105 +msgid "AND" +msgstr "é" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" +#: ../../templates/show_search.inc.php:111 +msgid "Method" +msgstr "íÅÔÏÄ" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" +msgstr "îÅÞÅÔËÉÊ" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" +msgstr "þÅÔËÉÊ" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" +msgstr "íÁËÓÉÍÕÍ ÒÅÚÕÌØÔÁÔÏ×" -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÏ ÉÚ ÁÌØÂÏÍÁ" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "óÂÒÏÓÉÔØ ÏÂÌÏÖËÕ ÁÌØÂÏÍÁ" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "îÁÊÔÉ ÏÂÌÏÖËÕ ÁÌØÂÏÍÁ" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "ðÌÅÊÌÉÓÔ" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "No ðÅÓÎÉ" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "÷ÌÁÄÅÌÅÃ" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "ðÏÌØÚÏ×ÁÔÅÌØ Ó ÔÁËÉÍ ÉÍÅÎÅÍ ÎÅ ÚÁÒÅÇÉÓÔÒÉÒÏ×ÁÎ" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "éÓÐÏÌØÚÕÅÍÏÊ ËÌÀÞ ×ÁÌÉÄÁÃÉÉ ÎÅ ×ÅÒÅÎ." - -#: ../../activate.php:51 -msgid "User activated" -msgstr "ðÏÌØÚÏ×ÁÔÅÌØ ÁËÔÉ×ÉÒÏ×ÁÎ" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "üÔÏÔ ID ÐÏÌØÚÏ×ÁÔÅÌÑ ÁËÔÉ×ÉÒÏ×ÁÎ É ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../democratic.php:80 -msgid "Playlist Cleared" -msgstr "ðÌÅÊÌÉÓÔ ÏÞÉÝÅÎ" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/flag.class.php:280 -msgid "Approved" -msgstr "ïÄÏÂÒÅÎÏ" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" -msgstr "îÁ ÒÁÓÓÍÏÔÒÅÎÉÉ" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" -msgstr "éÚÍÅÎÉÔØ ÔÅÇ" - -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" -msgstr "ÏÂÎÏ×ÌÅÎÏ ×" - -#: ../../lib/class/song.class.php:341 -msgid "Rate" -msgstr "óËÏÒÏÓÔØ" - -#: ../../lib/class/song.class.php:345 -msgid "Mode" -msgstr "òÅÖÉÍ" - -#: ../../lib/class/song.class.php:357 -msgid "Filesize" -msgstr "òÁÚÍÅÒ ÆÁÊÌÁ" - -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" -msgstr "õÐÒÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ" - -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" -msgstr "ðÌÅÊÌÉÓÔÙ" - -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" -msgstr "ïÛÉÂËÁ: îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ" - -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" -msgstr "ïÛÉÂËÁ: îÅ×ÏÚÍÏÖÎÏ ÉÚÍÅÎÉÔØ ÄÉÒÅËÔÏÒÉÀ" - -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" -msgstr "ïÛÉÂËÁ: îÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÒÁÚÍÅÒ ÆÁÊÌÁ ÄÌÑ" - -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" -msgstr "ÎÅ ÞÉÔÁÅÍ ÐÒÏÇÒÁÍÍÏÊ ampache" - -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" -msgstr "îÁÞÁÔÏ ÐÏÓÔÒÏÅÎÉÅ ËÁÔÁÌÏÇÁ" - -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" -msgstr "úÁÐÕÝÅÎÏ ÕÄÁÌÅÎÎÏÅ ÏÂÎÏ×ÌÅÎÉÅ" - -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" -msgstr "äÏÂÁ×ÌÅÎ ÐÌÅÊÌÉÓÔ ÉÚ" - -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" -msgstr "ëÁÔÁÌÏÇ çÏÔÏ×" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" -msgstr "ðÏÌÎÏÅ ×ÒÅÍÑ" - -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" -msgstr "÷ÓÅÇÏ ÐÅÓÅÎ" - -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" -msgstr "ðÅÓÅÎ × ÓÅËÕÎÄÕ" - -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" -msgstr "ïÂÎÏ×ÌÅÎÉÅ ÎÅ ÔÒÅÂÕÅÔÓÑ" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" +msgstr "" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" -msgstr "úÁÐÕÝÅÎÏ ÕÄÁÌÅÎÎÏÅ ÏÂÎÏ×ÌÅÎÉÅ" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" +msgstr "äÏÂÁ×ÉÔØ ÚÁÐÉÓØ" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" -msgstr "ïÂÎÏ×ÌÅÎÉÅ ËÁÔÁÌÏÇÁ ÚÁ×ÅÒÛÅÎÏ" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" +msgstr "îÁÞÁÌØÎÙÊ ÁÄÒÅÓ" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" -msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÇÒÕÚÉÔØ ÂÉÂÌÉÏÔÅËÕ XMLRPC, ÕÂÅÄÉÔÅÓØ ÞÔÏ XML-RPC ×ËÌÀÞÅÎÏ" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" +msgstr "ëÏÎÅÞÎÙÊ ÁÄÒÅÓ" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" -msgstr "ïÛÉÂËÁ ÐÒÉ ÓÏÅÄÉÎÅÎÉÉ Ó" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" +msgstr "ëÌÀÞ" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" -msgstr "ëÏÄ" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" +msgstr "äÏÂÁ×ÉÔØ ÄÏÓÔÕÐ ÄÌÑ ÈÏÓÔÁ" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" -msgstr "ðÒÉÞÉÎÁ" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" +msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" -msgstr "úÁËÏÎÞÅÎÏ ÏÂÎÏ×ÌÅÎÉÅ ÕÄÁÌÅÎÎÙÈ ËÁÔÁÌÏÇÏ×" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" +msgstr "óÏÚÄÁÔØ ACL" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" -msgstr "ïÞÉÓÔËÁ ËÁÔÁÌÏÇÁ ÚÁ×ÅÒÛÅÎÁ" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" +msgstr "÷ÒÅÍÑ ÄÏÂÁ×ÌÅÎÉÑ" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" -msgstr "ÆÁÊÌÙ ÕÄÁÌÅÎÙ" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" +msgstr "õÄÁÌÉÔØ" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" +"îÁ ÜÔÉÈ ÛÁÇÁÈ ÂÕÄÕÔ ÚÁÐÒÏÛÅÎÙ ÏÓÎÏ×ÎÙÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÚÎÁÞÅÎÉÑ É ÂÕÄÅÔ " +"ÐÒÏÉÚ×ÅÄÅÎÁ ÐÏÐÙÔËÁ ÚÁÐÉÓÁÔØ ÉÈ ÎÁÐÒÑÍÕÀ ÎÁ ×Å ÓÅÒ×ÅÒ. åÓÌÉ ÄÏÓÔÕÐ ÂÕÄÅÔ " +"ÚÁÐÒÅÝÅÎ, ÂÕÄÅÔ ÚÁÐÒÏÓ ÎÁ ÓËÁÞÉ×ÁÎÉÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÏÇÏ ÆÁÊÌÁ. ðÏÖÁÌÕÊÓÔÁ, " +"ÐÏÌÏÖÉÔÅ ÓËÁÞÁÎÎÙÊ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÊ ÆÁÊÌ × /config" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" -msgstr " îáêäåîï" - -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" -msgstr "ðÏÉÓË ÎÏ×ÏÊ ÏÂÌÏÖËÉ ÁÌØÂÏÍÁ" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" +msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Update Finished." -msgstr "ïÂÎÏ×ÌÅÎÉÅ ÚÁ×ÅÒÛÅÎÏ" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" +msgstr "÷Å ÐÕÔØ" -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" -msgstr "ïÔÍÅÞÅÎ" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" +msgstr "éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ MySQL" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." -msgstr "ÐÅÓÅÎ ÏÂÎÏ×ÌÅÎÏ." +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" +msgstr "ðÁÒÏÌØ MySQL" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" -msgstr "ïÓÔÁÎÏ×ÌÅÎÏ" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" +msgstr "óÏÈÒÁÎÉÔØ ËÏÎÆÉÇÕÒÁÃÉÀ" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" -msgstr "ðÁÕÚÁ" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" +msgstr "ðÒÏ×ÅÒÉÔØ ËÏÎÆÉÇÕÒÁÃÉÀ" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" -msgstr "÷ËÌÀÞÅÎÏ" - -#: ../../lib/preferences.php:272 -msgid "M3U" -msgstr "M3U" - -#: ../../lib/preferences.php:273 -msgid "Simple M3U" -msgstr "ðÒÏÓÔÏÊ M3U" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" +msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" -msgstr "PLS" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" +msgstr "üÔÏÔ ID ÐÏÌØÚÏ×ÁÔÅÌÑ ÁËÔÉ×ÉÒÏ×ÁÎ É ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ" -#: ../../lib/preferences.php:275 -msgid "Asx" -msgstr "Asx" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" +msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" -msgstr "RAM" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" +msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" -msgstr "XSPF" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" +msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" -msgstr "ïÔËÌÀÞÅÎÏ" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" +msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" -msgstr "îÅ ÉÇÒÁÔØ" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" +msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" -msgstr "ðÌÏÈÏ" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" +msgstr "ðÅÓÎÑ(ÐÅÓÎÉ) ÕÄÁÌÅÎÎÙÅ ÉÚ ÐÌÅÊÌÉÓÔÁ" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" -msgstr "èÏÒÏÛÏ" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" +msgstr "ïÛÉÂËÁ: îÅ ××ÅÄÅÎÙ ËÌÀÞÅ×ÙÅ ÓÌÏ×Á" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" -msgstr "ïÞÅÎØ ÈÏÒÏÛÏ" +#: ../../ratings.php:32 +msgid "Rating Updated" +msgstr "òÅÊÔÉÎÇ ÏÂÎÏ×ÌÅÎ" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" -msgstr "ðÒÏÓÔÏ ÓÕÐÅÒ!" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" +msgstr "÷ÁÛ ÒÅÊÔÉÎÇ ÄÌÑ ÄÁÎÎÏÇÏ ÏÂßÅËÔÁ ÏÂÎÏ×ÌÅÎ" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" -msgstr "" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" +msgstr "ðÏÌØÚÏ×ÁÔÅÌØ ÏÔËÌÀÞÅÎ. ðÏÖÁÌÕÊÓÔÁ, Ó×ÑÖÉÔÅÓØ Ó ÁÄÍÉÎÉÓÔÒÁÔÏÒÏÍ" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" -msgstr "" +#: ../../login.php:83 +msgid "Unable to create new account" +msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÎÏ×ÙÊ ÁËËÁÕÎÔ" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" -msgstr "English" +#: ../../login.php:92 +msgid "No local account found" +msgstr "ìÏËÁÌØÎÙÊ ÁËËÁÕÎÔ ÎÅ ÂÙÌ ÎÁÊÄÅÎ" -#: ../../lib/general.lib.php:496 -msgid "British English" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" -msgstr "Turkish" +#: ../../preferences.php:91 +msgid "Error Update Failed" +msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" +#: ../../preferences.php:96 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" -msgstr "÷ËÌ" +#: ../../update.php:51 +msgid "Ampache Update" +msgstr "ïÂÎÏ×ÌÅÎÉÅ Ampache" -#: ../../lib/general.lib.php:583 -msgid "Off" -msgstr "÷ÙËÌ" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" +msgstr "îÁÞÁÔÏ ÏÂÎÏ×ÌÅÎÉÅ ÉÚ ÔÅÇÏ×" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" -msgstr "ïÛÉÂËÁ: ÄÏÓÔÕÐ ÚÁÐÒÅÝÅÎ" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" +msgstr "úÁ×ÅÒÛÅÎÏ ÏÂÎÏ×ÌÅÎÉÅ ÉÚ ÔÅÇÏ×" -#: ../../lib/ui.lib.php:550 -msgid "Upload" -msgstr "úÁËÁÞÁÔØ" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" +msgstr "÷ÏÚ×ÒÁÔ" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" -msgstr "ìÏËÁÌØÎÏÅ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÅ" +#: ../../artists.php:186 +msgid "Show Artists starting with" +msgstr "ðÏËÁÚÁÔØ ÉÓÐÏÌÎÉÔÅÌÅÊ ÎÁÞÉÎÁÀÝÉÈÓÑ Ó " -#: ../../lib/ui.lib.php:556 -msgid "Random Play" -msgstr "óÌÕÞÁÊÎÏÅ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÅ" +#: ../../playlist.php:57 +msgid "Playlist Created" +msgstr "ðÌÅÊÌÉÓÔ ÓÏÚÄÁÎ" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" -msgstr "áÄÍÉÎËÁ-ëÁÔÁÌÏÇ" +#: ../../playlist.php:57 +msgid " has been created" +msgstr " ÂÙÌ ÏÞÉÝÅÎ" -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" -msgstr "áÄÍÉÎËÁ-õÐÒÁ×ÌÅÎÉÅ ÐÏÌØÚÏ×ÁÔÅÌÑÍÉ" +#: ../../playlist.php:78 +msgid "Playlist Updated" +msgstr "ðÌÅÊÌÉÓÔ ÏÂÎÏ×ÌÅÎ" -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" -msgstr "áÄÍÉÎËÁ-ðÏÞÔÏ×ÙÅ ÐÏÌØÚÏ×ÁÔÅÌÉ" +#: ../../playlist.php:79 +msgid "has been updated and is now" +msgstr "" -#: ../../lib/ui.lib.php:584 -msgid "Admin-Manage Access Lists" -msgstr "áÄÍÉÎËÁ-ÐÒÁ×ÉÔØ ÓÐÉÓËÉ ÄÏÓÔÕÐÁ" +#: ../../playlist.php:101 +msgid "Playlist Imported" +msgstr "ðÌÅÊÌÉÓÔ ÉÍÐÏÒÔÉÒÏ×ÁÎ" -#: ../../lib/ui.lib.php:588 -msgid "Admin-Site Preferences" -msgstr "áÄÍÉÎËÁ-ÐÒÅÄÐÏÞÔÅÎÉÑ ÓÁÊÔÁ" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" +msgstr "ðÕÓÔÏÊ ÐÌÅÊÌÉÓÔ ÕÄÁÌÅÎ" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "áÄÍÉÎËÁ-ÐÒÁ×ÉÔØ ÍÏÄÕÌÉ" +#: ../../flag.php:45 +msgid "Item Flagged" +msgstr "ðÏÚÉÃÉÑ ÏÔÍÅÞÅÎÁ" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" -msgstr "óÍÏÔÒÅÔØ ÍÕÚÙËÕ" +#: ../../flag.php:45 +msgid "The specified item has been flagged" +msgstr "õËÁÚÁÎÎÁÑ ÐÏÚÉÃÉÑ ÏÔÍÅÞÅÎÁ" #: ../../albums.php:32 msgid "Album Art Cleared" @@ -3172,113 +3321,53 @@ msgstr "" "ïÂÌÏÖËÁ ÁÌØÂÏÍÁ ÎÅ ÍÏÖÅÔ ÂÙÔØ ÎÁÊÄÅÎÁ. üÔÏ ÍÏÖÅÔ ÂÙÔØ ×ÙÚ×ÁÎÏ ÏÛÉÂËÏÊ " "ÄÏÓÔÕÐÁÎÁ ÚÁÐÉÓØ, ÉÌÉ ÔÅÍ ÞÔÏ ÆÁÊÌ ÎÅ ÂÙÌ ÐÏÌÕÞÅÎ ËÏÒÒÅËÔÎÏ." -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "ïÂÌÏÖËÁ ÁÌØÂÏÍÁ ÄÏÂÁ×ÌÅÎÁ" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "îÁÞÁÔÏ ÏÂÎÏ×ÌÅÎÉÅ ÉÚ ÔÅÇÏ×" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "úÁ×ÅÒÛÅÎÏ ÏÂÎÏ×ÌÅÎÉÅ ÉÚ ÔÅÇÏ×" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "÷ÏÚ×ÒÁÔ" - -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "ÆÁÊÌ" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "úÁÇÒÕÚËÁ ÆÁÊÌÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ." - -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "îÅÔ ÚÁÇÒÕÖÅÎÎÙÈ ÆÁÊÌÏ×" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "âÙÌÁ ÐÒÏÂÌÅÍÁ Ó ÚÁÇÒÕÚËÏÊ ÆÁÊÌÁ: %s ÎÅ ÂÙÌ ÚÁÇÒÕÖÅÎ." +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" +msgstr "÷Ù <U>ÄÏÌÖÎÙ</U> ÐÒÉÎÑÔØ ÐÏÌØÚÏ×ÁÔÅÌØÓËÏÅ ÓÏÇÌÁÛÅÎÉÅ" -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" -"âÙÌÁ ÐÒÏÂÌÅÍÁ Ó ÚÁÇÒÕÚËÏÊ ÆÁÊÌÁ: ÒÁÚÍÅÒ ÚÁÇÒÕÖÁÅÍÏÇÏ ÆÁÊÌÁ %s ÐÒÅ×ÙÛÁÅÔ " -"ÍÁËÉÍÁÌØÎÏ ÄÏÍÕÓÔÉÍÙÊ ÒÁÚÍÅÒ (%d ÂÁÊÔ)." +#: ../../register.php:92 +msgid "You did not enter a username" +msgstr "÷Ù ÎÅ ××ÅÌÉ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." -msgstr "âÙÌÁ ÐÒÏÂÌÅÍÁ Ó ÚÁÇÒÕÚËÏÊ ÆÁÊÌÁ: ÆÁÊÌ ÂÙÌ ÚÁÇÒÕÖÅÎ ÞÁÓÔÉÞÎÏ." +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" +msgstr "ðÏÖÁÌÕÊÓÔÁ, ××ÅÄÉÔÅ ×ÁÛÅ ÐÏÌÎÏÅ ÉÍÑ (éÍÑ æÁÍÉÌÉÑ)" -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "ðÅÓÎÑ(ÐÅÓÎÉ) ÕÄÁÌÅÎÎÙÅ ÉÚ ÐÌÅÊÌÉÓÔÁ" +#: ../../register.php:122 +msgid "You must enter a password" +msgstr "÷Ù ÄÏÌÖÎÙ ××ÅÓÔÉ ÐÁÒÏÌØ" -#: ../../playlist.php:57 -msgid "Playlist Created" -msgstr "ðÌÅÊÌÉÓÔ ÓÏÚÄÁÎ" +#: ../../register.php:126 +msgid "Your passwords do not match" +msgstr "÷ÁÛ ÐÁÒÏÌØ ÎÅ ÓÏ×ÐÁÄÁÅÔ" -#: ../../playlist.php:57 -msgid " has been created" -msgstr " ÂÙÌ ÏÞÉÝÅÎ" +#: ../../register.php:158 +msgid "Error: Insert Failed" +msgstr "ïÛÉÂËÁ: äÏÂÁ×ÌÅÎÉÅ ÚÁËÏÎÞÉÌÏÓØ ÎÅÕÄÁÞÅÊ" -#: ../../playlist.php:78 -msgid "Playlist Updated" -msgstr "ðÌÅÊÌÉÓÔ ÏÂÎÏ×ÌÅÎ" +#: ../../register.php:175 +msgid "Registration Complete" +msgstr "òÅÇÉÓÔÒÁÃÉÑ ÚÁ×ÅÒÛÅÎÁ" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../playlist.php:101 -msgid "Playlist Imported" -msgstr "ðÌÅÊÌÉÓÔ ÉÍÐÏÒÔÉÒÏ×ÁÎ" - -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" -msgstr "ðÕÓÔÏÊ ÐÌÅÊÌÉÓÔ ÕÄÁÌÅÎ" - -#: ../../login.php:73 -msgid "User Disabled please contact Admin" -msgstr "ðÏÌØÚÏ×ÁÔÅÌØ ÏÔËÌÀÞÅÎ. ðÏÖÁÌÕÊÓÔÁ, Ó×ÑÖÉÔÅÓØ Ó ÁÄÍÉÎÉÓÔÒÁÔÏÒÏÍ" - -#: ../../login.php:87 -msgid "Unable to create new account" -msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÎÏ×ÙÊ ÁËËÁÕÎÔ" - -#: ../../login.php:96 -msgid "No local account found" -msgstr "ìÏËÁÌØÎÙÊ ÁËËÁÕÎÔ ÎÅ ÂÙÌ ÎÁÊÄÅÎ" - -#: ../../search.php:38 -msgid "Error: No Keyword Entered" -msgstr "ïÛÉÂËÁ: îÅ ××ÅÄÅÎÙ ËÌÀÞÅ×ÙÅ ÓÌÏ×Á" - -#: ../../artists.php:186 -msgid "Show Artists starting with" -msgstr "ðÏËÁÚÁÔØ ÉÓÐÏÌÎÉÔÅÌÅÊ ÎÁÞÉÎÁÀÝÉÈÓÑ Ó " +#: ../../democratic.php:80 +msgid "Playlist Cleared" +msgstr "ðÌÅÊÌÉÓÔ ÏÞÉÝÅÎ" #: ../../bin/print_tags.inc:66 msgid "" @@ -3297,6 +3386,54 @@ msgstr "" msgid "Filename:" msgstr "æÁÊÌ:" +#~ msgid "No Catalogs Found!" +#~ msgstr "ëÁÔÁÌÏÇÏ× ÎÅ ÎÁÊÄÅÎÏ" + +#~ msgid "Play Random" +#~ msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÏ" + +#~ msgid "XML-RPC" +#~ msgstr "XML-RPC" + +#~ msgid "Ampache New User Registration" +#~ msgstr "òÅÇÉÓÔÒÁÃÉÑ ÎÏ×ÏÇÏ ÐÏÌØÚÏ×ÁÔÅÌÑ Ampache" + +#~ msgid "Clear Info" +#~ msgstr "ïÞÉÓÔÉÔØ ÉÎÆÏ" + +#~ msgid "Select Best Guess" +#~ msgstr "÷ÙÂÒÁÔØ ÎÁÉÂÏÌÅÅ ÐÏÄÈÏÄÑÝÉÊ" + +#~ msgid "Play All Songs By" +#~ msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ×ÓÅ ÐÅÓÎÉ" + +#~ msgid "Play Random Songs By" +#~ msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÏ ÐÅÓÎÉ" + +#~ msgid "Find duplicate artists" +#~ msgstr "îÁÊÔÉ ÄÕÂÌÉÒÕÀÝÉÈÓÑ ÉÓÐÏÌÎÉÔÅÌÅÊ" + +#~ msgid "Minutes" +#~ msgstr "íÉÎÕÔ" + +#~ msgid "Disable Songs" +#~ msgstr "ïÔËÌÀÞÉÔØ ÐÅÓÎÉ" + +#~ msgid "Play Random from Album" +#~ msgstr "÷ÏÓÐÒÏÉÚ×ÅÓÔÉ ÓÌÕÞÁÊÎÏ ÉÚ ÁÌØÂÏÍÁ" + +#~ msgid "No user with this name registered" +#~ msgstr "ðÏÌØÚÏ×ÁÔÅÌØ Ó ÔÁËÉÍ ÉÍÅÎÅÍ ÎÅ ÚÁÒÅÇÉÓÔÒÉÒÏ×ÁÎ" + +#~ msgid "The validation key used isn't correct." +#~ msgstr "éÓÐÏÌØÚÕÅÍÏÊ ËÌÀÞ ×ÁÌÉÄÁÃÉÉ ÎÅ ×ÅÒÅÎ." + +#~ msgid "User activated" +#~ msgstr "ðÏÌØÚÏ×ÁÔÅÌØ ÁËÔÉ×ÉÒÏ×ÁÎ" + +#~ msgid "Error Access Denied" +#~ msgstr "ïÛÉÂËÁ: ÄÏÓÔÕÐ ÚÁÐÒÅÝÅÎ" + #~ msgid "The Catalog and all associated records has been deleted" #~ msgstr "ëÁÔÁÌÏÇ É ×ÓÅ Ó×ÑÚÁÎÎÙÅ Ó ÎÉÍ ÚÁÐÉÓÉ ÕÄÁÌÅÎÙ" @@ -3381,9 +3518,6 @@ msgstr "æÁÊÌ:" #~ msgid "Users" #~ msgstr "ðÏÌØÚÏ×ÁÔÅÌÉ" -#~ msgid "Mail Users" -#~ msgstr "Mail Users" - #~ msgid "Democratic View" #~ msgstr "äÅÍÏËÒÁÔÉÞÎÙÊ ×ÉÄ" @@ -3853,12 +3987,6 @@ msgstr "æÁÊÌ:" #~ msgid "Playback" #~ msgstr "Playback" -#~ msgid "Increase Volume" -#~ msgstr "Increase Volume" - -#~ msgid "Decrease Volume" -#~ msgstr "Decrease Volume" - #~ msgid "Clear queue" #~ msgstr "Clear queue" diff --git a/locale/tr_TR/LC_MESSAGES/messages.po b/locale/tr_TR/LC_MESSAGES/messages.po index 311cd326..ea521ec9 100644 --- a/locale/tr_TR/LC_MESSAGES/messages.po +++ b/locale/tr_TR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,715 +16,1186 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" msgstr "" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/album.class.php:217 +msgid "Disk" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" msgstr "" -#: ../../register.php:131 -msgid "You must enter a password" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" msgstr "" -#: ../../register.php:135 -msgid "Your passwords do not match" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" msgstr "" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" msgstr "" -#: ../../register.php:157 -msgid "Error: Insert Failed" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:174 -msgid "Registration Complete" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../update.php:51 -msgid "Ampache Update" +#: ../../lib/class/catalog.class.php:176 +msgid "day" msgstr "" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" +#: ../../lib/class/catalog.class.php:176 +msgid "days" msgstr "" -#: ../../ratings.php:32 -msgid "Rating Updated" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" msgstr "" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" msgstr "" -#: ../../admin/flag.php:97 -#, fuzzy -msgid "Song Updated" -msgstr "ID3 Gncelleme" +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" msgstr "" -#: ../../admin/flag.php:139 -#, fuzzy -msgid "Album Updated" -msgstr "Albm kapa bulundu" +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "" -#: ../../admin/flag.php:181 -msgid "Artist Updated" +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" msgstr "" -#: ../../admin/flag.php:246 -#, fuzzy -msgid "Songs Updated" -msgstr "ID3 Gncelleme" +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "" -#: ../../admin/flag.php:254 -#, fuzzy -msgid "Flag Removed" -msgstr "Seilmileri iaretle" +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" +msgstr "" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" msgstr "" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" msgstr "" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" msgstr "" -#: ../../admin/flag.php:305 -#, fuzzy -msgid "Flagged Records" -msgstr "aretleyen" +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" +msgstr "" -#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 -#, fuzzy -msgid "Catalog Updated" -msgstr "Kalalog smi" +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" +msgstr "" -#: ../../admin/catalog.php:106 -#, fuzzy -msgid "Catalog Deleted" -msgstr "Seilmileri iaretle" +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" +msgstr "" -#: ../../admin/catalog.php:106 -msgid "The Catalog and all associated records have been deleted" +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" msgstr "" -#: ../../admin/catalog.php:115 -msgid "Songs Removed" +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" msgstr "" -#: ../../admin/catalog.php:118 -msgid "No Songs Removed" +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" msgstr "" -#: ../../admin/catalog.php:121 -msgid "Disabled Songs Processed" +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" -#: ../../admin/catalog.php:141 +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" +msgstr "" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" +msgstr "" + +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" +msgstr "" + +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" +msgstr "" + +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" +msgstr "" + +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" +msgstr "" + +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" +msgstr "" + +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" +msgstr "" + +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" + +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 #, fuzzy -msgid "Catalog Cleaned" -msgstr "Kalalog smi" +msgid "Update Finished." +msgstr "Profil gncelleme" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "" + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" -#: ../../admin/catalog.php:191 +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" +msgstr "" + +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "" + +#: ../../lib/class/flag.class.php:280 #, fuzzy -msgid "Catalog Created" -msgstr "Kalalog smi" +msgid "Approved" +msgstr "Kip" -#: ../../admin/catalog.php:208 -msgid "Catalog statistics cleared" +#: ../../lib/class/flag.class.php:281 +msgid "Pending" msgstr "" -#: ../../admin/catalog.php:223 -msgid "Now Playing Cleared" +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" msgstr "" -#: ../../admin/catalog.php:223 -msgid "All now playing data has been cleared" +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" msgstr "" -#: ../../admin/catalog.php:233 -msgid "No Disabled songs found" +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Delete Catalog" +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Do you really want to delete this catalog?" +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" msgstr "" -#: ../../admin/catalog.php:261 -msgid "Album Art Search Finished" +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" msgstr "" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 msgid "Error Username Required" msgstr "" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 msgid "Error Passwords don't match" msgstr "" -#: ../../admin/users.php:79 -msgid "User Updated" +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" msgstr "" -#: ../../admin/users.php:79 -msgid "updated" +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 -#: ../../templates/show_preference_admin.inc.php:41 -#: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 -msgid "Guest" +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +#, fuzzy +msgid "Genres" +msgstr "Kategori" + +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" msgstr "" -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" msgstr "" -#: ../../admin/users.php:119 -msgid "New User Added" +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" msgstr "" -#: ../../admin/users.php:124 -msgid "User Enabled" +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +#, fuzzy +msgid "Catalogs" +msgstr "Katalogdan" + +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" msgstr "" -#: ../../admin/users.php:129 -msgid "User Disabled" +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" msgstr "" -#: ../../admin/users.php:132 -msgid "Unable to Disabled last Administrator" +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" msgstr "" -#: ../../admin/users.php:154 -msgid "User Deleted" +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" msgstr "" -#: ../../admin/users.php:157 -msgid "Delete Error" +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" msgstr "" -#: ../../admin/users.php:157 -msgid "Unable to delete last Admin User" +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" msgstr "" -#: ../../admin/users.php:163 -msgid "Deletion Request" +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" msgstr "" -#: ../../admin/users.php:164 -msgid "Are you sure you want to permanently delete" +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" msgstr "" -#: ../../admin/modules.php:38 -msgid "Install Failed, Controller Error" +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" msgstr "" -#: ../../admin/modules.php:54 ../../admin/modules.php:92 -msgid "Are you sure you want to remove this plugin?" +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" msgstr "" -#: ../../admin/modules.php:66 ../../admin/modules.php:111 -msgid "Plugin Deactivated" +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" msgstr "" -#: ../../admin/modules.php:85 -msgid "Plugin Activated" +#: ../../lib/preferences.php:160 +msgid "Enable" msgstr "" -#: ../../admin/modules.php:120 -msgid "Plugins" +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" msgstr "" -#: ../../admin/modules.php:126 -msgid "Localplay Controllers" +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" msgstr "" -#: ../../admin/access.php:35 -msgid "Deleted" +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" msgstr "" -#: ../../admin/access.php:35 -msgid "Your Access List Entry has been removed" +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" msgstr "" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" msgstr "" -#: ../../admin/access.php:40 -msgid "Your new Access List Entry has been created" +#: ../../lib/preferences.php:187 +msgid "M3U" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" +#: ../../lib/preferences.php:188 +msgid "Simple M3U" msgstr "" -#: ../../admin/access.php:45 +#: ../../lib/preferences.php:189 +msgid "PLS" +msgstr "" + +#: ../../lib/preferences.php:190 +msgid "Asx" +msgstr "" + +#: ../../lib/preferences.php:191 +msgid "RAM" +msgstr "" + +#: ../../lib/preferences.php:192 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:226 #, fuzzy -msgid "Access List Entry updated" -msgstr "Eriim listesi" +msgid "Disabled" +msgstr "edilgenletir" -#: ../../admin/system.php:64 -msgid "Export Failed" +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" msgstr "" -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" +#: ../../lib/preferences.php:228 +msgid "Manager" msgstr "" -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" msgstr "" -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" +#: ../../lib/preferences.php:249 +msgid "Send on Add" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" +#: ../../lib/preferences.php:251 +msgid "Clear on Send" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" +#: ../../lib/preferences.php:260 +msgid "Always" msgstr "" -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" msgstr "" -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" +#: ../../lib/general.lib.php:436 +msgid "British English" msgstr "" -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" +#: ../../lib/general.lib.php:442 +msgid "Turkish" msgstr "" -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" msgstr "" -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" +#: ../../lib/general.lib.php:504 +msgid "On" msgstr "" -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" +#: ../../lib/general.lib.php:507 +msgid "Off" msgstr "" -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" msgstr "" -#: ../../admin/mail.php:260 -msgid "E-mail Sent" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" msgstr "" -#: ../../admin/mail.php:261 -msgid "Your E-mail was successfully sent." +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" msgstr "" -#: ../../preferences.php:86 -msgid "Error Update Failed" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" msgstr "" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" msgstr "" -#: ../../flag.php:45 +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" +msgstr "" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "" + +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "" + +#: ../../lib/ui.lib.php:507 #, fuzzy -msgid "Item Flagged" -msgstr "aretleyen" +msgid "Admin-User Management" +msgstr "Kullanc ad" -#: ../../flag.php:45 -msgid "The specified item has been flagged" +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" msgstr "" -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 +#: ../../lib/ui.lib.php:515 #, fuzzy -msgid "Catalogs" -msgstr "Katalogdan" +msgid "Admin-Manage Access Lists" +msgstr "Eriim listesi" + +#: ../../lib/ui.lib.php:519 +#, fuzzy +msgid "Admin-Site Preferences" +msgstr "Ynetici tercihleri" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_admin_tools.inc.php:33 #: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 #: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_edit_access.inc.php:26 #: ../../templates/show_plugins.inc.php:32 #: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 #: ../../templates/show_live_streams.inc.php:36 #: ../../templates/show_live_streams.inc.php:53 #: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 msgid "Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" msgstr "" -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" msgstr "" -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" +msgstr "" + +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" +msgstr "" + +#: ../../modules/horde/Browser.php:867 +msgid "file" +msgstr "" + +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." +msgstr "" + +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" +msgstr "" + +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." +msgstr "" + +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." +msgstr "" + +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" + +#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 #, fuzzy -msgid "Clean" -msgstr "sil" +msgid "Catalog Updated" +msgstr "Kalalog smi" -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" +#: ../../admin/catalog.php:103 +#, fuzzy +msgid "Catalog Deleted" +msgstr "Seilmileri iaretle" + +#: ../../admin/catalog.php:103 +msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" +#: ../../admin/catalog.php:112 +msgid "Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../admin/catalog.php:115 +msgid "No Songs Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../admin/catalog.php:118 +msgid "Disabled Songs Processed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 +#: ../../admin/catalog.php:138 #, fuzzy -msgid "No Catalogs Found" -msgstr "Sonu bulunamad" +msgid "Catalog Cleaned" +msgstr "Kalalog smi" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" +#: ../../admin/catalog.php:188 +#, fuzzy +msgid "Catalog Created" +msgstr "Kalalog smi" + +#: ../../admin/catalog.php:205 +msgid "Catalog statistics cleared" msgstr "" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 +#: ../../admin/catalog.php:220 +msgid "Now Playing Cleared" +msgstr "" + +#: ../../admin/catalog.php:220 +msgid "All now playing data has been cleared" +msgstr "" + +#: ../../admin/catalog.php:230 +msgid "No Disabled songs found" +msgstr "" + +#: ../../admin/catalog.php:239 +msgid "Delete Catalog" +msgstr "" + +#: ../../admin/catalog.php:239 +msgid "Do you really want to delete this catalog?" +msgstr "" + +#: ../../admin/catalog.php:258 +msgid "Album Art Search Finished" +msgstr "" + +#: ../../admin/flag.php:97 #, fuzzy -msgid "Verify All" -msgstr "Hepsini grntle" +msgid "Song Updated" +msgstr "ID3 Gncelleme" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 +#: ../../admin/flag.php:139 #, fuzzy -msgid "Update All" -msgstr "Profil gncelleme" +msgid "Album Updated" +msgstr "Albm kapa bulundu" -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" +#: ../../admin/flag.php:181 +msgid "Artist Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" +#: ../../admin/flag.php:246 +#, fuzzy +msgid "Songs Updated" +msgstr "ID3 Gncelleme" + +#: ../../admin/flag.php:254 +#, fuzzy +msgid "Flag Removed" +msgstr "Seilmileri iaretle" + +#: ../../admin/flag.php:255 +msgid "Flag Removed from" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../admin/flag.php:270 +msgid "Flags Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" +#: ../../admin/flag.php:289 +msgid "Songs Disabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" +#: ../../admin/flag.php:300 +msgid "Songs Enabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:93 +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" +msgstr "" + +#: ../../admin/flag.php:305 #, fuzzy -msgid "Preferences Permissions" -msgstr "Eriim listesindeki izinleri dzenle" +msgid "Flagged Records" +msgstr "aretleyen" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../admin/users.php:78 +msgid "User Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../admin/users.php:78 +msgid "updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" msgstr "" -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 +#: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 +#: ../../templates/show_add_user.inc.php:74 +msgid "Guest" msgstr "" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -#, fuzzy -msgid "Object" -msgstr "Nesne tr" +#: ../../admin/users.php:118 +msgid "New User Added" +msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" +#: ../../admin/users.php:123 +msgid "User Enabled" msgstr "" -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" +#: ../../admin/users.php:128 +msgid "User Disabled" msgstr "" -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" +#: ../../admin/users.php:131 +msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -#, fuzzy -msgid "No Records Found" -msgstr "Sonu bulunamad" +#: ../../admin/users.php:153 +msgid "User Deleted" +msgstr "" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" +#: ../../admin/users.php:156 +msgid "Delete Error" msgstr "" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../admin/users.php:156 +msgid "Unable to delete last Admin User" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 +#: ../../admin/users.php:162 +msgid "Deletion Request" +msgstr "" + +#: ../../admin/users.php:163 +msgid "Are you sure you want to permanently delete" +msgstr "" + +#: ../../admin/modules.php:38 +msgid "Install Failed, Controller Error" +msgstr "" + +#: ../../admin/modules.php:54 ../../admin/modules.php:92 +msgid "Are you sure you want to remove this plugin?" +msgstr "" + +#: ../../admin/modules.php:66 ../../admin/modules.php:111 +msgid "Plugin Deactivated" +msgstr "" + +#: ../../admin/modules.php:85 +msgid "Plugin Activated" +msgstr "" + +#: ../../admin/modules.php:120 +msgid "Plugins" +msgstr "" + +#: ../../admin/modules.php:126 +msgid "Localplay Controllers" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Deleted" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Your Access List Entry has been removed" +msgstr "" + +#: ../../admin/access.php:40 +msgid "Your new Access List Entry has been created" +msgstr "" + +#: ../../admin/access.php:45 #, fuzzy -msgid "Update" -msgstr "ID3 Gncelleme" +msgid "Access List Entry updated" +msgstr "Eriim listesi" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 +#: ../../admin/mail.php:57 +msgid "E-mail Sent" +msgstr "" + +#: ../../admin/mail.php:58 +msgid "Your E-mail was successfully sent." +msgstr "" + +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "" + +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "" + +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" + +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 #, fuzzy -msgid "Show All" -msgstr "Hepsini grntle" +msgid "Clear Playlist" +msgstr "Yeni ark listesi" + +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "" + +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "" + +#: ../../templates/rightbar.inc.php:104 +msgid "More" +msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -732,9 +1203,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -746,9 +1217,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -757,8 +1228,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" @@ -767,8 +1238,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "" @@ -783,839 +1254,737 @@ msgid "Create Admin Account" msgstr "" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "" -#: ../../templates/show_catalogs.inc.php:33 -#: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 -msgid "Path" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_localplay.inc.php:30 -#: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 -msgid "Actions" +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" msgstr "" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" msgstr "" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" msgstr "" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" msgstr "" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" msgstr "" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" msgstr "" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" msgstr "" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" msgstr "" -#: ../../templates/sidebar_browse.inc.php:3 -msgid "Browse By" +#: ../../templates/show_add_catalog.inc.php:48 +#: ../../templates/show_catalogs.inc.php:33 +#: ../../templates/show_catalogs.inc.php:61 +msgid "Path" msgstr "" -#: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:42 -#: ../../templates/show_playlist_songs.inc.php:63 -msgid "Song Title" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" msgstr "" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" msgstr "" -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" msgstr "" -#: ../../templates/sidebar_browse.inc.php:18 -msgid "Filters" +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/sidebar_browse.inc.php:23 -msgid "Minimum Count" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/sidebar_browse.inc.php:25 -msgid "Rated" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 -msgid "Unplayed" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 -msgid "Show Art" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" msgstr "" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" msgstr "" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" -msgstr "" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" +msgstr "Ses a" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" -msgstr "" +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" +msgstr "Ses kapa" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" msgstr "" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" msgstr "" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" msgstr "" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" msgstr "" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" msgstr "" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_album.inc.php:43 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 +msgid "Actions" msgstr "" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_album_row.inc.php:49 #: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 #: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 +#: ../../templates/show_live_stream_row.inc.php:31 #: ../../templates/show_playlist_row.inc.php:36 msgid "Edit" msgstr "" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "arky iaretle" - -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -msgid "File" -msgstr "" - -#: ../../templates/show_flag.inc.php:49 -msgid "Item" -msgstr "" - -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:23 +#, fuzzy +msgid "Similar Artists" +msgstr "Tm Sanatlar" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" msgstr "" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:77 +#, fuzzy +msgid "Rename selected" +msgstr "Seilmileri iaretle" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" -msgstr "" +#: ../../templates/show_similar_artists.inc.php:91 +#, fuzzy +msgid "Advanced Options" +msgstr "Eklendi" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_browse.inc.php:3 +msgid "Browse By" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" +#: ../../templates/sidebar_browse.inc.php:10 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 +#: ../../templates/show_playlist_songs.inc.php:42 +#: ../../templates/show_playlist_songs.inc.php:63 +msgid "Song Title" msgstr "" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_browse.inc.php:18 +msgid "Filters" msgstr "" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/sidebar_browse.inc.php:23 +msgid "Minimum Count" msgstr "" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/sidebar_browse.inc.php:25 +msgid "Rated" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" +#: ../../templates/sidebar_browse.inc.php:27 +msgid "Unplayed" msgstr "" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" +#: ../../templates/sidebar_browse.inc.php:30 +msgid "Show Art" msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" -msgstr "" +#: ../../templates/show_user_stats.inc.php:30 +#, fuzzy +msgid "Favorite Artists" +msgstr "Tm Sanatlar" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" -msgstr "" +#: ../../templates/show_user_stats.inc.php:56 +#, fuzzy +msgid "Favorite Songs" +msgstr "arky iaretle" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" msgstr "" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" msgstr "" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" msgstr "" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_random.inc.php:62 #: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 msgid "Type" msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" msgstr "" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" msgstr "" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" msgstr "" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 +#: ../../templates/show_random.inc.php:76 #, fuzzy -msgid "Base Playlist" -msgstr "Yeni ark listesi" - -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" -msgstr "" - -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 -msgid "Rating" -msgstr "" +msgid "From catalog" +msgstr "Katalogdan" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" -msgstr "" +#: ../../templates/show_random.inc.php:82 +#, fuzzy +msgid "Size Limit" +msgstr "Snrlar grntle" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" msgstr "" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" msgstr "" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" msgstr "" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:40 +#, fuzzy +msgid "Private" +msgstr "Size zel" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +#, fuzzy +msgid "Update" +msgstr "ID3 Gncelleme" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" msgstr "" -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" msgstr "" -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +#, fuzzy +msgid "Clean" +msgstr "sil" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:68 +#, fuzzy +msgid "No Catalogs Found" +msgstr "Sonu bulunamad" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +#, fuzzy +msgid "Verify All" +msgstr "Hepsini grntle" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +#, fuzzy +msgid "Update All" +msgstr "Profil gncelleme" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" msgstr "" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" msgstr "" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" msgstr "" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" msgstr "" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:93 +#, fuzzy +msgid "Preferences Permissions" +msgstr "Eriim listesindeki izinleri dzenle" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" msgstr "" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" -msgstr "" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" +msgstr "arky iaretle" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +msgid "File" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." +#: ../../templates/show_flag.inc.php:49 +msgid "Item" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -msgid "Current Playlist" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" msgstr "" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" msgstr "" -#: ../../templates/show_install.inc.php:54 -msgid "" -"This step creates and inserts the Ampache database, as such please provide a " -"mysql account with database creation rights. This step may take a while " -"depending upon the speed of your computer" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_install.inc.php:61 -msgid "Insert Ampache Database" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" msgstr "" -#: ../../templates/show_install.inc.php:73 -msgid "MySQL Administrative Username" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" msgstr "" -#: ../../templates/show_install.inc.php:77 -msgid "MySQL Administrative Password" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" msgstr "" -#: ../../templates/show_install.inc.php:81 -msgid "Create Database User for New Database" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" msgstr "" -#: ../../templates/show_install.inc.php:85 -msgid "Ampache Database Username" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" msgstr "" -#: ../../templates/show_install.inc.php:89 -msgid "Ampache Database User Password" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" msgstr "" -#: ../../templates/show_install.inc.php:93 -msgid "Overwrite Existing" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" msgstr "" -#: ../../templates/show_install.inc.php:98 -msgid "Insert Database" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:23 -#, fuzzy -msgid "Similar Artists" -msgstr "Tm Sanatlar" - -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" msgstr "" -#: ../../templates/show_similar_artists.inc.php:77 -#, fuzzy -msgid "Rename selected" -msgstr "Seilmileri iaretle" - -#: ../../templates/show_similar_artists.inc.php:91 -#, fuzzy -msgid "Advanced Options" -msgstr "Eklendi" - -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" msgstr "" -#: ../../templates/show_add_playlist.inc.php:24 -msgid "Create a new playlist" +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 +msgid "Rating" msgstr "" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" msgstr "" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 -#: ../../templates/show_edit_song.inc.php:40 -#: ../../templates/show_edit_song.inc.php:48 -#: ../../templates/show_edit_song.inc.php:56 -msgid "OR" -msgstr "" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +#, fuzzy +msgid "No Records Found" +msgstr "Sonu bulunamad" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" msgstr "" -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" msgstr "" -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" msgstr "" -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" msgstr "" -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" msgstr "" #: ../../templates/header.inc.php:71 @@ -1626,165 +1995,167 @@ msgstr "" msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" msgstr "" -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "" - -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" -msgstr "" - -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" -msgstr "" +#: ../../templates/show_edit_album.inc.php:23 +#, fuzzy +msgid "Edit Album" +msgstr "Tm albmler" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" -msgstr "" +#: ../../templates/show_edit_album.inc.php:47 +#, fuzzy +msgid "Update Album" +msgstr "Profil gncelleme" -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" msgstr "" -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" -#: ../../templates/show_search.inc.php:72 -msgid "Played" +#: ../../templates/show_install.inc.php:54 +msgid "" +"This step creates and inserts the Ampache database, as such please provide a " +"mysql account with database creation rights. This step may take a while " +"depending upon the speed of your computer" msgstr "" -#: ../../templates/show_search.inc.php:76 -msgid "Yes" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" msgstr "" -#: ../../templates/show_search.inc.php:77 -msgid "No" +#: ../../templates/show_install.inc.php:61 +msgid "Insert Ampache Database" msgstr "" -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" msgstr "" -#: ../../templates/show_search.inc.php:95 -msgid "One Star" +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" msgstr "" -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" +#: ../../templates/show_install.inc.php:73 +msgid "MySQL Administrative Username" msgstr "" -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" +#: ../../templates/show_install.inc.php:77 +msgid "MySQL Administrative Password" msgstr "" -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" +#: ../../templates/show_install.inc.php:81 +msgid "Create Database User for New Database" msgstr "" -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" +#: ../../templates/show_install.inc.php:85 +msgid "Ampache Database Username" msgstr "" -#: ../../templates/show_search.inc.php:102 -msgid "Operator" +#: ../../templates/show_install.inc.php:89 +msgid "Ampache Database User Password" msgstr "" -#: ../../templates/show_search.inc.php:105 -msgid "AND" +#: ../../templates/show_install.inc.php:93 +msgid "Overwrite Existing" msgstr "" -#: ../../templates/show_search.inc.php:111 -msgid "Method" +#: ../../templates/show_install.inc.php:98 +msgid "Insert Database" msgstr "" -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_search.inc.php:115 -msgid "Exact" +#: ../../templates/show_add_playlist.inc.php:24 +msgid "Create a new playlist" msgstr "" -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" msgstr "" -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" +#: ../../templates/show_edit_song.inc.php:40 +#: ../../templates/show_edit_song.inc.php:48 +#: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 +msgid "OR" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" -msgstr "" +#: ../../templates/show_edit_song.inc.php:88 +#, fuzzy +msgid "Update Song" +msgstr "Profil gncelleme" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" msgstr "" #: ../../templates/show_edit_access.inc.php:22 @@ -1792,27 +2163,28 @@ msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1820,400 +2192,365 @@ msgstr "" msgid "Start IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" msgstr "" -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" msgstr "" -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" msgstr "" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" -msgstr "" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +#, fuzzy +msgid "Show All" +msgstr "Hepsini grntle" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" msgstr "" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" msgstr "" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" msgstr "" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" msgstr "" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_mail_users.inc.php:23 +msgid "Send E-mail to Users" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" +#: ../../templates/show_mail_users.inc.php:27 +msgid "Mail to" msgstr "" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" msgstr "" -#: ../../templates/show_edit_song.inc.php:88 -#, fuzzy -msgid "Update Song" -msgstr "Profil gncelleme" - -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -#, fuzzy -msgid "Genres" -msgstr "Kategori" - -#: ../../templates/show_mail_users.inc.php:24 -msgid "Send E-mail to Users" +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" msgstr "" -#: ../../templates/show_mail_users.inc.php:28 -msgid "Mail to" +#: ../../templates/show_mail_users.inc.php:53 +msgid "Latest Artist Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:54 -msgid "Latest Artist Additions" +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" msgstr "" -#: ../../templates/show_mail_users.inc.php:65 +#: ../../templates/show_mail_users.inc.php:64 msgid "Latest Album Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" +msgstr "" + +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 msgid "Most Popular Threshold in days" msgstr "" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_add_access.inc.php:82 -msgid "Create ACL" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" msgstr "" -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" msgstr "" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:40 -#, fuzzy -msgid "Private" -msgstr "Size zel" - -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" msgstr "" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" msgstr "" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" msgstr "" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" msgstr "" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" msgstr "" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" -msgstr "" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +#, fuzzy +msgid "Object" +msgstr "Nesne tr" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" msgstr "" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" msgstr "" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" msgstr "" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" +#: ../../templates/show_song.inc.php:49 +msgid "Label" msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" +#: ../../templates/show_song.inc.php:53 +msgid "Language" msgstr "" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" msgstr "" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" msgstr "" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" msgstr "" -#: ../../templates/show_random.inc.php:59 -#, fuzzy -msgid "From catalog" -msgstr "Katalogdan" - -#: ../../templates/show_random.inc.php:65 -#, fuzzy -msgid "Size Limit" -msgstr "Snrlar grntle" - -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 #, fuzzy -msgid "Localplay Modules" -msgstr "Yerel alma Dzeni" - -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" -msgstr "" - -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" -msgstr "" - -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" -msgstr "" - -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" -msgstr "" +msgid "Base Playlist" +msgstr "Yeni ark listesi" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" msgstr "" #: ../../templates/show_get_albumart.inc.php:23 @@ -2232,86 +2569,27 @@ msgstr "" msgid "Get Art" msgstr "" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" msgstr "" #: ../../templates/show_democratic_playlist.inc.php:38 @@ -2331,6 +2609,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "" + #: ../../templates/show_edit_artist.inc.php:23 #, fuzzy msgid "Edit Artist" @@ -2340,232 +2631,241 @@ msgstr "Tm Sanatlar" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -#, fuzzy -msgid "Edit Album" -msgstr "Tm albmler" - -#: ../../templates/show_edit_album.inc.php:47 -#, fuzzy -msgid "Update Album" -msgstr "Profil gncelleme" +#: ../../templates/show_play_selected.inc.php:28 +msgid "Play Selected" +msgstr "" -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_play_selected.inc.php:31 +msgid "Download Selected" msgstr "" -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" +#: ../../templates/show_play_selected.inc.php:40 +msgid "Set Track Numbers" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" +#: ../../templates/show_play_selected.inc.php:41 +msgid "Remove Selected Tracks" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" +#: ../../templates/show_play_selected.inc.php:47 +msgid "Add to" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" msgstr "" -#: ../../templates/show_play_selected.inc.php:28 -msgid "Play Selected" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" msgstr "" -#: ../../templates/show_play_selected.inc.php:31 -msgid "Download Selected" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_play_selected.inc.php:40 -msgid "Set Track Numbers" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" msgstr "" -#: ../../templates/show_play_selected.inc.php:41 -msgid "Remove Selected Tracks" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Add to" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" msgstr "" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" msgstr "" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" msgstr "" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" msgstr "" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." msgstr "" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -#, fuzzy -msgid "Clear Playlist" -msgstr "Yeni ark listesi" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" +msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -#, fuzzy -msgid "Favorite Artists" -msgstr "Tm Sanatlar" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" +msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -#, fuzzy -msgid "Favorite Songs" -msgstr "arky iaretle" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" +msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:96 +#: ../../templates/sidebar_preferences.inc.php:34 #, fuzzy -msgid "Disable Songs" -msgstr "edilgenletir" +msgid "Localplay Modules" +msgstr "Yerel alma Dzeni" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/show_account.inc.php:40 +#, fuzzy +msgid "New Password" +msgstr "Parola deitirme" + +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" msgstr "" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" msgstr "" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2576,14 +2876,6 @@ msgstr "" msgid "Checking" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2663,6 +2955,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2670,6 +2967,11 @@ msgid "" "\tit is not currently readable by your webserver." msgstr "" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2686,471 +2988,315 @@ msgid "" "cfg.php" msgstr "" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" - -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" - -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "" - -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "" - -#: ../../templates/show_account.inc.php:40 -#, fuzzy -msgid "New Password" -msgstr "Parola deitirme" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "" - -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "" - -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" - -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" - -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" - -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" - -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" - -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" - -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" -msgstr "" - -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "" - -#: ../../activate.php:51 -msgid "User activated" -msgstr "" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" msgstr "" -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" msgstr "" -#: ../../democratic.php:80 -msgid "Playlist Cleared" +#: ../../templates/show_search.inc.php:72 +msgid "Played" msgstr "" -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" msgstr "" -#: ../../lib/class/flag.class.php:280 -#, fuzzy -msgid "Approved" -msgstr "Kip" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" +#: ../../templates/show_search.inc.php:77 +msgid "No" msgstr "" -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" msgstr "" -#: ../../lib/class/song.class.php:341 -msgid "Rate" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" msgstr "" -#: ../../lib/class/song.class.php:345 -msgid "Mode" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../lib/class/song.class.php:357 -msgid "Filesize" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" +#: ../../templates/show_search.inc.php:105 +msgid "AND" msgstr "" -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" +#: ../../templates/show_search.inc.php:111 +msgid "Method" msgstr "" -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" msgstr "" -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" msgstr "" -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" msgstr "" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" msgstr "" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" msgstr "" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" msgstr "" -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -#, fuzzy -msgid "Update Finished." -msgstr "Profil gncelleme" - -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" msgstr "" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/preferences.php:272 -msgid "M3U" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:310 -#, fuzzy -msgid "Disabled" -msgstr "edilgenletir" - -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" +#: ../../ratings.php:32 +msgid "Rating Updated" msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" msgstr "" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../preferences.php:91 +msgid "Error Update Failed" msgstr "" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" +#: ../../preferences.php:96 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/general.lib.php:496 -msgid "British English" +#: ../../update.php:51 +msgid "Ampache Update" msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" msgstr "" -#: ../../lib/general.lib.php:583 -msgid "Off" +#: ../../artists.php:186 +msgid "Show Artists starting with" msgstr "" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" +#: ../../playlist.php:57 +msgid "Playlist Created" msgstr "" -#: ../../lib/ui.lib.php:550 -msgid "Upload" +#: ../../playlist.php:57 +msgid " has been created" msgstr "" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" +#: ../../playlist.php:78 +msgid "Playlist Updated" msgstr "" -#: ../../lib/ui.lib.php:556 -msgid "Random Play" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" +#: ../../playlist.php:101 +msgid "Playlist Imported" msgstr "" -#: ../../lib/ui.lib.php:576 -#, fuzzy -msgid "Admin-User Management" -msgstr "Kullanc ad" - -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" msgstr "" -#: ../../lib/ui.lib.php:584 -#, fuzzy -msgid "Admin-Manage Access Lists" -msgstr "Eriim listesi" - -#: ../../lib/ui.lib.php:588 +#: ../../flag.php:45 #, fuzzy -msgid "Admin-Site Preferences" -msgstr "Ynetici tercihleri" - -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" -msgstr "" +msgid "Item Flagged" +msgstr "aretleyen" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" #: ../../albums.php:32 @@ -3172,110 +3318,52 @@ msgid "" "error, or the file is not received corectly." msgstr "" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" - -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "" - -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "" - -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" - -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." -msgstr "" - -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "" - -#: ../../playlist.php:57 -msgid "Playlist Created" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../playlist.php:57 -msgid " has been created" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../playlist.php:78 -msgid "Playlist Updated" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -#: ../../playlist.php:101 -msgid "Playlist Imported" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" +#: ../../register.php:122 +msgid "You must enter a password" msgstr "" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" +#: ../../register.php:126 +msgid "Your passwords do not match" msgstr "" -#: ../../login.php:87 -msgid "Unable to create new account" +#: ../../register.php:158 +msgid "Error: Insert Failed" msgstr "" -#: ../../login.php:96 -msgid "No local account found" +#: ../../register.php:175 +msgid "Registration Complete" msgstr "" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../artists.php:186 -msgid "Show Artists starting with" +#: ../../democratic.php:80 +msgid "Playlist Cleared" msgstr "" #: ../../bin/print_tags.inc:66 @@ -3292,6 +3380,10 @@ msgid "Filename:" msgstr "" #, fuzzy +#~ msgid "Disable Songs" +#~ msgstr "edilgenletir" + +#, fuzzy #~ msgid "album's with art" #~ msgstr "Kapaksz Albmler" @@ -3359,12 +3451,6 @@ msgstr "" #~ msgid "Playback" #~ msgstr "al" -#~ msgid "Increase Volume" -#~ msgstr "Ses a" - -#~ msgid "Decrease Volume" -#~ msgstr "Ses kapa" - #~ msgid "Clear queue" #~ msgstr "Kuyruu sil" diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po index cd9052f0..7a4f9ae2 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.po +++ b/locale/zh_CN/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-11-25 18:00-0800\n" +"POT-Creation-Date: 2007-12-23 21:59-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,699 +16,1170 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../register.php:82 -msgid "Error Captcha Required" +#: ../../play/index.php:72 +msgid "Session Expired: please log in again at" msgstr "" -#: ../../register.php:89 -msgid "Error Captcha Failed" +#: ../../lib/class/album.class.php:217 +msgid "Disk" msgstr "" -#: ../../register.php:96 -msgid "You <U>must</U> accept the user agreement" +#: ../../lib/class/album.class.php:229 ../../lib/class/browse.class.php:641 +#: ../../lib/ui.lib.php:535 ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:30 +msgid "Artists" msgstr "" -#: ../../register.php:101 -msgid "You did not enter a username" +#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 +#: ../../templates/show_edit_album_row.inc.php:35 +msgid "Various" msgstr "" -#: ../../register.php:105 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../lib/class/album.class.php:437 ../../lib/class/catalog.class.php:410 +#: ../../lib/class/catalog.class.php:746 +msgid "Error: Unable to open" msgstr "" -#: ../../register.php:131 -msgid "You must enter a password" +#: ../../lib/class/access.class.php:312 ../../lib/class/access.class.php:337 +#: ../../lib/class/browse.class.php:80 ../../lib/ui.lib.php:131 +#: ../../lib/ui.lib.php:728 ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_add_access.inc.php:58 +msgid "All" msgstr "" -#: ../../register.php:135 -msgid "Your passwords do not match" +#: ../../lib/class/access.class.php:315 +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc.php:55 +msgid "View" msgstr "" -#: ../../register.php:139 ../../admin/users.php:100 -msgid "Error Username already exists" +#: ../../lib/class/access.class.php:318 +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +msgid "Read" msgstr "" -#: ../../register.php:157 -msgid "Error: Insert Failed" +#: ../../lib/class/access.class.php:321 +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +msgid "Read/Write" msgstr "" -#: ../../register.php:174 -msgid "Registration Complete" +#: ../../lib/class/catalog.class.php:116 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/user.class.php:616 ../../lib/preferences.php:258 +#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 +msgid "Never" msgstr "" -#: ../../update.php:51 -msgid "Ampache Update" +#: ../../lib/class/catalog.class.php:176 +msgid "day" msgstr "" -#: ../../play/index.php:72 -msgid "Session Expired: please log in again at" +#: ../../lib/class/catalog.class.php:176 +msgid "days" msgstr "" -#: ../../ratings.php:32 -msgid "Rating Updated" +#: ../../lib/class/catalog.class.php:178 +msgid "hour" msgstr "" -#: ../../ratings.php:32 -msgid "Your rating for this object has been updated" +#: ../../lib/class/catalog.class.php:178 +#: ../../templates/show_random.inc.php:53 +#: ../../templates/show_random.inc.php:54 +#: ../../templates/show_random.inc.php:55 +#: ../../templates/show_random.inc.php:56 +#: ../../templates/show_random.inc.php:57 +msgid "hours" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../lib/class/catalog.class.php:275 +#: ../../lib/class/catalog.class.php:1018 +msgid "Running Remote Sync" msgstr "" -#: ../../admin/flag.php:97 -#, fuzzy -msgid "Song Updated" -msgstr "ID3 " +#: ../../lib/class/catalog.class.php:416 ../../lib/class/catalog.class.php:459 +msgid "Error: Unable to change to directory" +msgstr "" -#: ../../admin/flag.php:97 -msgid "The requested song has been updated" +#: ../../lib/class/catalog.class.php:487 +msgid "Error: Unable to get filesize for" msgstr "" -#: ../../admin/flag.php:139 -#, fuzzy -msgid "Album Updated" -msgstr "ID3 " +#: ../../lib/class/catalog.class.php:493 +msgid "is not readable by ampache" +msgstr "" -#: ../../admin/flag.php:181 -msgid "Artist Updated" +#: ../../lib/class/catalog.class.php:1014 +msgid "Starting Catalog Build" msgstr "" -#: ../../admin/flag.php:246 -#, fuzzy -msgid "Songs Updated" -msgstr "ID3 " +#: ../../lib/class/catalog.class.php:1023 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/show_run_add_catalog.inc.php:24 +msgid "Found" +msgstr "" -#: ../../admin/flag.php:254 -msgid "Flag Removed" +#: ../../lib/class/catalog.class.php:1023 +#: ../../lib/class/catalog.class.php:1050 ../../lib/preferences.php:170 +#: ../../lib/preferences.php:212 ../../lib/ui.lib.php:756 +#: ../../templates/show_adds_catalog.inc.php:24 +#: ../../templates/sidebar_localplay.inc.php:22 +#: ../../templates/show_gather_art.inc.php:24 +msgid "None" msgstr "" -#: ../../admin/flag.php:255 -msgid "Flag Removed from" +#: ../../lib/class/catalog.class.php:1042 +#: ../../lib/class/catalog.class.php:1215 +msgid "Added Playlist From" msgstr "" -#: ../../admin/flag.php:270 -msgid "Flags Updated" +#: ../../lib/class/catalog.class.php:1049 +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" msgstr "" -#: ../../admin/flag.php:289 -msgid "Songs Disabled" +#: ../../lib/class/catalog.class.php:1050 +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" msgstr "" -#: ../../admin/flag.php:289 -msgid "The requested song(s) have been disabled" +#: ../../lib/class/catalog.class.php:1060 +msgid "Catalog Finished" msgstr "" -#: ../../admin/flag.php:300 -msgid "Songs Enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1244 +msgid "Total Time" msgstr "" -#: ../../admin/flag.php:300 -msgid "The requested song(s) have been enabled" +#: ../../lib/class/catalog.class.php:1060 +#: ../../lib/class/catalog.class.php:1245 +msgid "Total Songs" msgstr "" -#: ../../admin/flag.php:305 -msgid "Flagged Records" +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1245 +msgid "Songs Per Seconds" msgstr "" -#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 -#: ../../admin/catalog.php:95 ../../admin/catalog.php:153 -msgid "Catalog Updated" +#: ../../lib/class/catalog.class.php:1097 ../../admin/access.php:45 +#: ../../preferences.php:95 +msgid "Updated" msgstr "" -#: ../../admin/catalog.php:106 -msgid "Catalog Deleted" +#: ../../lib/class/catalog.class.php:1104 +msgid "No Update Needed" msgstr "" -#: ../../admin/catalog.php:106 -msgid "The Catalog and all associated records have been deleted" +#: ../../lib/class/catalog.class.php:1188 +msgid "Running Remote Update" msgstr "" -#: ../../admin/catalog.php:115 -msgid "Songs Removed" +#: ../../lib/class/catalog.class.php:1244 +msgid "Catalog Update Finished" msgstr "" -#: ../../admin/catalog.php:118 -msgid "No Songs Removed" +#: ../../lib/class/catalog.class.php:1261 ../../admin/users.php:131 +msgid "Error" msgstr "" -#: ../../admin/catalog.php:121 -msgid "Disabled Songs Processed" +#: ../../lib/class/catalog.class.php:1261 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" -#: ../../admin/catalog.php:141 -msgid "Catalog Cleaned" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Error connecting to" msgstr "" -#: ../../admin/catalog.php:191 -msgid "Catalog Created" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Code" msgstr "" -#: ../../admin/catalog.php:208 -msgid "Catalog statistics cleared" +#: ../../lib/class/catalog.class.php:1293 +#: ../../lib/class/catalog.class.php:1309 +#: ../../lib/class/catalog.class.php:1375 +msgid "Reason" msgstr "" -#: ../../admin/catalog.php:223 -msgid "Now Playing Cleared" +#: ../../lib/class/catalog.class.php:1339 +msgid "Completed updating remote catalog(s)" msgstr "" -#: ../../admin/catalog.php:223 -msgid "All now playing data has been cleared" +#: ../../lib/class/catalog.class.php:1371 ../../admin/access.php:40 +#: ../../templates/show_song.inc.php:77 +msgid "Added" msgstr "" -#: ../../admin/catalog.php:233 -msgid "No Disabled songs found" +#: ../../lib/class/catalog.class.php:1444 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Delete Catalog" +#: ../../lib/class/catalog.class.php:1501 +msgid "Catalog Clean Done" msgstr "" -#: ../../admin/catalog.php:242 -msgid "Do you really want to delete this catalog?" +#: ../../lib/class/catalog.class.php:1501 +msgid "files removed" msgstr "" -#: ../../admin/catalog.php:261 -msgid "Album Art Search Finished" +#: ../../lib/class/catalog.class.php:1502 +msgid "Optimizing Tables" +msgstr "" + +#: ../../lib/class/catalog.class.php:1738 +msgid " FOUND" +msgstr "" + +#: ../../lib/class/catalog.class.php:1740 +msgid "Searching for new Album Art" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Update Finished." +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "Checked" +msgstr "" + +#: ../../lib/class/catalog.class.php:1788 +msgid "songs updated." +msgstr "" + +#: ../../lib/class/catalog.class.php:1849 +#: ../../lib/class/catalog.class.php:1931 +#: ../../lib/class/catalog.class.php:2016 +#: ../../templates/show_album.inc.php:31 +msgid "Unknown (Orphaned)" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../server/stats.ajax.php:84 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_song.inc.php:25 +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" +msgstr "" + +#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 +#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 +#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 +#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 +#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 +#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 +msgid "updated to" +msgstr "" + +#: ../../lib/class/song.class.php:337 +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +#: ../../templates/show_song.inc.php:61 +msgid "Bitrate" +msgstr "" + +#: ../../lib/class/song.class.php:341 +msgid "Rate" +msgstr "" + +#: ../../lib/class/song.class.php:345 +msgid "Mode" msgstr "" -#: ../../admin/users.php:51 ../../admin/users.php:95 -#: ../../lib/class/user.class.php:408 +#: ../../lib/class/song.class.php:349 ../../templates/show_songs.inc.php:46 +#: ../../templates/show_songs.inc.php:68 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" +msgstr "" + +#: ../../lib/class/song.class.php:353 ../../server/stats.ajax.php:84 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:67 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" +msgstr "" + +#: ../../lib/class/song.class.php:357 +msgid "Filesize" +msgstr "" + +#: ../../lib/class/song.class.php:362 ../../server/stats.ajax.php:84 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/sidebar_browse.inc.php:12 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:52 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:64 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:93 +#: ../../templates/sidebar_home.inc.php:20 +#: ../../templates/show_now_playing_row.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_song.inc.php:29 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:64 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +msgid "Artist" +msgstr "" + +#: ../../lib/class/song.class.php:367 ../../templates/show_songs.inc.php:43 +#: ../../templates/show_songs.inc.php:65 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:92 +#: ../../templates/sidebar_home.inc.php:19 +#: ../../templates/show_now_playing_row.inc.php:52 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_song.inc.php:33 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_albums.inc.php:42 +#: ../../templates/show_albums.inc.php:63 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +msgid "Album" +msgstr "" + +#: ../../lib/class/song.class.php:371 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:66 +#: ../../templates/show_search.inc.php:60 +msgid "Year" +msgstr "" + +#: ../../lib/class/song.class.php:375 ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:40 +#: ../../templates/show_flagged.inc.php:76 +#: ../../templates/show_song.inc.php:45 ../../templates/show_search.inc.php:34 +msgid "Comment" +msgstr "" + +#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:539 +#: ../../templates/sidebar_browse.inc.php:13 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:66 +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:68 ../../templates/show_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:56 +#: ../../templates/show_edit_live_stream_row.inc.php:31 +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_search.inc.php:54 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 +msgid "Genre" +msgstr "" + +#: ../../lib/class/flag.class.php:280 +msgid "Approved" +msgstr "" + +#: ../../lib/class/flag.class.php:281 +msgid "Pending" +msgstr "" + +#: ../../lib/class/flag.class.php:293 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../templates/show_flag.inc.php:56 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_playlist_row.inc.php:37 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Delete" +msgstr "" + +#: ../../lib/class/flag.class.php:296 +msgid "Re-Tag" +msgstr "" + +#: ../../lib/class/flag.class.php:299 ../../templates/show_flag.inc.php:58 +msgid "Re-encode" +msgstr "" + +#: ../../lib/class/flag.class.php:302 ../../templates/show_flag.inc.php:59 +msgid "Other" +msgstr "" + +#: ../../lib/class/flag.class.php:305 ../../lib/class/localplay.class.php:636 +#: ../../lib/class/user.class.php:620 ../../lib/general.lib.php:445 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:488 +#: ../../modules/localplay/httpq.controller.php:483 +#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 +msgid "Unknown" +msgstr "" + +#: ../../lib/class/localplay.class.php:627 +#: ../../templates/show_now_playing.inc.php:32 +msgid "Now Playing" +msgstr "" + +#: ../../lib/class/localplay.class.php:630 +msgid "Stopped" +msgstr "" + +#: ../../lib/class/localplay.class.php:633 +msgid "Paused" +msgstr "" + +#: ../../lib/class/user.class.php:351 ../../admin/users.php:50 +#: ../../admin/users.php:94 msgid "Error Username Required" msgstr "" -#: ../../admin/users.php:54 ../../admin/users.php:91 -#: ../../lib/class/user.class.php:412 +#: ../../lib/class/user.class.php:355 ../../admin/users.php:53 +#: ../../admin/users.php:90 msgid "Error Passwords don't match" msgstr "" -#: ../../admin/users.php:79 -msgid "User Updated" +#: ../../lib/class/browse.class.php:621 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:53 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:69 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_manage_democratic.inc.php:33 +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:65 +msgid "Songs" msgstr "" -#: ../../admin/users.php:79 -msgid "updated" +#: ../../lib/class/browse.class.php:626 ../../lib/ui.lib.php:531 +#: ../../templates/sidebar_browse.inc.php:11 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:54 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:29 +msgid "Albums" msgstr "" -#: ../../admin/users.php:115 ../../templates/show_edit_user.inc.php:74 -#: ../../templates/show_preference_admin.inc.php:41 -#: ../../templates/show_add_user.inc.php:74 -#: ../../templates/show_preference_box.inc.php:58 -msgid "Guest" +#: ../../lib/class/browse.class.php:631 +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" msgstr "" -#: ../../admin/users.php:116 ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:74 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:75 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:55 -#: ../../templates/show_add_user.inc.php:75 -#: ../../templates/show_add_access.inc.php:44 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../lib/preferences.php:312 -msgid "User" +#: ../../lib/class/browse.class.php:636 +msgid "Manage Users" msgstr "" -#: ../../admin/users.php:117 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -msgid "Admin" +#: ../../lib/class/browse.class.php:646 +#: ../../templates/sidebar_browse.inc.php:15 +msgid "Radio Stations" msgstr "" -#: ../../admin/users.php:119 -msgid "New User Added" +#: ../../lib/class/browse.class.php:651 +msgid "Playlists" msgstr "" -#: ../../admin/users.php:124 -msgid "User Enabled" +#: ../../lib/class/browse.class.php:656 +msgid "Playlist Songs" msgstr "" -#: ../../admin/users.php:129 -msgid "User Disabled" +#: ../../lib/class/browse.class.php:661 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../templates/sidebar_admin.inc.php:2 +msgid "Catalogs" msgstr "" -#: ../../admin/users.php:132 ../../lib/class/catalog.class.php:1187 -msgid "Error" +#: ../../lib/class/random.class.php:423 ../../templates/rightbar.inc.php:65 +msgid "Related Album" msgstr "" -#: ../../admin/users.php:132 -msgid "Unable to Disabled last Administrator" +#: ../../lib/class/random.class.php:426 ../../templates/rightbar.inc.php:68 +msgid "Related Genre" msgstr "" -#: ../../admin/users.php:154 -msgid "User Deleted" +#: ../../lib/class/random.class.php:429 ../../templates/rightbar.inc.php:62 +msgid "Related Artist" msgstr "" -#: ../../admin/users.php:157 -msgid "Delete Error" +#: ../../lib/class/random.class.php:432 ../../templates/rightbar.inc.php:59 +msgid "Pure Random" msgstr "" -#: ../../admin/users.php:157 -msgid "Unable to delete last Admin User" +#: ../../lib/class/metadata.class.php:137 +msgid "Buy Track from MyStrands" msgstr "" -#: ../../admin/users.php:163 -msgid "Deletion Request" +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" msgstr "" -#: ../../admin/users.php:164 -msgid "Are you sure you want to permanently delete" +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" msgstr "" -#: ../../admin/modules.php:38 -msgid "Install Failed, Controller Error" +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" msgstr "" -#: ../../admin/modules.php:54 ../../admin/modules.php:92 -msgid "Are you sure you want to remove this plugin?" +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" msgstr "" -#: ../../admin/modules.php:66 ../../admin/modules.php:111 -msgid "Plugin Deactivated" +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" msgstr "" -#: ../../admin/modules.php:85 -msgid "Plugin Activated" +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" msgstr "" -#: ../../admin/modules.php:120 -msgid "Plugins" +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" msgstr "" -#: ../../admin/modules.php:126 -msgid "Localplay Controllers" +#: ../../lib/preferences.php:160 +msgid "Enable" msgstr "" -#: ../../admin/access.php:35 -msgid "Deleted" +#: ../../lib/preferences.php:161 ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 +#: ../../templates/show_localplay_controllers.inc.php:44 +msgid "Disable" msgstr "" -#: ../../admin/access.php:35 -msgid "Your Access List Entry has been removed" +#: ../../lib/preferences.php:172 +#: ../../templates/show_playtype_switch.inc.php:32 +msgid "Stream" msgstr "" -#: ../../admin/access.php:40 ../../templates/show_song.inc.php:55 -#: ../../lib/class/catalog.class.php:1281 -msgid "Added" +#: ../../lib/preferences.php:175 +#: ../../modules/localplay/mpd.controller.php:472 +#: ../../modules/localplay/httpq.controller.php:467 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_home.inc.php:10 +msgid "Democratic" msgstr "" -#: ../../admin/access.php:40 -msgid "Your new Access List Entry has been created" +#: ../../lib/preferences.php:178 ../../templates/sidebar.inc.php:29 +#: ../../templates/sidebar_localplay.inc.php:10 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/show_localplay.inc.php:26 +msgid "Localplay" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:90 -#: ../../lib/class/catalog.class.php:1020 -msgid "Updated" +#: ../../lib/preferences.php:180 +#: ../../templates/show_playtype_switch.inc.php:38 +msgid "Flash Player" msgstr "" -#: ../../admin/access.php:45 -msgid "Access List Entry updated" +#: ../../lib/preferences.php:187 +msgid "M3U" msgstr "" -#: ../../admin/system.php:64 -msgid "Export Failed" +#: ../../lib/preferences.php:188 +msgid "Simple M3U" msgstr "" -#: ../../admin/mail.php:90 -msgid "No Catalogs Found!" +#: ../../lib/preferences.php:189 +msgid "PLS" msgstr "" -#: ../../admin/mail.php:91 ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:4 -msgid "Add a Catalog" +#: ../../lib/preferences.php:190 +msgid "Asx" msgstr "" -#: ../../admin/mail.php:92 ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:43 -msgid "Catalog Statistics" +#: ../../lib/preferences.php:191 +msgid "RAM" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "day" +#: ../../lib/preferences.php:192 +msgid "XSPF" msgstr "" -#: ../../admin/mail.php:129 ../../lib/class/catalog.class.php:176 -msgid "days" +#: ../../lib/preferences.php:226 +msgid "Disabled" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hour" +#: ../../lib/preferences.php:227 ../../admin/users.php:115 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:74 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_access_list.inc.php:47 +#: ../../templates/show_add_access.inc.php:46 +msgid "User" msgstr "" -#: ../../admin/mail.php:131 ../../lib/class/catalog.class.php:178 -msgid "hours" +#: ../../lib/preferences.php:228 +msgid "Manager" msgstr "" -#: ../../admin/mail.php:141 ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" +#: ../../lib/preferences.php:229 ../../admin/users.php:116 +#: ../../templates/sidebar.inc.php:31 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_add_user.inc.php:78 +msgid "Admin" msgstr "" -#: ../../admin/mail.php:142 ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" +#: ../../lib/preferences.php:249 +msgid "Send on Add" msgstr "" -#: ../../admin/mail.php:143 ../../templates/sidebar_browse.inc.php:11 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:532 -#: ../../lib/ui.lib.php:600 ../../genre.php:47 -msgid "Albums" +#: ../../lib/preferences.php:250 +msgid "Send and Clear on Add" msgstr "" -#: ../../admin/mail.php:144 ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:547 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:604 -#: ../../genre.php:55 -msgid "Artists" +#: ../../lib/preferences.php:251 +msgid "Clear on Send" msgstr "" -#: ../../admin/mail.php:145 ../../templates/show_manage_democratic.inc.php:33 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:69 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:65 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:53 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:527 -#: ../../genre.php:37 -msgid "Songs" +#: ../../lib/preferences.php:252 ../../lib/preferences.php:259 +msgid "Default" msgstr "" -#: ../../admin/mail.php:146 ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" +#: ../../lib/preferences.php:260 +msgid "Always" msgstr "" -#: ../../admin/mail.php:147 ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" +#: ../../lib/general.lib.php:424 ../../lib/general.lib.php:435 +msgid "English" msgstr "" -#: ../../admin/mail.php:260 -msgid "E-mail Sent" +#: ../../lib/general.lib.php:436 +msgid "British English" msgstr "" -#: ../../admin/mail.php:261 -msgid "Your E-mail was successfully sent." +#: ../../lib/general.lib.php:442 +msgid "Turkish" msgstr "" -#: ../../preferences.php:35 ../../preferences.php:60 -#: ../../lib/preferences.php:311 -msgid "Server" +#: ../../lib/general.lib.php:443 +msgid "Simplified Chinese" msgstr "" -#: ../../preferences.php:86 -msgid "Error Update Failed" +#: ../../lib/general.lib.php:504 +msgid "On" msgstr "" -#: ../../preferences.php:91 -msgid "Your Account has been updated" +#: ../../lib/general.lib.php:507 +msgid "Off" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "seconds ago" msgstr "" -#: ../../flag.php:45 -msgid "The specified item has been flagged" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "minutes ago" msgstr "" -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:2 -#: ../../lib/class/browse.class.php:562 -msgid "Catalogs" +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "hours ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "days ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "weeks ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "months ago" +msgstr "" + +#: ../../lib/rss.php:180 ../../templates/show_recently_played.inc.php:23 +msgid "years ago" +msgstr "" + +#: ../../lib/ui.lib.php:478 ../../templates/sidebar.inc.php:27 +msgid "Home" +msgstr "" + +#: ../../lib/ui.lib.php:481 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:484 +msgid "Local Play" +msgstr "" + +#: ../../lib/ui.lib.php:487 +msgid "Random Play" +msgstr "" + +#: ../../lib/ui.lib.php:490 ../../templates/sidebar_browse.inc.php:14 +#: ../../templates/sidebar_home.inc.php:21 +#: ../../templates/show_playlist.inc.php:27 +#: ../../templates/show_manage_democratic.inc.php:31 +#: ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" msgstr "" +#: ../../lib/ui.lib.php:493 ../../templates/show_search.inc.php:131 +#: ../../templates/show_search_bar.inc.php:29 +msgid "Search" +msgstr "" + +#: ../../lib/ui.lib.php:496 ../../templates/sidebar.inc.php:30 +msgid "Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:499 ../../lib/ui.lib.php:503 +msgid "Admin-Catalog" +msgstr "" + +#: ../../lib/ui.lib.php:507 +msgid "Admin-User Management" +msgstr "" + +#: ../../lib/ui.lib.php:511 +msgid "Admin-Mail Users" +msgstr "" + +#: ../../lib/ui.lib.php:515 +msgid "Admin-Manage Access Lists" +msgstr "" + +#: ../../lib/ui.lib.php:519 +msgid "Admin-Site Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:523 +msgid "Admin-Manage Modules" +msgstr "" + +#: ../../lib/ui.lib.php:527 +msgid "Browse Music" +msgstr "" + +#: ../../lib/ui.lib.php:543 ../../templates/sidebar_home.inc.php:5 +msgid "Statistics" +msgstr "" + +#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 +#: ../../templates/show_user_recommendations.inc.php:22 +msgid "Recommendations" +msgstr "" + +#: ../../server/stats.ajax.php:52 +#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_admin_tools.inc.php:33 #: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_edit_album.inc.php:27 #: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 #: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_edit_access.inc.php:26 #: ../../templates/show_plugins.inc.php:32 #: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_account.inc.php:28 #: ../../templates/show_live_streams.inc.php:36 #: ../../templates/show_live_streams.inc.php:53 #: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:60 +#: ../../templates/show_access_list.inc.php:43 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_create_democratic.inc.php:26 msgid "Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:42 -#: ../../templates/show_flagged.inc.php:78 -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:65 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:108 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:70 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:57 -msgid "Action" +#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 +msgid "Links" msgstr "" -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:58 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:67 -#: ../../templates/show_albums.inc.php:38 -#: ../../templates/show_albums.inc.php:59 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_add_live_stream.inc.php:74 -#: ../../templates/show_artists.inc.php:34 -#: ../../templates/show_artists.inc.php:51 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:52 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:33 -#: ../../templates/show_playlists.inc.php:50 -msgid "Add" +#: ../../server/stats.ajax.php:74 ../../server/stats.ajax.php:90 +#: ../../templates/show_album.inc.php:58 +msgid "Find Missing Tracks" msgstr "" -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../server/ajax.server.php:274 ../../templates/show_index.inc.php:53 +#: ../../templates/show_user.inc.php:68 +msgid "Recently Played" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" +#: ../../modules/localplay/mpd.controller.php:213 +#: ../../modules/localplay/httpq.controller.php:197 +msgid "Instance Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_add_access.inc.php:56 -#: ../../templates/show_random.inc.php:38 ../../lib/class/access.class.php:268 -#: ../../lib/class/access.class.php:293 ../../lib/class/browse.class.php:70 -#: ../../lib/ui.lib.php:131 -msgid "All" +#: ../../modules/localplay/mpd.controller.php:214 +#: ../../modules/localplay/httpq.controller.php:198 +msgid "Hostname" msgstr "" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_localplay_playlist.inc.php:47 -#: ../../templates/show_localplay_instances.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:37 -#: ../../templates/rightbar.inc.php:90 ../../lib/class/flag.class.php:293 -msgid "Delete" +#: ../../modules/localplay/mpd.controller.php:215 +#: ../../modules/localplay/httpq.controller.php:199 +msgid "Port" msgstr "" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../modules/localplay/mpd.controller.php:216 +#: ../../modules/localplay/httpq.controller.php:200 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +msgid "Password" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../modules/horde/Browser.php:867 +msgid "file" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." msgstr "" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" msgstr "" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." msgstr "" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." msgstr "" -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." +msgstr "" + +#: ../../admin/catalog.php:51 ../../admin/catalog.php:69 +#: ../../admin/catalog.php:92 ../../admin/catalog.php:150 +msgid "Catalog Updated" +msgstr "" + +#: ../../admin/catalog.php:103 +msgid "Catalog Deleted" +msgstr "" + +#: ../../admin/catalog.php:103 +msgid "The Catalog and all associated records have been deleted" +msgstr "" + +#: ../../admin/catalog.php:112 +msgid "Songs Removed" +msgstr "" + +#: ../../admin/catalog.php:115 +msgid "No Songs Removed" +msgstr "" + +#: ../../admin/catalog.php:118 +msgid "Disabled Songs Processed" +msgstr "" + +#: ../../admin/catalog.php:138 +msgid "Catalog Cleaned" +msgstr "" + +#: ../../admin/catalog.php:188 +msgid "Catalog Created" +msgstr "" + +#: ../../admin/catalog.php:205 +msgid "Catalog statistics cleared" +msgstr "" + +#: ../../admin/catalog.php:220 +msgid "Now Playing Cleared" +msgstr "" + +#: ../../admin/catalog.php:220 +msgid "All now playing data has been cleared" +msgstr "" + +#: ../../admin/catalog.php:230 +msgid "No Disabled songs found" +msgstr "" + +#: ../../admin/catalog.php:239 +msgid "Delete Catalog" +msgstr "" + +#: ../../admin/catalog.php:239 +msgid "Do you really want to delete this catalog?" +msgstr "" + +#: ../../admin/catalog.php:258 +msgid "Album Art Search Finished" +msgstr "" + +#: ../../admin/flag.php:97 #, fuzzy -msgid "Update All" +msgid "Song Updated" msgstr "ID3 " -#: ../../templates/show_admin_tools.inc.php:83 -#: ../../templates/sidebar_admin.inc.php:24 -msgid "Clear Catalog Stats" +#: ../../admin/flag.php:97 +msgid "The requested song has been updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" +#: ../../admin/flag.php:139 +#, fuzzy +msgid "Album Updated" +msgstr "ID3 " + +#: ../../admin/flag.php:181 +msgid "Artist Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:21 -msgid "Other Tools" +#: ../../admin/flag.php:246 +#, fuzzy +msgid "Songs Updated" +msgstr "ID3 " + +#: ../../admin/flag.php:254 +msgid "Flag Removed" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" +#: ../../admin/flag.php:255 +msgid "Flag Removed from" msgstr "" -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:23 -msgid "Clear Now Playing" +#: ../../admin/flag.php:270 +msgid "Flags Updated" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" +#: ../../admin/flag.php:289 +msgid "Songs Disabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" +#: ../../admin/flag.php:289 +msgid "The requested song(s) have been disabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../admin/flag.php:300 +msgid "Songs Enabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../admin/flag.php:300 +msgid "The requested song(s) have been enabled" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" +#: ../../admin/flag.php:305 +msgid "Flagged Records" msgstr "" -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:72 -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" +#: ../../admin/users.php:78 +msgid "User Updated" msgstr "" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:73 -msgid "Object" +#: ../../admin/users.php:78 +msgid "updated" msgstr "" -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:75 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" +#: ../../admin/users.php:99 ../../register.php:130 +msgid "Error Username already exists" msgstr "" -#: ../../templates/show_flagged.inc.php:40 -#: ../../templates/show_flagged.inc.php:76 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../lib/class/song.class.php:375 -msgid "Comment" +#: ../../admin/users.php:114 ../../templates/show_preference_box.inc.php:58 +#: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_edit_user.inc.php:74 +#: ../../templates/show_add_user.inc.php:74 +msgid "Guest" msgstr "" -#: ../../templates/show_flagged.inc.php:41 -#: ../../templates/show_flagged.inc.php:77 -msgid "Status" +#: ../../admin/users.php:118 +msgid "New User Added" msgstr "" -#: ../../templates/show_flagged.inc.php:68 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:52 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_list_duplicates.inc.php:101 -msgid "No Records Found" +#: ../../admin/users.php:123 +msgid "User Enabled" msgstr "" -#: ../../templates/show_flagged.inc.php:83 -msgid "Reject" +#: ../../admin/users.php:128 +msgid "User Disabled" msgstr "" -#: ../../templates/show_flagged.inc.php:84 -msgid "Approve" +#: ../../admin/users.php:131 +msgid "Unable to Disabled last Administrator" msgstr "" -#: ../../templates/show_flagged.inc.php:86 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -#, fuzzy -msgid "Update" -msgstr "ID3 " +#: ../../admin/users.php:153 +msgid "User Deleted" +msgstr "" -#: ../../templates/show_flagged.inc.php:91 -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -msgid "Show All" +#: ../../admin/users.php:156 +msgid "Delete Error" +msgstr "" + +#: ../../admin/users.php:156 +msgid "Unable to delete last Admin User" +msgstr "" + +#: ../../admin/users.php:162 +msgid "Deletion Request" +msgstr "" + +#: ../../admin/users.php:163 +msgid "Are you sure you want to permanently delete" +msgstr "" + +#: ../../admin/modules.php:38 +msgid "Install Failed, Controller Error" +msgstr "" + +#: ../../admin/modules.php:54 ../../admin/modules.php:92 +msgid "Are you sure you want to remove this plugin?" +msgstr "" + +#: ../../admin/modules.php:66 ../../admin/modules.php:111 +msgid "Plugin Deactivated" +msgstr "" + +#: ../../admin/modules.php:85 +msgid "Plugin Activated" +msgstr "" + +#: ../../admin/modules.php:120 +msgid "Plugins" +msgstr "" + +#: ../../admin/modules.php:126 +msgid "Localplay Controllers" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Deleted" +msgstr "" + +#: ../../admin/access.php:35 +msgid "Your Access List Entry has been removed" +msgstr "" + +#: ../../admin/access.php:40 +msgid "Your new Access List Entry has been created" +msgstr "" + +#: ../../admin/access.php:45 +msgid "Access List Entry updated" +msgstr "" + +#: ../../admin/mail.php:57 +msgid "E-mail Sent" +msgstr "" + +#: ../../admin/mail.php:58 +msgid "Your E-mail was successfully sent." +msgstr "" + +#: ../../admin/system.php:64 +msgid "Export Failed" +msgstr "" + +#: ../../templates/rightbar.inc.php:25 +#: ../../templates/show_localplay_control.inc.php:28 +msgid "Play" +msgstr "" + +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_album_row.inc.php:45 +#: ../../templates/show_artist_row.inc.php:32 +#: ../../templates/show_playlist_row.inc.php:32 +msgid "Batch Download" +msgstr "" + +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:40 +#: ../../templates/show_localplay.inc.php:32 +msgid "Clear Playlist" +msgstr "" + +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" +msgstr "" + +#: ../../templates/rightbar.inc.php:100 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_manage_democratic.inc.php:52 +msgid "Not Enough Data" +msgstr "" + +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" #: ../../templates/show_install_account.inc.php:32 +#: ../../templates/show_install.inc.php:32 #: ../../templates/show_install_lang.inc.php:32 #: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 msgid "Ampache Installation" msgstr "" #: ../../templates/show_install_account.inc.php:39 +#: ../../templates/show_install.inc.php:40 #: ../../templates/show_install_lang.inc.php:39 #: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 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 " @@ -716,9 +1187,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:42 +#: ../../templates/show_install.inc.php:43 #: ../../templates/show_install_lang.inc.php:42 #: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -730,9 +1201,9 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:45 +#: ../../templates/show_install.inc.php:47 #: ../../templates/show_install_lang.inc.php:46 #: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 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 " @@ -741,8 +1212,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 #: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_config.inc.php:48 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" @@ -751,8 +1222,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" #: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 #: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_config.inc.php:53 msgid "Step 3 - Setup Initial Account" msgstr "" @@ -767,835 +1238,724 @@ msgid "Create Admin Account" msgstr "" #: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:90 #: ../../templates/show_now_playing_row.inc.php:29 #: ../../templates/show_edit_user.inc.php:29 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:84 -#: ../../templates/show_user_registration.inc.php:98 #: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 msgid "Username" msgstr "" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:52 -#: ../../templates/show_user_registration.inc.php:126 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:52 -#: ../../modules/localplay/mpd.controller.php:216 -msgid "Password" -msgstr "" - #: ../../templates/show_install_account.inc.php:69 msgid "Create Account" msgstr "" -#: ../../templates/show_catalogs.inc.php:33 -#: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 -msgid "Path" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" -msgstr "" - -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_add_catalog.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/sidebar_admin.inc.php:4 +msgid "Add a Catalog" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:67 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_localplay.inc.php:30 -#: ../../templates/show_album.inc.php:43 -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:54 -msgid "Actions" +#: ../../templates/show_add_catalog.inc.php:27 +msgid "" +"In the form below enter either a local path (i.e. /data/music) or the URL to " +"a remote Ampache installation (i.e http://theotherampache.com)" msgstr "" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_add_catalog.inc.php:32 +msgid "Catalog Name" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:24 -msgid "XSPF Player" +#: ../../templates/show_add_catalog.inc.php:35 +#: ../../templates/show_edit_catalog.inc.php:29 +msgid "Auto-inserted Fields" msgstr "" -#: ../../templates/show_song.inc.php:22 -msgid "Details" +#: ../../templates/show_add_catalog.inc.php:36 +#: ../../templates/show_edit_catalog.inc.php:30 +msgid "album name" msgstr "" -#: ../../templates/show_song.inc.php:25 -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicates.inc.php:35 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:333 -msgid "Title" +#: ../../templates/show_add_catalog.inc.php:37 +#: ../../templates/show_edit_catalog.inc.php:31 +msgid "artist name" msgstr "" -#: ../../templates/show_song.inc.php:29 -#: ../../templates/sidebar_browse.inc.php:12 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:60 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:64 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:87 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:52 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/show_list_duplicates.inc.php:42 -#: ../../templates/show_list_duplicates.inc.php:87 -#: ../../templates/sidebar_home.inc.php:20 ../../server/stats.ajax.php:84 -#: ../../lib/class/song.class.php:362 -msgid "Artist" +#: ../../templates/show_add_catalog.inc.php:38 +#: ../../templates/show_edit_catalog.inc.php:32 +msgid "id3 comment" msgstr "" -#: ../../templates/show_song.inc.php:33 ../../templates/show_songs.inc.php:42 -#: ../../templates/show_songs.inc.php:61 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:42 -#: ../../templates/show_albums.inc.php:63 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:86 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/show_list_duplicates.inc.php:43 -#: ../../templates/show_list_duplicates.inc.php:88 -#: ../../templates/sidebar_home.inc.php:19 ../../lib/class/song.class.php:367 -msgid "Album" +#: ../../templates/show_add_catalog.inc.php:39 +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "genre" msgstr "" -#: ../../templates/show_song.inc.php:37 -#: ../../templates/sidebar_browse.inc.php:13 -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:62 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:56 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/class/song.class.php:380 ../../lib/ui.lib.php:608 -msgid "Genre" +#: ../../templates/show_add_catalog.inc.php:40 +#: ../../templates/show_edit_catalog.inc.php:34 +msgid "track number (padded with leading 0)" msgstr "" -#: ../../templates/show_song.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:45 -#: ../../templates/show_list_duplicates.inc.php:90 -#: ../../lib/class/song.class.php:337 -msgid "Bitrate" +#: ../../templates/show_add_catalog.inc.php:41 +#: ../../templates/show_edit_catalog.inc.php:35 +msgid "song title" msgstr "" -#: ../../templates/show_song.inc.php:45 -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_list_duplicates.inc.php:47 -#: ../../templates/show_list_duplicates.inc.php:92 -msgid "Filename" +#: ../../templates/show_add_catalog.inc.php:42 +#: ../../templates/show_edit_catalog.inc.php:36 +msgid "year" msgstr "" -#: ../../templates/show_song.inc.php:50 -msgid "Last Updated" +#: ../../templates/show_add_catalog.inc.php:43 +#: ../../templates/show_edit_catalog.inc.php:37 +msgid "other" msgstr "" -#: ../../templates/sidebar_browse.inc.php:3 -msgid "Browse By" +#: ../../templates/show_add_catalog.inc.php:48 +#: ../../templates/show_catalogs.inc.php:33 +#: ../../templates/show_catalogs.inc.php:61 +msgid "Path" msgstr "" -#: ../../templates/sidebar_browse.inc.php:10 -#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:42 -#: ../../templates/show_playlist_songs.inc.php:63 -msgid "Song Title" +#: ../../templates/show_add_catalog.inc.php:52 +#: ../../templates/show_edit_catalog.inc.php:41 +msgid "Catalog Type" msgstr "" -#: ../../templates/sidebar_browse.inc.php:14 -#: ../../templates/show_manage_democratic.inc.php:31 -#: ../../templates/show_playlist.inc.php:27 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:21 ../../lib/ui.lib.php:559 -msgid "Playlist" +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Local" msgstr "" -#: ../../templates/sidebar_browse.inc.php:15 -msgid "Radio Stations" +#: ../../templates/show_add_catalog.inc.php:56 +msgid "Remote" msgstr "" -#: ../../templates/sidebar_browse.inc.php:18 -msgid "Filters" +#: ../../templates/show_add_catalog.inc.php:61 +#: ../../templates/show_edit_catalog.inc.php:45 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/sidebar_browse.inc.php:23 -msgid "Minimum Count" +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/sidebar_browse.inc.php:25 -msgid "Rated" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Filename Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:28 -msgid "Unplayed" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "Folder Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:31 -msgid "Show Art" +#: ../../templates/show_add_catalog.inc.php:70 +#: ../../templates/show_edit_catalog.inc.php:58 +msgid "(no leading or ending '/')" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:673 ../../lib/preferences.php:341 -msgid "Never" +#: ../../templates/show_add_catalog.inc.php:75 +#: ../../templates/show_admin_tools.inc.php:84 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:305 ../../lib/class/user.class.php:677 -#: ../../lib/class/localplay.class.php:653 ../../lib/general.lib.php:505 -#: ../../modules/localplay/httpq.controller.php:379 -#: ../../modules/localplay/mpd.controller.php:476 -#: ../../modules/localplay/icecast.controller.php:292 -msgid "Unknown" +#: ../../templates/show_add_catalog.inc.php:79 +msgid "Build Playlists from m3u Files" msgstr "" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:37 -#: ../../templates/show_user_registration.inc.php:108 -#: ../../templates/show_add_user.inc.php:37 -msgid "Full Name" +#: ../../templates/show_add_catalog.inc.php:85 +msgid "Add Catalog" msgstr "" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_localplay_status.inc.php:26 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:102 -msgid "Last Seen" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Increase Volume" msgstr "" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:104 -msgid "Activity" +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Decrease Volume" msgstr "" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Mute" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/show_localplay_status.inc.php:32 +msgid "Volume" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/show_localplay_status.inc.php:34 +msgid "Repeat" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:41 -#: ../../server/ajax.server.php:312 -msgid "Recently Played" +#: ../../templates/show_localplay_status.inc.php:37 +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:17 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" msgstr "" -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:63 -#: ../../templates/show_localplay_playlist.inc.php:30 -#: ../../templates/show_localplay_playlist.inc.php:56 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 ../../lib/class/song.class.php:353 -msgid "Track" +#: ../../templates/show_playlists.inc.php:33 +#: ../../templates/show_playlists.inc.php:50 +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +#: ../../templates/show_artists.inc.php:34 +#: ../../templates/show_artists.inc.php:51 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:62 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:75 +#: ../../templates/show_recently_played.inc.php:89 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:67 +#: ../../templates/show_albums.inc.php:38 +#: ../../templates/show_albums.inc.php:59 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:52 +#: ../../templates/show_add_live_stream.inc.php:74 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_catalog_row.inc.php:28 +msgid "Add" msgstr "" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:64 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -#: ../../lib/class/song.class.php:349 -msgid "Time" +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:51 +msgid "Playlist Name" msgstr "" -#: ../../templates/show_objects.inc.php:43 -#: ../../templates/show_manage_democratic.inc.php:52 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/rightbar.inc.php:93 -msgid "Not Enough Data" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:52 +msgid "# Songs" msgstr "" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_playlists.inc.php:53 +msgid "Owner" msgstr "" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:54 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:30 +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:67 +#: ../../templates/show_album.inc.php:43 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:64 +msgid "Actions" msgstr "" -#: ../../templates/show_song_row.inc.php:34 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:55 -msgid "Download" +#: ../../templates/show_album_row.inc.php:40 +#: ../../templates/show_song_row.inc.php:37 +msgid "Post Shout" msgstr "" -#: ../../templates/show_song_row.inc.php:39 -#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_album_row.inc.php:49 #: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_song_row.inc.php:46 #: ../../templates/show_artist_row.inc.php:36 -#: ../../templates/show_album_row.inc.php:44 +#: ../../templates/show_live_stream_row.inc.php:31 #: ../../templates/show_playlist_row.inc.php:36 msgid "Edit" msgstr "" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" -msgstr "" - -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -msgid "File" -msgstr "" - -#: ../../templates/show_flag.inc.php:49 -msgid "Item" -msgstr "" - -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" msgstr "" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" msgstr "" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:299 -msgid "Re-encode" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:302 -msgid "Other" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" msgstr "" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_similar_artists.inc.php:78 +#: ../../templates/show_confirmation.inc.php:27 +msgid "Cancel" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 -msgid "Found" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_edit_playlist_song_row.inc.php:44 -#: ../../templates/show_edit_song_row.inc.php:43 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/sidebar_browse.inc.php:3 +msgid "Browse By" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" +#: ../../templates/sidebar_browse.inc.php:10 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:63 +#: ../../templates/show_playlist_songs.inc.php:42 +#: ../../templates/show_playlist_songs.inc.php:63 +msgid "Song Title" msgstr "" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/sidebar_browse.inc.php:18 +msgid "Filters" msgstr "" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/sidebar_browse.inc.php:23 +msgid "Minimum Count" msgstr "" -#: ../../templates/show_random_albums.inc.php:23 -msgid "Albums of the Moment" +#: ../../templates/sidebar_browse.inc.php:25 +msgid "Rated" msgstr "" -#: ../../templates/show_random_albums.inc.php:46 -#: ../../templates/show_album.inc.php:45 -msgid "Play Album" +#: ../../templates/sidebar_browse.inc.php:27 +msgid "Unplayed" msgstr "" -#: ../../templates/show_localplay_status.inc.php:51 -msgid "Volume" +#: ../../templates/sidebar_browse.inc.php:30 +msgid "Show Art" msgstr "" -#: ../../templates/show_localplay_status.inc.php:55 -msgid "Repeat" +#: ../../templates/show_user_stats.inc.php:22 +msgid "Favorites" msgstr "" -#: ../../templates/show_localplay_status.inc.php:61 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:17 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" msgstr "" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/show_random.inc.php:22 +msgid "Play Random Selection" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" +#: ../../templates/show_random.inc.php:26 +msgid "Item count" msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" +#: ../../templates/show_random.inc.php:41 +msgid "From genre" msgstr "" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +#: ../../templates/show_song.inc.php:41 +msgid "Length" msgstr "" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:50 -msgid "Level" +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +#: ../../templates/show_search.inc.php:121 +msgid "Unlimited" msgstr "" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_random.inc.php:51 +#: ../../templates/show_random.inc.php:52 +msgid "minutes" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_random.inc.php:62 #: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_access_list.inc.php:49 msgid "Type" msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:101 -msgid "Fullname" -msgstr "" - -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:103 -msgid "Registration Date" -msgstr "" - -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:106 -msgid "Last Ip" -msgstr "" - -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:109 -msgid "On-line" -msgstr "" - -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" -msgstr "" - -#: ../../templates/show_manage_democratic.inc.php:32 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" +#: ../../templates/show_random.inc.php:65 +msgid "Standard" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:58 -msgid "Create New Playlist" +#: ../../templates/show_random.inc.php:66 +msgid "Less Played" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_search.inc.php:91 -msgid "Rating" +#: ../../templates/show_random.inc.php:67 +msgid "Full Albums" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:35 -#: ../../templates/show_recently_played.inc.php:85 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -#: ../../templates/show_list_duplicates.inc.php:41 -#: ../../templates/show_list_duplicates.inc.php:86 -msgid "Song" +#: ../../templates/show_random.inc.php:68 +msgid "Full Artist" msgstr "" -#: ../../templates/show_install_config.inc.php:49 -#: ../../templates/show_install.inc.php:56 -msgid "Step 2 - Creating the Ampache.cfg.php file" +#: ../../templates/show_random.inc.php:70 +msgid "Highest Rated" msgstr "" -#: ../../templates/show_install_config.inc.php:51 -msgid "" -"This steps takes the basic config values, and first attempts to write them " -"out directly to your webserver. If access is denied it will prompt you to " -"download the config file. Please put the downloaded config file in /config" +#: ../../templates/show_random.inc.php:76 +msgid "From catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_random.inc.php:82 +msgid "Size Limit" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -msgid "Web Path" +#: ../../templates/show_random.inc.php:96 +msgid "Enqueue" msgstr "" -#: ../../templates/show_install_config.inc.php:64 -#: ../../templates/show_install.inc.php:65 -msgid "Desired Database Name" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "Starting New Song Search on" msgstr "" -#: ../../templates/show_install_config.inc.php:68 -#: ../../templates/show_install.inc.php:69 -msgid "MySQL Hostname" +#: ../../templates/show_adds_catalog.inc.php:23 +msgid "catalog" msgstr "" -#: ../../templates/show_install_config.inc.php:72 -msgid "MySQL Username" +#: ../../templates/show_adds_catalog.inc.php:25 +#: ../../templates/show_verify_catalog.inc.php:26 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Reading" msgstr "" -#: ../../templates/show_install_config.inc.php:76 -msgid "MySQL Password" +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" msgstr "" -#: ../../templates/show_install_config.inc.php:81 -msgid "Write Config" +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" msgstr "" -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "" +#: ../../templates/show_playlist_edit.inc.php:47 +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_flagged.inc.php:86 +#: ../../templates/show_play_selected.inc.php:64 +#, fuzzy +msgid "Update" +msgstr "ID3 " -#: ../../templates/show_install_config.inc.php:126 -msgid "Check for Config" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +#: ../../templates/show_user_activate.inc.php:48 +msgid "Login" msgstr "" -#: ../../templates/show_install_config.inc.php:132 -msgid "Continue to Step 3" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" msgstr "" -#: ../../templates/show_edit_user.inc.php:23 -msgid "Editing existing User" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" msgstr "" -#: ../../templates/show_edit_user.inc.php:44 -#: ../../templates/show_user_registration.inc.php:117 -#: ../../templates/show_add_user.inc.php:44 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" +#: ../../templates/show_login_form.inc.php:87 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_edit_user.inc.php:61 -#: ../../templates/show_user_registration.inc.php:135 -#: ../../templates/show_add_user.inc.php:61 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:55 +#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:70 +#: ../../templates/show_flagged.inc.php:42 +#: ../../templates/show_flagged.inc.php:78 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_access_list.inc.php:50 +#: ../../templates/show_localplay_instances.inc.php:29 +msgid "Action" msgstr "" -#: ../../templates/show_edit_user.inc.php:69 -#: ../../templates/show_add_user.inc.php:69 -msgid "User Access Level" +#: ../../templates/show_admin_tools.inc.php:47 +#: ../../templates/show_catalog_row.inc.php:29 +msgid "Verify" msgstr "" -#: ../../templates/show_edit_user.inc.php:83 -msgid "Update User" +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_catalog_row.inc.php:30 +msgid "Clean" msgstr "" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 -#: ../../templates/show_duplicates.inc.php:50 ../../lib/ui.lib.php:562 -msgid "Search" +#: ../../templates/show_admin_tools.inc.php:60 +#: ../../templates/show_catalog_row.inc.php:31 +msgid "Gather Art" msgstr "" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/show_admin_tools.inc.php:78 +#: ../../templates/show_catalogs.inc.php:55 +msgid "Clean All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Make Default" +#: ../../templates/show_admin_tools.inc.php:79 +#: ../../templates/show_catalogs.inc.php:54 +msgid "Verify All" msgstr "" -#: ../../templates/show_create_democratic.inc.php:39 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" +#: ../../templates/show_admin_tools.inc.php:80 +#: ../../templates/show_catalogs.inc.php:53 +msgid "Add to All" msgstr "" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" -msgstr "" +#: ../../templates/show_admin_tools.inc.php:81 +#: ../../templates/show_catalogs.inc.php:56 +#, fuzzy +msgid "Update All" +msgstr "ID3 " -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/sidebar_admin.inc.php:26 +msgid "Clear Catalog Stats" msgstr "" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:547 -msgid "Home" +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_admin.inc.php:21 +msgid "Other Tools" msgstr "" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" msgstr "" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:10 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../templates/show_localplay.inc.php:26 ../../lib/preferences.php:263 -msgid "Localplay" +#: ../../templates/show_admin_tools.inc.php:91 +#: ../../templates/sidebar_admin.inc.php:25 +msgid "Clear Now Playing" msgstr "" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:565 -msgid "Preferences" +#: ../../templates/show_admin_tools.inc.php:92 +#: ../../templates/header.inc.php:90 +msgid "Generate New Config" msgstr "" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:67 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" msgstr "" -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_localplay_playlist.inc.php:22 -#: ../../templates/show_localplay.inc.php:43 -msgid "Current Playlist" +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +msgid "File" msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/show_flag.inc.php:49 +msgid "Item" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:75 +msgid "Flag" msgstr "" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" +#: ../../templates/sidebar.inc.php:28 +msgid "Browse" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" +#: ../../templates/sidebar.inc.php:66 +msgid "Logout" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" +#: ../../templates/sidebar_localplay.inc.php:13 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:40 -#: ../../templates/show_list_duplicates.inc.php:85 -#: ../../lib/preferences.php:246 -msgid "Disable" +#: ../../templates/sidebar_localplay.inc.php:14 +msgid "Show instances" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/sidebar_localplay.inc.php:16 +#: ../../templates/sidebar_home.inc.php:12 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_install.inc.php:54 -msgid "" -"This step creates and inserts the Ampache database, as such please provide a " -"mysql account with database creation rights. This step may take a while " -"depending upon the speed of your computer" +#: ../../templates/sidebar_localplay.inc.php:20 +msgid "Active Instance" msgstr "" -#: ../../templates/show_install.inc.php:61 -msgid "Insert Ampache Database" +#: ../../templates/sidebar_localplay.inc.php:39 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_install.inc.php:73 -msgid "MySQL Administrative Username" +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_user_registration.inc.php:85 +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_add_user.inc.php:37 +msgid "Full Name" msgstr "" -#: ../../templates/show_install.inc.php:77 -msgid "MySQL Administrative Password" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_install.inc.php:81 -msgid "Create Database User for New Database" +#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 +msgid "Last Seen" msgstr "" -#: ../../templates/show_install.inc.php:85 -msgid "Ampache Database Username" +#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 +msgid "Activity" msgstr "" -#: ../../templates/show_install.inc.php:89 -msgid "Ampache Database User Password" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" msgstr "" -#: ../../templates/show_install.inc.php:93 -msgid "Overwrite Existing" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" msgstr "" -#: ../../templates/show_install.inc.php:98 -msgid "Insert Database" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" msgstr "" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" +#: ../../templates/show_artist_box.inc.php:23 +#: ../../templates/show_artist_box.inc.php:26 +msgid "Albums by" msgstr "" -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Show All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Add All Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" +#: ../../templates/show_artist_box.inc.php:36 +msgid "Add Random Songs By" msgstr "" -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" +#: ../../templates/show_artist_box.inc.php:38 +#: ../../templates/show_album.inc.php:52 +msgid "Update from tags" msgstr "" -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" +#: ../../templates/show_artist_box.inc.php:41 +msgid "Recommend Similar" msgstr "" -#: ../../templates/show_add_playlist.inc.php:24 -msgid "Create a new playlist" +#: ../../templates/show_songs.inc.php:48 +#: ../../templates/show_now_playing_row.inc.php:36 +#: ../../templates/show_search.inc.php:91 +msgid "Rating" msgstr "" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" +#: ../../templates/show_localplay_playlist.inc.php:23 +#: ../../templates/show_democratic.inc.php:22 +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" msgstr "" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 -#: ../../templates/show_edit_song.inc.php:40 -#: ../../templates/show_edit_song.inc.php:48 -#: ../../templates/show_edit_song.inc.php:56 -msgid "OR" +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_flagged.inc.php:68 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_disabled_songs.inc.php:52 +msgid "No Records Found" msgstr "" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:36 +msgid "Preference" msgstr "" -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_user_preferences.inc.php:37 +msgid "Value" msgstr "" -#: ../../templates/show_playlist.inc.php:30 -msgid "Normalize Tracks" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" msgstr "" -#: ../../templates/show_playlist.inc.php:31 -msgid "Play All" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" msgstr "" -#: ../../templates/show_playlist.inc.php:32 -msgid "Play Random" +#: ../../templates/show_preference_box.inc.php:49 +#: ../../templates/show_user_preferences.inc.php:41 +msgid "description" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_add_user.inc.php:76 +msgid "Content Manager" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:12 -msgid "Add Instance" +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_add_user.inc.php:77 +msgid "Catalog Manager" msgstr "" #: ../../templates/header.inc.php:71 @@ -1606,165 +1966,164 @@ msgstr "" msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_albums.inc.php:40 -#: ../../templates/show_albums.inc.php:61 -msgid "Cover" -msgstr "" - -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -#: ../../lib/class/song.class.php:371 -msgid "Year" -msgstr "" - -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +msgid "Registration" msgstr "" -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -msgid "Preference" +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" +#: ../../templates/show_user_registration.inc.php:94 +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:34 +msgid "E-mail" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" +#: ../../templates/show_user_registration.inc.php:112 +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:47 +msgid "Confirm Password" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" +#: ../../templates/show_edit_album.inc.php:41 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_artist.inc.php:35 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:88 -msgid "Last Played" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" msgstr "" -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" +#: ../../templates/show_install.inc.php:38 +#: ../../templates/show_install_lang.inc.php:37 +msgid "Requirements" msgstr "" -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" +#: ../../templates/show_install.inc.php:44 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install_config.inc.php:42 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" msgstr "" -#: ../../templates/show_search.inc.php:72 -msgid "Played" +#: ../../templates/show_install.inc.php:54 +msgid "" +"This step creates and inserts the Ampache database, as such please provide a " +"mysql account with database creation rights. This step may take a while " +"depending upon the speed of your computer" msgstr "" -#: ../../templates/show_search.inc.php:76 -msgid "Yes" +#: ../../templates/show_install.inc.php:56 +#: ../../templates/show_install_config.inc.php:49 +msgid "Step 2 - Creating the Ampache.cfg.php file" msgstr "" -#: ../../templates/show_search.inc.php:77 -msgid "No" +#: ../../templates/show_install.inc.php:61 +msgid "Insert Ampache Database" msgstr "" -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" +#: ../../templates/show_install.inc.php:65 +#: ../../templates/show_install_config.inc.php:64 +msgid "Desired Database Name" msgstr "" -#: ../../templates/show_search.inc.php:95 -msgid "One Star" +#: ../../templates/show_install.inc.php:69 +#: ../../templates/show_install_config.inc.php:68 +msgid "MySQL Hostname" msgstr "" -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" +#: ../../templates/show_install.inc.php:73 +msgid "MySQL Administrative Username" msgstr "" -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" +#: ../../templates/show_install.inc.php:77 +msgid "MySQL Administrative Password" msgstr "" -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" +#: ../../templates/show_install.inc.php:81 +msgid "Create Database User for New Database" msgstr "" -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" +#: ../../templates/show_install.inc.php:85 +msgid "Ampache Database Username" msgstr "" -#: ../../templates/show_search.inc.php:102 -msgid "Operator" +#: ../../templates/show_install.inc.php:89 +msgid "Ampache Database User Password" msgstr "" -#: ../../templates/show_search.inc.php:105 -msgid "AND" +#: ../../templates/show_install.inc.php:93 +msgid "Overwrite Existing" msgstr "" -#: ../../templates/show_search.inc.php:111 -msgid "Method" +#: ../../templates/show_install.inc.php:98 +msgid "Insert Database" msgstr "" -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/show_search.inc.php:115 -msgid "Exact" +#: ../../templates/show_add_playlist.inc.php:24 +msgid "Create a new playlist" msgstr "" -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_create_democratic.inc.php:39 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" msgstr "" -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:68 -msgid "Unlimited" +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:6 -msgid "Add Radio Station" +#: ../../templates/show_edit_song.inc.php:40 +#: ../../templates/show_edit_song.inc.php:48 +#: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc.php:106 +msgid "OR" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" +#: ../../templates/show_edit_catalog.inc.php:22 +msgid "Settings for" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:55 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:54 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" msgstr "" #: ../../templates/show_edit_access.inc.php:22 @@ -1772,27 +2131,28 @@ msgid "Edit ACL" msgstr "" #: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:61 +#: ../../templates/show_add_access.inc.php:63 msgid "ACL Type" msgstr "" #: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:64 +#: ../../templates/show_add_access.inc.php:66 msgid "Stream Access" msgstr "" #: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:65 +#: ../../templates/show_add_access.inc.php:67 msgid "Web Interface" msgstr "" #: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:66 +#: ../../templates/show_add_access.inc.php:68 msgid "Local Network Definition" msgstr "" #: ../../templates/show_edit_access.inc.php:37 -msgid "XML-RPC" +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" #: ../../templates/show_edit_access.inc.php:43 @@ -1800,394 +2160,362 @@ msgstr "" msgid "Start IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:49 -#: ../../templates/show_add_access.inc.php:38 +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 msgid "End IP Address" msgstr "" -#: ../../templates/show_edit_access.inc.php:62 -#: ../../templates/show_add_access.inc.php:75 +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 msgid "Remote Key" msgstr "" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:53 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:271 -msgid "View" -msgstr "" - -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:54 -#: ../../lib/class/access.class.php:274 -msgid "Read" +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_access_list.inc.php:46 +#: ../../templates/show_add_access.inc.php:52 +msgid "Level" msgstr "" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:55 -#: ../../lib/class/access.class.php:277 -msgid "Read/Write" +#: ../../templates/show_random_albums.inc.php:23 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_user_registration.inc.php:54 -msgid "Ampache New User Registration" +#: ../../templates/show_random_albums.inc.php:46 +msgid "Play Album" msgstr "" -#: ../../templates/show_user_registration.inc.php:69 -msgid "User Agreement" +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:91 +#: ../../templates/show_now_playing_row.inc.php:45 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +msgid "Song" msgstr "" -#: ../../templates/show_user_registration.inc.php:79 -msgid "I Accept" +#: ../../templates/show_recently_played.inc.php:41 +#: ../../templates/show_recently_played.inc.php:94 +msgid "Last Played" msgstr "" -#: ../../templates/show_user_registration.inc.php:93 -msgid "User Information" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_user_registration.inc.php:155 -msgid "Clear Info" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_user_registration.inc.php:156 -msgid "Register User" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" msgstr "" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -msgid "Login" +#: ../../templates/show_ip_history.inc.php:23 +msgid "IP History" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +#: ../../templates/show_flagged.inc.php:91 +msgid "Show All" msgstr "" -#: ../../templates/show_login_form.inc.php:87 -msgid "Message of the Day" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:58 ../../stats.php:61 -msgid "Most Popular Artists" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:47 ../../stats.php:55 -msgid "Most Popular Albums" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +#: ../../templates/show_song.inc.php:66 ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +msgid "Filename" msgstr "" -#: ../../templates/show_all_popular.inc.php:32 ../../stats.php:67 -msgid "Most Popular Genres" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" msgstr "" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:69 -msgid "Most Popular Songs" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" +#: ../../templates/show_mail_users.inc.php:23 +msgid "Send E-mail to Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" +#: ../../templates/show_mail_users.inc.php:27 +msgid "Mail to" msgstr "" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" msgstr "" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" +#: ../../templates/show_mail_users.inc.php:42 +#: ../../templates/show_local_catalog_info.inc.php:24 +msgid "Catalog Statistics" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:537 -msgid "Genres" +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +#: ../../templates/show_stats_popular.inc.php:25 +msgid "Most Popular Albums" msgstr "" -#: ../../templates/show_mail_users.inc.php:24 -msgid "Send E-mail to Users" +#: ../../templates/show_mail_users.inc.php:53 +msgid "Latest Artist Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:28 -msgid "Mail to" +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +#: ../../templates/show_stats_popular.inc.php:31 +msgid "Most Popular Artists" msgstr "" -#: ../../templates/show_mail_users.inc.php:54 -msgid "Latest Artist Additions" +#: ../../templates/show_mail_users.inc.php:64 +msgid "Latest Album Additions" msgstr "" -#: ../../templates/show_mail_users.inc.php:65 -msgid "Latest Album Additions" +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:75 +#: ../../templates/show_mail_users.inc.php:74 msgid "Flagged Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:79 +#: ../../templates/show_mail_users.inc.php:78 #: ../../templates/show_admin_info.inc.php:34 msgid "Disabled Songs" msgstr "" -#: ../../templates/show_mail_users.inc.php:87 +#: ../../templates/show_mail_users.inc.php:86 msgid "Most Popular Threshold in days" msgstr "" -#: ../../templates/show_mail_users.inc.php:98 +#: ../../templates/show_mail_users.inc.php:97 msgid "Subject" msgstr "" -#: ../../templates/show_mail_users.inc.php:105 +#: ../../templates/show_mail_users.inc.php:104 msgid "Message" msgstr "" -#: ../../templates/show_mail_users.inc.php:114 +#: ../../templates/show_mail_users.inc.php:112 msgid "Send Mail" msgstr "" -#: ../../templates/show_add_user.inc.php:23 -msgid "Adding a New User" -msgstr "" - -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:60 -msgid "Content Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_preference_box.inc.php:61 -msgid "Catalog Manager" -msgstr "" - -#: ../../templates/show_add_user.inc.php:84 -#: ../../templates/sidebar_admin.inc.php:11 -msgid "Add User" -msgstr "" - -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" -msgstr "" - -#: ../../templates/show_add_access.inc.php:67 -msgid "RPC" -msgstr "" - -#: ../../templates/show_add_access.inc.php:72 -msgid "RPC Options" -msgstr "" - -#: ../../templates/show_add_access.inc.php:82 -msgid "Create ACL" -msgstr "" - -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -msgid "Value" -msgstr "" - -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" +#: ../../templates/sidebar_home.inc.php:2 +msgid "Information" msgstr "" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/sidebar_home.inc.php:4 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_preference_box.inc.php:49 -msgid "description" +#: ../../templates/sidebar_home.inc.php:6 +#: ../../templates/show_add_live_stream.inc.php:24 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" +#: ../../templates/sidebar_home.inc.php:13 +msgid "Manage Playlist" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" +#: ../../templates/sidebar_home.inc.php:22 +msgid "Advanced" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:40 -msgid "Private" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_duplicates.inc.php:25 -msgid "Find Duplicates" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" msgstr "" -#: ../../templates/show_duplicates.inc.php:29 -msgid "Search Type" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" msgstr "" -#: ../../templates/show_duplicates.inc.php:36 -msgid "Artist and Title" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" msgstr "" -#: ../../templates/show_duplicates.inc.php:37 -msgid "Artist, Album and Title" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" msgstr "" -#: ../../templates/show_duplicates.inc.php:44 -msgid "Select Best Guess" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:23 -#: ../../lib/class/catalog.class.php:972 -msgid "Starting Album Art Search" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../lib/class/catalog.class.php:973 -msgid "Searched" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:20 -#: ../../templates/show_adds_catalog.inc.php:24 -#: ../../lib/class/catalog.class.php:946 ../../lib/class/catalog.class.php:973 -#: ../../lib/preferences.php:255 ../../lib/preferences.php:297 -#: ../../lib/ui.lib.php:892 ../../lib/ui.lib.php:920 -msgid "None" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" msgstr "" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" msgstr "" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" msgstr "" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Play All Songs By" +#: ../../templates/show_confirmation.inc.php:25 +msgid "Continue" msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Play Random Songs By" +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:72 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:52 -msgid "Update from tags" +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:73 +msgid "Object" msgstr "" -#: ../../templates/show_artist_box.inc.php:39 -msgid "Find duplicate artists" +#: ../../templates/show_flagged.inc.php:41 +#: ../../templates/show_flagged.inc.php:77 +msgid "Status" msgstr "" -#: ../../templates/show_artist_box.inc.php:42 -msgid "Recommend Similar" +#: ../../templates/show_flagged.inc.php:83 +msgid "Reject" msgstr "" -#: ../../templates/show_random.inc.php:22 -msgid "Play Random Selection" +#: ../../templates/show_flagged.inc.php:84 +msgid "Approve" msgstr "" -#: ../../templates/show_random.inc.php:26 -msgid "Item count" +#: ../../templates/show_song.inc.php:22 +msgid "Details" msgstr "" -#: ../../templates/show_random.inc.php:41 -msgid "From genre" +#: ../../templates/show_song.inc.php:49 +msgid "Label" msgstr "" -#: ../../templates/show_random.inc.php:50 -msgid "Standard" +#: ../../templates/show_song.inc.php:53 +msgid "Language" msgstr "" -#: ../../templates/show_random.inc.php:51 -msgid "Less Played" +#: ../../templates/show_song.inc.php:57 +msgid "Catalog Number" msgstr "" -#: ../../templates/show_random.inc.php:52 -msgid "Full Albums" +#: ../../templates/show_song.inc.php:72 +msgid "Last Updated" msgstr "" -#: ../../templates/show_random.inc.php:53 -msgid "Full Artist" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" msgstr "" -#: ../../templates/show_random.inc.php:54 -msgid "Minutes" +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" msgstr "" -#: ../../templates/show_random.inc.php:59 -msgid "From catalog" +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" msgstr "" -#: ../../templates/show_random.inc.php:65 -msgid "Size Limit" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:23 +msgid "Find Duplicates" msgstr "" -#: ../../templates/show_random.inc.php:79 -msgid "Enqueue" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" msgstr "" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:644 -msgid "Now Playing" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" msgstr "" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_playlist.inc.php:30 +msgid "Normalize Tracks" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" +#: ../../templates/show_playlist.inc.php:31 +msgid "Add All" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_playlist.inc.php:32 +msgid "Add Random" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:13 -msgid "Show instances" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:100 +msgid "Next" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:14 -#: ../../templates/sidebar_home.inc.php:12 -msgid "Show Playlist" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:18 -msgid "Active Instance" +#: ../../templates/show_manage_democratic.inc.php:32 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Localplay Disabled" +#: ../../templates/show_manage_democratic.inc.php:58 +msgid "Create New Playlist" msgstr "" #: ../../templates/show_get_albumart.inc.php:23 @@ -2206,86 +2534,27 @@ msgstr "" msgid "Get Art" msgstr "" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" -msgstr "" - -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +msgid "Description" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +msgid "Version" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" +#: ../../templates/show_plugins.inc.php:42 +#: ../../templates/show_localplay_controllers.inc.php:48 +msgid "Activate" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" msgstr "" #: ../../templates/show_democratic_playlist.inc.php:38 @@ -2305,6 +2574,19 @@ msgstr "" msgid "Add Vote" msgstr "" +#: ../../templates/show_all_popular.inc.php:32 +#: ../../templates/show_stats_popular.inc.php:37 +msgid "Most Popular Genres" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" +msgstr "" + +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" +msgstr "" + #: ../../templates/show_edit_artist.inc.php:23 msgid "Edit Artist" msgstr "" @@ -2313,226 +2595,239 @@ msgstr "" msgid "Update Artist" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" +#: ../../templates/show_play_selected.inc.php:28 +msgid "Play Selected" msgstr "" -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" +#: ../../templates/show_play_selected.inc.php:31 +msgid "Download Selected" msgstr "" -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_play_selected.inc.php:40 +msgid "Set Track Numbers" msgstr "" -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" +#: ../../templates/show_play_selected.inc.php:41 +msgid "Remove Selected Tracks" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:257 -msgid "Stream" +#: ../../templates/show_play_selected.inc.php:47 +msgid "Add to" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:10 ../../lib/preferences.php:260 -msgid "Democratic" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:265 -msgid "Flash Player" +#: ../../templates/show_add_user.inc.php:84 +#: ../../templates/sidebar_admin.inc.php:11 +msgid "Add User" msgstr "" -#: ../../templates/show_play_selected.inc.php:28 -msgid "Play Selected" +#: ../../templates/show_embed_xspf.inc.php:24 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_play_selected.inc.php:31 -msgid "Download Selected" +#: ../../templates/show_albums.inc.php:40 +#: ../../templates/show_albums.inc.php:61 +msgid "Cover" msgstr "" -#: ../../templates/show_play_selected.inc.php:40 -msgid "Set Track Numbers" +#: ../../templates/show_album.inc.php:45 +msgid "Add Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:41 -msgid "Remove Selected Tracks" +#: ../../templates/show_album.inc.php:46 +msgid "Add Random from Album" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Add to" +#: ../../templates/show_album.inc.php:48 +msgid "Reset Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_album.inc.php:50 +msgid "Find Album Art" msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_song_row.inc.php:42 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" msgstr "" -#: ../../templates/show_add_catalog.inc.php:27 -msgid "" -"In the form below enter either a local path (i.e. /data/music) or the URL to " -"a remote Ampache installation (i.e http://theotherampache.com)" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" msgstr "" -#: ../../templates/show_add_catalog.inc.php:32 -msgid "Catalog Name" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" msgstr "" -#: ../../templates/show_add_catalog.inc.php:55 -msgid "Local" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -#: ../../templates/show_add_catalog.inc.php:56 -msgid "Remote" +#: ../../templates/show_verify_catalog.inc.php:23 +msgid "Updating the" msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" +#: ../../templates/show_verify_catalog.inc.php:23 +#: ../../templates/show_add_live_stream.inc.php:67 +#: ../../templates/show_clean_catalog.inc.php:23 +msgid "Catalog" msgstr "" -#: ../../templates/show_add_catalog.inc.php:65 -msgid "Filename Pattern" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." msgstr "" -#: ../../templates/show_add_catalog.inc.php:79 -msgid "Build Playlists from m3u Files" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_add_catalog.inc.php:85 -msgid "Add Catalog" +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_live_stream_row.inc.php:56 +#: ../../templates/show_edit_album_row.inc.php:45 +#: ../../templates/show_edit_song_row.inc.php:43 +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_edit_playlist_song_row.inc.php:44 +msgid "Save Changes" msgstr "" -#: ../../templates/show_localplay.inc.php:32 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" +#: ../../templates/show_big_art.inc.php:29 +msgid "Album Art" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/sidebar_admin.inc.php:5 +msgid "Show Catalogs" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/sidebar_admin.inc.php:9 +msgid "User Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/sidebar_admin.inc.php:12 +msgid "Browse Users" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" +#: ../../templates/sidebar_admin.inc.php:15 +msgid "Access Control" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" +#: ../../templates/sidebar_admin.inc.php:17 +msgid "Add ACL" msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" +#: ../../templates/sidebar_admin.inc.php:18 +msgid "Show ACL(s)" msgstr "" -#: ../../templates/show_artist_row.inc.php:32 -#: ../../templates/show_album_row.inc.php:40 -#: ../../templates/show_playlist_row.inc.php:32 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/sidebar_admin.inc.php:24 +msgid "Mail Users" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/list_header.inc.php:99 +msgid "Prev" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" +#: ../../templates/sidebar_preferences.inc.php:9 +msgid "Sections" msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:26 -msgid "Duplicate Songs" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:44 -#: ../../templates/show_list_duplicates.inc.php:89 -msgid "Length" +#: ../../templates/sidebar_preferences.inc.php:32 +msgid "Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:46 -#: ../../templates/show_list_duplicates.inc.php:91 -msgid "Size" +#: ../../templates/sidebar_preferences.inc.php:34 +msgid "Localplay Modules" msgstr "" -#: ../../templates/show_list_duplicates.inc.php:96 -msgid "Disable Songs" +#: ../../templates/sidebar_preferences.inc.php:35 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:2 -msgid "Information" +#: ../../templates/show_account.inc.php:40 +msgid "New Password" msgstr "" -#: ../../templates/sidebar_home.inc.php:4 -msgid "Currently Playing" +#: ../../templates/show_account.inc.php:53 +msgid "Clear Stats" msgstr "" -#: ../../templates/sidebar_home.inc.php:5 ../../lib/ui.lib.php:612 -msgid "Statistics" +#: ../../templates/show_account.inc.php:64 +msgid "Update Account" msgstr "" -#: ../../templates/sidebar_home.inc.php:13 -msgid "Manage Playlist" +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:54 +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/sidebar_home.inc.php:22 -msgid "Advanced" +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:55 +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/sidebar_admin.inc.php:5 -msgid "Show Catalogs" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "Editing" msgstr "" -#: ../../templates/sidebar_admin.inc.php:9 -msgid "User Tools" +#: ../../templates/show_preferences.inc.php:28 +#: ../../templates/show_user_preferences.inc.php:28 +msgid "preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:12 -msgid "Browse Users" +#: ../../templates/show_preferences.inc.php:36 +#: ../../templates/show_user_preferences.inc.php:50 +msgid "Update Preferences" msgstr "" -#: ../../templates/sidebar_admin.inc.php:15 -msgid "Access Control" +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/show_test.inc.php:32 +msgid "Ampache Debug" msgstr "" -#: ../../templates/sidebar_admin.inc.php:17 -msgid "Add ACL" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/sidebar_admin.inc.php:18 -msgid "Show ACL(s)" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" #: ../../templates/show_clean_catalog.inc.php:23 @@ -2543,14 +2838,6 @@ msgstr "" msgid "Checking" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" -msgstr "" - -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" -msgstr "" - #: ../../templates/show_test.inc.php:33 msgid "" "You've reached this page because a configuration error has occured. Debug " @@ -2630,6 +2917,11 @@ msgid "" "some features of ampache may not work correctly" msgstr "" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" +msgstr "" + #: ../../templates/show_test.inc.php:166 msgid "" "This attempts to read /config/ampache.cfg.php If this fails either the " @@ -2637,6 +2929,11 @@ msgid "" "\tit is not currently readable by your webserver." msgstr "" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" +msgstr "" + #: ../../templates/show_test.inc.php:189 msgid "" "This test makes sure that you have set all of the required configuration " @@ -2653,464 +2950,314 @@ msgid "" "cfg.php" msgstr "" -#: ../../templates/show_index.inc.php:49 -msgid "Newest Albums" -msgstr "" - -#: ../../templates/show_index.inc.php:54 -msgid "Newest Artists" -msgstr "" - -#: ../../templates/show_index.inc.php:59 -msgid "Newest Genres" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" -msgstr "" - -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" -msgstr "" - -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" -msgstr "" - -#: ../../templates/show_account.inc.php:40 -msgid "New Password" -msgstr "" - -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" -msgstr "" - -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" -msgstr "" - -#: ../../templates/list_header.inc.php:99 -msgid "Prev" -msgstr "" - -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" -msgstr "" - -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" -msgstr "" - -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:386 -msgid "Pure Random" -msgstr "" - -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:383 -msgid "Related Artist" -msgstr "" - -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:377 -msgid "Related Album" -msgstr "" - -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:380 -msgid "Related Genre" -msgstr "" - -#: ../../templates/show_album.inc.php:31 -#: ../../lib/class/catalog.class.php:1767 -#: ../../lib/class/catalog.class.php:1849 -#: ../../lib/class/catalog.class.php:1934 -msgid "Unknown (Orphaned)" -msgstr "" - -#: ../../templates/show_album.inc.php:46 -msgid "Play Random from Album" -msgstr "" - -#: ../../templates/show_album.inc.php:48 -msgid "Reset Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:50 -msgid "Find Album Art" -msgstr "" - -#: ../../templates/show_album.inc.php:58 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:90 -msgid "Find Missing Tracks" -msgstr "" - -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:51 -msgid "Playlist Name" -msgstr "" - -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:52 -msgid "# Songs" -msgstr "" - -#: ../../templates/show_playlists.inc.php:36 -#: ../../templates/show_playlists.inc.php:53 -msgid "Owner" -msgstr "" - -#: ../../activate.php:42 -msgid "No user with this name registered" -msgstr "" - -#: ../../activate.php:46 -msgid "The validation key used isn't correct." -msgstr "" - -#: ../../activate.php:51 -msgid "User activated" -msgstr "" - -#: ../../activate.php:51 -msgid "This User ID is activated and can be used" -msgstr "" - -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" -msgstr "" - -#: ../../democratic.php:80 -msgid "Playlist Cleared" -msgstr "" - -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" -msgstr "" - -#: ../../lib/class/flag.class.php:280 -msgid "Approved" -msgstr "" - -#: ../../lib/class/flag.class.php:281 -msgid "Pending" -msgstr "" - -#: ../../lib/class/flag.class.php:296 -msgid "Re-Tag" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" msgstr "" -#: ../../lib/class/song.class.php:333 ../../lib/class/song.class.php:337 -#: ../../lib/class/song.class.php:341 ../../lib/class/song.class.php:345 -#: ../../lib/class/song.class.php:349 ../../lib/class/song.class.php:353 -#: ../../lib/class/song.class.php:357 ../../lib/class/song.class.php:362 -#: ../../lib/class/song.class.php:367 ../../lib/class/song.class.php:371 -#: ../../lib/class/song.class.php:375 ../../lib/class/song.class.php:380 -msgid "updated to" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" msgstr "" -#: ../../lib/class/song.class.php:341 -msgid "Rate" +#: ../../templates/show_search.inc.php:72 +msgid "Played" msgstr "" -#: ../../lib/class/song.class.php:345 -msgid "Mode" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" msgstr "" -#: ../../lib/class/song.class.php:357 -msgid "Filesize" +#: ../../templates/show_search.inc.php:77 +msgid "No" msgstr "" -#: ../../lib/class/browse.class.php:542 -msgid "Manage Users" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" msgstr "" -#: ../../lib/class/browse.class.php:552 -msgid "Radion Stations" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" msgstr "" -#: ../../lib/class/browse.class.php:557 -msgid "Playlists" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" msgstr "" -#: ../../lib/class/catalog.class.php:403 ../../lib/class/catalog.class.php:740 -#: ../../lib/class/album.class.php:434 -msgid "Error: Unable to open" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../lib/class/catalog.class.php:409 ../../lib/class/catalog.class.php:452 -msgid "Error: Unable to change to directory" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../lib/class/catalog.class.php:480 -msgid "Error: Unable to get filesize for" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../lib/class/catalog.class.php:486 -msgid "is not readable by ampache" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../lib/class/catalog.class.php:937 -msgid "Starting Catalog Build" +#: ../../templates/show_search.inc.php:105 +msgid "AND" msgstr "" -#: ../../lib/class/catalog.class.php:941 -msgid "Running Remote Sync" +#: ../../templates/show_search.inc.php:111 +msgid "Method" msgstr "" -#: ../../lib/class/catalog.class.php:965 -#: ../../lib/class/catalog.class.php:1137 -msgid "Added Playlist From" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" msgstr "" -#: ../../lib/class/catalog.class.php:983 -msgid "Catalog Finished" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1166 -msgid "Total Time" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" msgstr "" -#: ../../lib/class/catalog.class.php:983 -#: ../../lib/class/catalog.class.php:1167 -msgid "Total Songs" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../lib/class/catalog.class.php:984 -#: ../../lib/class/catalog.class.php:1167 -msgid "Songs Per Seconds" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:62 +msgid "Last Verify" msgstr "" -#: ../../lib/class/catalog.class.php:1027 -msgid "No Update Needed" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:63 +msgid "Last Add" msgstr "" -#: ../../lib/class/catalog.class.php:1111 -msgid "Running Remote Update" +#: ../../templates/show_catalogs.inc.php:52 +msgid "Gather All Art" msgstr "" -#: ../../lib/class/catalog.class.php:1166 -msgid "Catalog Update Finished" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../lib/class/catalog.class.php:1187 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Error connecting to" +#: ../../templates/show_access_list.inc.php:38 +msgid "Add Entry" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Code" +#: ../../templates/show_access_list.inc.php:44 +msgid "Start Address" msgstr "" -#: ../../lib/class/catalog.class.php:1230 -#: ../../lib/class/catalog.class.php:1285 -msgid "Reason" +#: ../../templates/show_access_list.inc.php:45 +msgid "End Address" msgstr "" -#: ../../lib/class/catalog.class.php:1246 -msgid "Completed updating remote catalog(s)" +#: ../../templates/show_access_list.inc.php:48 +msgid "Key" msgstr "" -#: ../../lib/class/catalog.class.php:1362 -msgid "Catalog Root unreadable, stopping clean" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "Catalog Clean Done" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../lib/class/catalog.class.php:1419 -msgid "files removed" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" msgstr "" -#: ../../lib/class/catalog.class.php:1420 -msgid "Optimizing Tables" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../lib/class/catalog.class.php:1656 -msgid " FOUND" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../lib/class/catalog.class.php:1658 -msgid "Searching for new Album Art" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Update Finished." +#: ../../templates/show_install_config.inc.php:51 +msgid "" +"This steps takes the basic config values, and first attempts to write them " +"out directly to your webserver. If access is denied it will prompt you to " +"download the config file. Please put the downloaded config file in /config" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "Checked" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" -#: ../../lib/class/catalog.class.php:1706 -msgid "songs updated." +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" msgstr "" -#: ../../lib/class/localplay.class.php:647 -msgid "Stopped" +#: ../../templates/show_install_config.inc.php:72 +msgid "MySQL Username" msgstr "" -#: ../../lib/class/localplay.class.php:650 -msgid "Paused" +#: ../../templates/show_install_config.inc.php:76 +msgid "MySQL Password" msgstr "" -#: ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../templates/show_install_config.inc.php:81 +msgid "Write Config" msgstr "" -#: ../../lib/preferences.php:245 -msgid "Enable" +#: ../../templates/show_install_config.inc.php:126 +msgid "Check for Config" msgstr "" -#: ../../lib/preferences.php:272 -msgid "M3U" +#: ../../templates/show_install_config.inc.php:132 +msgid "Continue to Step 3" msgstr "" -#: ../../lib/preferences.php:273 -msgid "Simple M3U" +#: ../../templates/show_user_activate.inc.php:46 +msgid "User Activated" msgstr "" -#: ../../lib/preferences.php:274 -msgid "PLS" +#: ../../templates/show_user_activate.inc.php:48 +msgid "This User ID is activated and can be used" msgstr "" -#: ../../lib/preferences.php:275 -msgid "Asx" +#: ../../templates/show_user_activate.inc.php:51 +msgid "Validation Failed" msgstr "" -#: ../../lib/preferences.php:276 -msgid "RAM" +#: ../../templates/show_user_activate.inc.php:52 +msgid "The validation key used isn't correct" msgstr "" -#: ../../lib/preferences.php:277 -msgid "XSPF" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../lib/preferences.php:310 -msgid "Disabled" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Make Default" msgstr "" -#: ../../lib/preferences.php:332 -msgid "Send on Add" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../lib/preferences.php:333 -msgid "Send and Clear on Add" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../lib/preferences.php:334 -msgid "Clear on Send" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../lib/preferences.php:335 ../../lib/preferences.php:342 -msgid "Default" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../lib/preferences.php:343 -msgid "Always" +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" +#: ../../localplay.php:73 ../../localplay.php:81 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../ratings.php:32 +msgid "Rating Updated" msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" +#: ../../ratings.php:32 +msgid "Your rating for this object has been updated" msgstr "" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../login.php:69 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../login.php:83 +msgid "Unable to create new account" msgstr "" -#: ../../lib/general.lib.php:484 ../../lib/general.lib.php:495 -msgid "English" +#: ../../login.php:92 +msgid "No local account found" msgstr "" -#: ../../lib/general.lib.php:496 -msgid "British English" +#: ../../preferences.php:35 ../../preferences.php:65 +msgid "Server" msgstr "" -#: ../../lib/general.lib.php:502 -msgid "Turkish" +#: ../../preferences.php:91 +msgid "Error Update Failed" msgstr "" -#: ../../lib/general.lib.php:503 -msgid "Simplified Chinese" +#: ../../preferences.php:96 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/general.lib.php:580 -msgid "On" +#: ../../update.php:51 +msgid "Ampache Update" msgstr "" -#: ../../lib/general.lib.php:583 -msgid "Off" +#: ../../artists.php:48 ../../albums.php:163 +msgid "Starting Update from Tags" msgstr "" -#: ../../lib/ui.lib.php:92 -msgid "Error Access Denied" +#: ../../artists.php:52 ../../albums.php:167 +msgid "Update From Tags Complete" msgstr "" -#: ../../lib/ui.lib.php:550 -msgid "Upload" +#: ../../artists.php:53 ../../albums.php:168 +msgid "Return" msgstr "" -#: ../../lib/ui.lib.php:553 -msgid "Local Play" +#: ../../artists.php:186 +msgid "Show Artists starting with" msgstr "" -#: ../../lib/ui.lib.php:556 -msgid "Random Play" +#: ../../playlist.php:57 +msgid "Playlist Created" msgstr "" -#: ../../lib/ui.lib.php:568 ../../lib/ui.lib.php:572 -msgid "Admin-Catalog" +#: ../../playlist.php:57 +msgid " has been created" msgstr "" -#: ../../lib/ui.lib.php:576 -msgid "Admin-User Management" +#: ../../playlist.php:78 +msgid "Playlist Updated" msgstr "" -#: ../../lib/ui.lib.php:580 -msgid "Admin-Mail Users" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/ui.lib.php:584 -msgid "Admin-Manage Access Lists" +#: ../../playlist.php:101 +msgid "Playlist Imported" msgstr "" -#: ../../lib/ui.lib.php:588 -msgid "Admin-Site Preferences" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" msgstr "" -#: ../../lib/ui.lib.php:592 -msgid "Admin-Manage Modules" +#: ../../flag.php:45 +msgid "Item Flagged" msgstr "" -#: ../../lib/ui.lib.php:596 -msgid "Browse Music" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" #: ../../albums.php:32 @@ -3131,110 +3278,52 @@ msgid "" "error, or the file is not received corectly." msgstr "" -#: ../../albums.php:52 ../../albums.php:80 ../../albums.php:155 +#: ../../albums.php:52 ../../albums.php:80 msgid "Album Art Inserted" msgstr "" -#: ../../albums.php:164 ../../artists.php:48 -msgid "Starting Update from Tags" -msgstr "" - -#: ../../albums.php:168 ../../artists.php:52 -msgid "Update From Tags Complete" -msgstr "" - -#: ../../albums.php:169 ../../artists.php:53 -msgid "Return" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:213 -msgid "Instance Name" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:214 -msgid "Hostname" -msgstr "" - -#: ../../modules/localplay/mpd.controller.php:215 -msgid "Port" -msgstr "" - -#: ../../modules/horde/Browser.php:867 -msgid "file" -msgstr "" - -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." -msgstr "" - -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" -msgstr "" - -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." -msgstr "" - -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." -msgstr "" - -#: ../../modules/horde/Browser.php:903 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." -msgstr "" - -#: ../../localplay.php:72 ../../localplay.php:80 -msgid "Song(s) Removed from Playlist" -msgstr "" - -#: ../../playlist.php:57 -msgid "Playlist Created" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../playlist.php:57 -msgid " has been created" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../playlist.php:78 -msgid "Playlist Updated" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -#: ../../playlist.php:101 -msgid "Playlist Imported" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" +#: ../../register.php:122 +msgid "You must enter a password" msgstr "" -#: ../../login.php:73 -msgid "User Disabled please contact Admin" +#: ../../register.php:126 +msgid "Your passwords do not match" msgstr "" -#: ../../login.php:87 -msgid "Unable to create new account" +#: ../../register.php:158 +msgid "Error: Insert Failed" msgstr "" -#: ../../login.php:96 -msgid "No local account found" +#: ../../register.php:175 +msgid "Registration Complete" msgstr "" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../artists.php:186 -msgid "Show Artists starting with" +#: ../../democratic.php:80 +msgid "Playlist Cleared" msgstr "" #: ../../bin/print_tags.inc:66 @@ -110,6 +110,7 @@ if ($auth['success']) { // Not sure if it was me or php tripping out, // but naming this 'user' didn't work at all // + session_start(); $_SESSION['userdata'] = $auth; // @@ -128,6 +129,7 @@ if ($auth['success']) { if (substr($_POST['referrer'],0,strlen(Config::get('web_path'))) == Config::get('web_path') AND !strstr($_POST['referrer'],"install.php") AND !strstr($_POST['referrer'],"login.php") AND + !strstr($_POST['referrer'],'logout.php') AND !strstr($_POST['referrer'],"update.php") AND !strstr($_POST['referrer'],"activate.php") AND !strstr($_POST['referrer'],"admin")) { @@ -138,10 +140,6 @@ if ($auth['success']) { header("Location: " . Config::get('web_path') . "/index.php"); exit(); } // auth success -/* If auth failed then setup the error */ -else { - Error::add('general',$auth['error']); -} require Config::get('prefix') . '/templates/show_login_form.inc.php'; |