diff options
-rw-r--r-- | admin/system.php | 111 | ||||
-rw-r--r-- | bin/compare_config.php.inc | 2 | ||||
-rwxr-xr-x | docs/CHANGELOG | 6 | ||||
-rw-r--r-- | install.php | 2 | ||||
-rw-r--r-- | lib/debug.lib.php (renamed from lib/debug.php) | 29 | ||||
-rw-r--r-- | lib/init.php | 2 | ||||
-rwxr-xr-x | locale/base/merge-messages.sh | 1 | ||||
-rw-r--r-- | locale/base/messages.po | 2545 | ||||
-rw-r--r-- | locale/de_DE/LC_MESSAGES/messages.po | 7 | ||||
-rw-r--r-- | locale/fr_FR/LC_MESSAGES/messages.po | 6 | ||||
-rw-r--r-- | locale/nl_NL/LC_MESSAGES/messages.po | 2 | ||||
-rw-r--r-- | locale/ru_RU/LC_MESSAGES/messages.mo | bin | 0 -> 30208 bytes | |||
-rw-r--r-- | locale/ru_RU/LC_MESSAGES/messages.po | 1973 | ||||
-rw-r--r-- | locale/tr_TR/LC_MESSAGES/messages.po | 4 | ||||
-rw-r--r-- | locale/zh_CN/LC_MESSAGES/messages.po | 9 | ||||
-rw-r--r-- | templates/show_admin_tools.inc.php | 4 | ||||
-rw-r--r-- | templates/show_test.inc | 17 | ||||
-rw-r--r-- | test.php | 2 |
18 files changed, 3526 insertions, 1196 deletions
diff --git a/admin/system.php b/admin/system.php new file mode 100644 index 00000000..30ad3c19 --- /dev/null +++ b/admin/system.php @@ -0,0 +1,111 @@ +<?php +/* + + Copyright (c) 2001 - 2006 Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +require('../lib/init.php'); +require_once(conf('prefix') . '/lib/debug.lib.php'); +require_once(conf('prefix') . '/modules/horde/Browser.php'); + +if (!$GLOBALS['user']->has_access(100)) { + access_denied(); + exit(); +} + + +$action = scrub_in($_REQUEST['action']); + +/* Switch on action boys */ +switch ($action) { + /* This re-generates the config file comparing + * /config/ampache.cfg to .cfg.dist + */ + case 'generate_config': + + $configfile = conf('prefix') . '/config/ampache.cfg.php'; + $distfile = conf('prefix') . '/config/ampache.cfg.php.dist'; + + /* Load the current config file */ + $current = read_config($configfile, 0, 0); + + /* Start building the new config file */ + $handle = fopen($distfile,'r'); + $dist = fread($handle,filesize($distfile)); + fclose($handle); + + $data = explode("\n",$dist); + + /* Run throught the lines and set our settings */ + foreach ($data as $line) { + + /* Attempt to pull out Key */ + if (preg_match("/^#?([\w\d]+)\s+=\s+[\"]{1}(.*?)[\"]{1}$/",$line,$matches) + || preg_match("/^#?([\w\d]+)\s+=\s+[\']{1}(.*?)[\']{1}$/", $line, $matches) + || preg_match("/^#?([\w\d]+)\s+=\s+[\'\"]{0}(.*)[\'\"]{0}$/",$line,$matches)) { + + $key = $matches[1]; + $value = $matches[2]; + + /* Check to see if Key on source side is an array */ + if (is_array($current[$key])) { + /* We need to add all values of this key to the new config file */ + $line = ''; + $array_value[$key] = true; + foreach ($current[$key] as $sub_value) { + $line .= $key . " = \"" . $sub_value . "\"\n"; + } + unset($current[$key]); + } // is array + + /* Put in the current value */ + elseif (isset($current[$key])) { + $line = $key . " = \"" . $current[$key] . "\""; + unset($current[$key]); + } // if set + + elseif (isset($array_value[$key])) { + $line = ''; + } + + + } // if key + + + $final .= $line . "\n"; + + } // end foreach dist file contents + + /* Set Correct Headers */ + $browser = new Browser(); + $browser->downloadHeaders("ampache.cfg.php","text/plain",false,filesize("config/ampache.cfg.php.dist")); + echo $final; + + break; + /* Check this version against ampache.org's record */ + case 'check_version': + + + break; + default: + // Rien a faire + break; +} // end switch + +?> diff --git a/bin/compare_config.php.inc b/bin/compare_config.php.inc index c5393ede..991613e5 100644 --- a/bin/compare_config.php.inc +++ b/bin/compare_config.php.inc @@ -22,7 +22,7 @@ $no_session = '1'; require ('../lib/init.php'); -require ('../lib/debug.php'); +require ('../lib/debug.lib.php'); $results = debug_read_config(conf('prefix') . "/config/ampache.cfg.php"); diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 53e96e17..c80fbef3 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,12 @@ -------------------------------------------------------------------------- v.3.3.3-Alpha1 + - Added Generate Config tool for admins to update their configs + to the latest version. It reads current settings and merges + with the new config file and prompts for a download + - Added PutENV check on test page to make sure we can redefine + memory limit and safemode is off + - Added Russian translation (Thx Dimon) - Fixed a problem with vainfo ignoring file pattern if no other tags were found - Added new version of getid3() library which will hopefully diff --git a/install.php b/install.php index 6884fe8f..b1d0b303 100644 --- a/install.php +++ b/install.php @@ -28,7 +28,7 @@ require_once('lib/ui.lib.php'); require_once('modules/horde/Browser.php'); require_once('lib/install.php'); require_once('modules/lib.php'); -require_once('lib/debug.php'); +require_once('lib/debug.lib.php'); require_once('lib/class/user.class.php'); require_once('lib/class/error.class.php'); require_once('lib/gettext.php'); diff --git a/lib/debug.php b/lib/debug.lib.php index 637ca178..5320e019 100644 --- a/lib/debug.php +++ b/lib/debug.lib.php @@ -266,8 +266,6 @@ function debug_read_config($config_file,$debug) { $value = trim($value); - if (substr($value,0,1) == '#') { continue; } - if (preg_match("/^#?([\w\d]+)\s+=\s+[\"]{1}(.*?)[\"]{1}$/",$value,$matches) || preg_match("/^#?([\w\d]+)\s+=\s+[\']{1}(.*?)[\']{1}$/", $value, $matches) || preg_match("/^#?([\w\d]+)\s+=\s+[\'\"]{0}(.*)[\'\"]{0}$/",$value,$matches)) { @@ -340,4 +338,31 @@ function debug_compare_configs($config,$dist_config) { } // debug_compare_configs +/** + * check_putenv + * This checks to see if we can manually set the + * memory limit, and other putenvs we need for + * ampache to work correctly + */ +function check_putenv() { + + /* Check memory */ + $current = ini_get('memory_limit'); + $current = substr($current_memory,0,strlen($current_memory)-1); + $new_limit = ($current+1) . "M"; + + /* Bump it by one meg */ + if (!ini_set(memory_limit,$new_limit)) { + return false; + } + + /* Check if safe mode is on */ + if (ini_get('safe_mode')) { + return false; + } + + return true; + +} // check_putenv + ?> diff --git a/lib/init.php b/lib/init.php index 530e37e1..a3beaf4b 100644 --- a/lib/init.php +++ b/lib/init.php @@ -80,7 +80,7 @@ if (!$results['allow_stream_playback']) { /** This is the version.... fluf nothing more... **/ -$results['version'] = '3.3.3-Alpha1 (Build 003)'; +$results['version'] = '3.3.3-Alpha1 (Build 004)'; $results['raw_web_path'] = $results['web_path']; $results['web_path'] = $http_type . $_SERVER['HTTP_HOST'] . $results['web_path']; diff --git a/locale/base/merge-messages.sh b/locale/base/merge-messages.sh index ba05f45e..a9350174 100755 --- a/locale/base/merge-messages.sh +++ b/locale/base/merge-messages.sh @@ -9,3 +9,4 @@ msgmerge ./messages.po ../it_IT/LC_MESSAGES/messages.po --output-file=../it_IT/L msgmerge ./messages.po ../nl_NL/LC_MESSAGES/messages.po --output-file=../nl_NL/LC_MESSAGES/messages.po msgmerge ./messages.po ../tr_TR/LC_MESSAGES/messages.po --output-file=../tr_TR/LC_MESSAGES/messages.po msgmerge ./messages.po ../zh_CN/LC_MESSAGES/messages.po --output-file=../zh_CN/LC_MESSAGES/messages.po +msgmerge ./messages.po ../ru_RU/LC_MESSAGES/messages.po --output-file=../ru_RU/LC_MESSAGES/messages.po diff --git a/locale/base/messages.po b/locale/base/messages.po index e0067922..26c8ff4b 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: 2006-06-21 23:25-0700\n" +"POT-Creation-Date: 2006-10-22 01:02-0700\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,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../play/index.php:56 ../../download/index.php:61 +#: ../../play/index.php:56 ../../download/index.php:62 msgid "Session Expired: please log in again at" msgstr "" @@ -79,7 +79,7 @@ msgid "Album Art Dump Complete" msgstr "" #: ../../lib/class/catalog.class.php:688 ../../artists.php:65 -#: ../../albums.php:144 +#: ../../albums.php:148 msgid "Return" msgstr "" @@ -93,7 +93,8 @@ msgstr "" #: ../../lib/class/catalog.class.php:785 ../../lib/class/catalog.class.php:808 #: ../../lib/class/catalog.class.php:948 ../../lib/class/catalog.class.php:978 -#: ../../admin/catalog.php:286 +#: ../../lib/preferences.php:311 ../../lib/ui.lib.php:1276 +#: ../../admin/catalog.php:260 msgid "None" msgstr "" @@ -102,12 +103,12 @@ msgid "Added Playlist From" msgstr "" #: ../../lib/class/catalog.class.php:807 ../../lib/class/catalog.class.php:977 -#: ../../admin/catalog.php:285 +#: ../../admin/catalog.php:259 msgid "Starting Album Art Search" msgstr "" #: ../../lib/class/catalog.class.php:808 ../../lib/class/catalog.class.php:978 -#: ../../admin/catalog.php:286 +#: ../../admin/catalog.php:260 msgid "Searched" msgstr "" @@ -128,7 +129,7 @@ msgid "Songs Per Seconds" msgstr "" #: ../../lib/class/catalog.class.php:853 -#: ../../lib/class/catalog.class.php:1627 +#: ../../lib/class/catalog.class.php:1635 msgid "Updated" msgstr "" @@ -152,7 +153,7 @@ msgstr "" msgid "Catalog Update Finished" msgstr "" -#: ../../lib/class/catalog.class.php:1018 ../../albums.php:67 +#: ../../lib/class/catalog.class.php:1018 ../../albums.php:71 msgid "Error" msgstr "" @@ -160,89 +161,90 @@ msgstr "" msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" -#: ../../lib/class/catalog.class.php:1057 -#: ../../lib/class/catalog.class.php:1108 +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1116 msgid "Error connecting to" msgstr "" -#: ../../lib/class/catalog.class.php:1057 -#: ../../lib/class/catalog.class.php:1108 +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1116 msgid "Code" msgstr "" -#: ../../lib/class/catalog.class.php:1057 -#: ../../lib/class/catalog.class.php:1108 +#: ../../lib/class/catalog.class.php:1061 +#: ../../lib/class/catalog.class.php:1116 msgid "Reason" msgstr "" -#: ../../lib/class/catalog.class.php:1073 +#: ../../lib/class/catalog.class.php:1077 msgid "Completed updating remote catalog(s)" msgstr "" -#: ../../lib/class/catalog.class.php:1186 +#: ../../lib/class/catalog.class.php:1112 +msgid "Added" +msgstr "" + +#: ../../lib/class/catalog.class.php:1194 msgid "Cleaning the" msgstr "" -#: ../../lib/class/catalog.class.php:1186 -#: ../../lib/class/catalog.class.php:1582 ../../templates/sidebar.inc.php:31 +#: ../../lib/class/catalog.class.php:1194 +#: ../../lib/class/catalog.class.php:1590 ../../templates/sidebar.inc.php:31 msgid "Catalog" msgstr "" -#: ../../lib/class/catalog.class.php:1187 +#: ../../lib/class/catalog.class.php:1195 msgid "Checking" msgstr "" -#: ../../lib/class/catalog.class.php:1258 +#: ../../lib/class/catalog.class.php:1266 msgid "Catalog Clean Done" msgstr "" -#: ../../lib/class/catalog.class.php:1258 +#: ../../lib/class/catalog.class.php:1266 msgid "files removed" msgstr "" -#: ../../lib/class/catalog.class.php:1582 +#: ../../lib/class/catalog.class.php:1590 msgid "Updating the" msgstr "" -#: ../../lib/class/catalog.class.php:1583 +#: ../../lib/class/catalog.class.php:1591 msgid "songs found checking tag information." msgstr "" -#: ../../lib/class/catalog.class.php:1584 +#: ../../lib/class/catalog.class.php:1592 msgid "Verifed" msgstr "" -#: ../../lib/class/catalog.class.php:1635 +#: ../../lib/class/catalog.class.php:1643 msgid " FOUND" msgstr "" -#: ../../lib/class/catalog.class.php:1636 +#: ../../lib/class/catalog.class.php:1644 msgid "Searching for new Album Art" msgstr "" -#: ../../lib/class/catalog.class.php:1640 +#: ../../lib/class/catalog.class.php:1648 msgid "Album Art Already Found" msgstr "" -#: ../../lib/class/catalog.class.php:1692 +#: ../../lib/class/catalog.class.php:1700 msgid "Update Finished." msgstr "" -#: ../../lib/class/catalog.class.php:1692 +#: ../../lib/class/catalog.class.php:1700 msgid "Checked" msgstr "" -#: ../../lib/class/catalog.class.php:1692 +#: ../../lib/class/catalog.class.php:1700 msgid "songs updated." msgstr "" -#: ../../lib/class/artist.class.php:223 -msgid "Error: Name Identical" -msgstr "" - -#: ../../lib/class/song.class.php:321 ../../lib/duplicates.php:111 +#: ../../lib/class/song.class.php:321 +#: ../../templates/show_duplicates.inc.php:37 #: ../../templates/show_edit_song.inc.php:32 -#: ../../templates/show_search.inc:44 +#: ../../templates/show_search.inc:41 msgid "Title" msgstr "" @@ -255,8 +257,9 @@ msgstr "" msgid "updated to" msgstr "" -#: ../../lib/class/song.class.php:325 ../../templates/show_uploads.inc:39 -#: ../../templates/show_songs.inc:44 ../../templates/list_duplicates.inc:37 +#: ../../lib/class/song.class.php:325 +#: ../../templates/show_list_duplicates.inc.php:37 +#: ../../templates/show_uploads.inc:39 ../../templates/show_songs.inc:54 msgid "Bitrate" msgstr "" @@ -269,14 +272,14 @@ msgid "Mode" msgstr "" #: ../../lib/class/song.class.php:337 ../../templates/show_uploads.inc:38 -#: ../../templates/show_mpdpl.inc:55 ../../templates/show_songs.inc:42 +#: ../../templates/show_mpdpl.inc:55 ../../templates/show_songs.inc:52 msgid "Time" msgstr "" #: ../../lib/class/song.class.php:341 #: ../../templates/show_edit_song.inc.php:62 -#: ../../templates/show_localplay.inc.php:47 ../../templates/show_mpdpl.inc:54 -#: ../../templates/show_songs.inc:36 ../../templates/show_songs.inc:41 +#: ../../templates/show_localplay.inc.php:46 ../../templates/show_mpdpl.inc:54 +#: ../../templates/show_songs.inc:46 ../../templates/show_songs.inc:51 msgid "Track" msgstr "" @@ -285,70 +288,53 @@ msgid "Filesize" msgstr "" #: ../../lib/class/song.class.php:350 -#: ../../templates/show_get_albumart.inc.php:33 #: ../../templates/show_edit_song.inc.php:46 +#: ../../templates/show_get_albumart.inc.php:30 +#: ../../templates/show_list_duplicates.inc.php:34 #: ../../templates/show_uploads.inc:35 ../../templates/show_mpdpl.inc:52 -#: ../../templates/show_songs.inc:39 ../../templates/show_artists.inc:40 -#: ../../templates/show_artists.inc:62 ../../templates/show_albums.inc:41 -#: ../../templates/show_albums.inc:73 ../../templates/list_duplicates.inc:34 -#: ../../templates/show_search.inc:48 +#: ../../templates/show_songs.inc:49 ../../templates/show_artists.inc:41 +#: ../../templates/show_artists.inc:63 ../../templates/show_albums.inc:42 +#: ../../templates/show_albums.inc:74 #: ../../templates/show_similar_artists.inc:30 +#: ../../templates/show_search.inc:45 msgid "Artist" msgstr "" #: ../../lib/class/song.class.php:355 -#: ../../templates/show_get_albumart.inc.php:41 #: ../../templates/show_edit_song.inc.php:38 +#: ../../templates/show_get_albumart.inc.php:38 +#: ../../templates/show_list_duplicates.inc.php:35 #: ../../templates/show_uploads.inc:36 ../../templates/show_mpdpl.inc:53 -#: ../../templates/show_songs.inc:40 ../../templates/show_albums.inc:38 -#: ../../templates/show_albums.inc:70 ../../templates/list_duplicates.inc:35 -#: ../../templates/show_search.inc:54 +#: ../../templates/show_songs.inc:50 ../../templates/show_albums.inc:39 +#: ../../templates/show_albums.inc:71 ../../templates/show_search.inc:51 msgid "Album" msgstr "" #: ../../lib/class/song.class.php:359 #: ../../templates/show_edit_song.inc.php:68 -#: ../../templates/show_albums.inc:45 ../../templates/show_albums.inc:77 -#: ../../templates/show_search.inc:64 +#: ../../templates/show_albums.inc:46 ../../templates/show_albums.inc:78 +#: ../../templates/show_search.inc:61 msgid "Year" msgstr "" #: ../../lib/class/song.class.php:363 ../../templates/show_flag.inc.php:67 #: ../../templates/show_edit_song.inc.php:74 -#: ../../templates/show_search.inc:38 +#: ../../templates/show_search.inc:35 msgid "Comment" msgstr "" -#: ../../lib/class/song.class.php:368 ../../templates/show_genre.inc.php:32 -#: ../../templates/show_genres.inc.php:36 ../../templates/sidebar.inc.php:38 +#: ../../lib/class/song.class.php:368 ../../lib/ui.lib.php:933 +#: ../../templates/sidebar.inc.php:38 #: ../../templates/show_edit_song.inc.php:54 -#: ../../templates/show_uploads.inc:37 ../../templates/show_mpdpl.inc:56 -#: ../../templates/show_songs.inc:45 ../../templates/show_search.inc:58 +#: ../../templates/show_genre.inc.php:29 +#: ../../templates/show_genres.inc.php:37 ../../templates/show_uploads.inc:37 +#: ../../templates/show_mpdpl.inc:56 ../../templates/show_songs.inc:55 +#: ../../templates/show_search.inc:55 msgid "Genre" msgstr "" -#: ../../lib/class/stream.class.php:192 -msgid "Opened for writing" -msgstr "" - -#: ../../lib/class/stream.class.php:197 -msgid "Error, cannot write" -msgstr "" - -#: ../../lib/class/stream.class.php:208 -msgid "Error, cannot write song in file" -msgstr "" - -#: ../../lib/class/stream.class.php:214 -msgid "Closed after write" -msgstr "" - -#: ../../lib/class/genre.class.php:280 -msgid "Show Genres starting with" -msgstr "" - -#: ../../lib/class/album.class.php:151 -msgid "Various" +#: ../../lib/class/artist.class.php:221 +msgid "Error: Name Identical" msgstr "" #: ../../lib/class/flag.class.php:241 @@ -361,10 +347,10 @@ msgstr "" #: ../../lib/class/flag.class.php:254 ../../templates/show_flag.inc.php:59 #: ../../templates/show_playlists.inc.php:57 -#: ../../templates/show_admin_tools.inc.php:54 -#: ../../templates/show_localplay.inc.php:60 +#: ../../templates/show_admin_tools.inc.php:51 +#: ../../templates/show_localplay.inc.php:59 #: ../../templates/show_uploads.inc:53 ../../templates/catalog.inc:67 -#: ../../templates/show_users.inc:71 +#: ../../templates/show_users.inc:76 msgid "Delete" msgstr "" @@ -380,47 +366,90 @@ msgstr "" msgid "Other" msgstr "" -#: ../../lib/class/flag.class.php:266 ../../lib/general.lib.php:895 -#: ../../modules/localplay/icecast.controller.php:296 -#: ../../modules/localplay/mpd.controller.php:327 +#: ../../lib/class/flag.class.php:266 ../../lib/class/localplay.class.php:549 +#: ../../lib/general.lib.php:871 +#: ../../modules/localplay/icecast.controller.php:292 +#: ../../modules/localplay/mpd.controller.php:332 msgid "Unknown" msgstr "" -#: ../../lib/duplicates.php:100 -msgid "Find Duplicates" +#: ../../lib/class/localplay.class.php:540 +#: ../../templates/show_now_playing.inc:40 +msgid "Now Playing" msgstr "" -#: ../../lib/duplicates.php:103 -msgid "Search Type" +#: ../../lib/class/localplay.class.php:543 +msgid "Stopped" msgstr "" -#: ../../lib/duplicates.php:117 -msgid "Artist and Title" +#: ../../lib/class/localplay.class.php:546 +msgid "Paused" msgstr "" -#: ../../lib/duplicates.php:122 -msgid "Artist, Album and Title" +#: ../../lib/class/stream.class.php:232 +msgid "Opened for writing" msgstr "" -#: ../../lib/duplicates.php:130 ../../templates/sidebar.inc.php:135 -#: ../../templates/sidebar.inc.php:141 ../../templates/show_search_bar.inc:31 -#: ../../templates/menu.inc:39 ../../templates/show_search.inc:134 -msgid "Search" +#: ../../lib/class/stream.class.php:237 +msgid "Error, cannot write" +msgstr "" + +#: ../../lib/class/stream.class.php:248 +msgid "Error, cannot write song in file" +msgstr "" + +#: ../../lib/class/stream.class.php:254 +msgid "Closed after write" +msgstr "" + +#: ../../lib/class/album.class.php:151 +msgid "Various" +msgstr "" + +#: ../../lib/class/genre.class.php:284 +msgid "Show Genres starting with" +msgstr "" + +#: ../../lib/rating.lib.php:43 +msgid "Don't Play" +msgstr "" + +#: ../../lib/rating.lib.php:46 +msgid "It's Pretty Bad" +msgstr "" + +#: ../../lib/rating.lib.php:49 +msgid "It's Ok" +msgstr "" + +#: ../../lib/rating.lib.php:52 +msgid "It's Pretty Good" +msgstr "" + +#: ../../lib/rating.lib.php:55 +msgid "I Love It!" +msgstr "" + +#: ../../lib/rating.lib.php:58 +msgid "It's Insane" msgstr "" -#: ../../lib/preferences.php:256 ../../templates/show_songs.inc:127 -#: ../../templates/show_users.inc:117 +#: ../../lib/rating.lib.php:62 +msgid "Off the Charts!" +msgstr "" + +#: ../../lib/preferences.php:256 ../../templates/show_songs.inc:137 msgid "Enable" msgstr "" -#: ../../lib/preferences.php:257 ../../templates/show_songs.inc:125 -#: ../../templates/show_users.inc:120 ../../templates/list_duplicates.inc:32 +#: ../../lib/preferences.php:257 +#: ../../templates/show_list_duplicates.inc.php:32 +#: ../../templates/show_songs.inc:135 msgid "Disable" msgstr "" #: ../../lib/preferences.php:266 #: ../../templates/show_localplay_switch.inc.php:2 -#: ../../templates/show_edit_access.inc:50 msgid "Stream" msgstr "" @@ -428,183 +457,257 @@ msgstr "" msgid "Downsample" msgstr "" -#: ../../lib/preferences.php:271 ../../templates/sidebar.inc.php:188 -#: ../../templates/show_localplay.inc.php:29 +#: ../../lib/preferences.php:272 +msgid "Voting" +msgstr "" + +#: ../../lib/preferences.php:274 ../../templates/sidebar.inc.php:179 #: ../../templates/show_localplay_switch.inc.php:5 +#: ../../templates/show_localplay.inc.php:27 msgid "Localplay" msgstr "" -#: ../../lib/preferences.php:278 +#: ../../lib/preferences.php:281 msgid "M3U" msgstr "" -#: ../../lib/preferences.php:279 +#: ../../lib/preferences.php:282 msgid "Simple M3U" msgstr "" -#: ../../lib/preferences.php:280 +#: ../../lib/preferences.php:283 msgid "PLS" msgstr "" -#: ../../lib/preferences.php:281 +#: ../../lib/preferences.php:284 msgid "Asx" msgstr "" -#: ../../lib/preferences.php:282 +#: ../../lib/preferences.php:285 msgid "RAM" msgstr "" -#: ../../lib/preferences.php:313 +#: ../../lib/preferences.php:286 +msgid "XSPF" +msgstr "" + +#: ../../lib/preferences.php:318 msgid "Disabled" msgstr "" -#: ../../lib/preferences.php:314 +#: ../../lib/preferences.php:319 msgid "Global" msgstr "" -#: ../../lib/preferences.php:315 +#: ../../lib/preferences.php:320 msgid "Full" msgstr "" -#: ../../lib/general.lib.php:643 ../../stats.php:52 ../../stats.php:64 -#: ../../stats.php:76 -msgid "Not Enough Data" -msgstr "" - -#: ../../lib/general.lib.php:702 ../../lib/general.lib.php:705 -#: ../../templates/show_genres.inc.php:47 -#: ../../templates/show_playlists.inc.php:61 -#: ../../templates/show_artists.inc:54 ../../templates/show_random_play.inc:82 -#: ../../templates/show_albums.inc:59 ../../templates/show_mpdplay.inc:55 -#: ../../templates/show_artist.inc:65 -msgid "Play" -msgstr "" - -#: ../../lib/general.lib.php:875 ../../lib/general.lib.php:886 -msgid "English" -msgstr "" - -#: ../../lib/general.lib.php:887 -msgid "British English" -msgstr "" - -#: ../../lib/general.lib.php:892 -msgid "Turkish" -msgstr "" - -#: ../../lib/general.lib.php:893 -msgid "Simplified Chinese" +#: ../../lib/playlist.lib.php:74 +msgid "No songs in this playlist." msgstr "" -#: ../../lib/ui.lib.php:160 +#: ../../lib/ui.lib.php:140 msgid "Error Access Denied" msgstr "" -#: ../../lib/ui.lib.php:239 ../../templates/sidebar.inc.php:100 +#: ../../lib/ui.lib.php:220 ../../templates/sidebar.inc.php:92 #: ../../templates/menu.inc:35 msgid "Browse" msgstr "" -#: ../../lib/ui.lib.php:241 +#: ../../lib/ui.lib.php:222 msgid "Show w/o art" msgstr "" -#: ../../lib/ui.lib.php:244 +#: ../../lib/ui.lib.php:225 msgid "Show all" msgstr "" -#: ../../lib/ui.lib.php:647 +#: ../../lib/ui.lib.php:628 ../../admin/mail.php:79 msgid "No Catalogs Found!" msgstr "" -#: ../../lib/ui.lib.php:648 ../../templates/show_admin_tools.inc.php:71 -#: ../../templates/add_catalog.inc:29 +#: ../../lib/ui.lib.php:629 ../../admin/mail.php:80 +#: ../../templates/show_admin_tools.inc.php:68 +#: ../../templates/show_add_catalog.inc.php:28 msgid "Add a Catalog" msgstr "" -#: ../../lib/ui.lib.php:649 ../../templates/show_local_catalog_info.inc.php:25 +#: ../../lib/ui.lib.php:630 ../../admin/mail.php:81 +#: ../../templates/show_mail_users.inc.php:41 +#: ../../templates/show_local_catalog_info.inc.php:23 msgid "Catalog Statistics" msgstr "" -#: ../../lib/ui.lib.php:685 +#: ../../lib/ui.lib.php:666 ../../admin/mail.php:117 msgid "day" msgstr "" -#: ../../lib/ui.lib.php:685 +#: ../../lib/ui.lib.php:666 ../../admin/mail.php:117 msgid "days" msgstr "" -#: ../../lib/ui.lib.php:687 +#: ../../lib/ui.lib.php:668 ../../admin/mail.php:119 msgid "hour" msgstr "" -#: ../../lib/ui.lib.php:687 +#: ../../lib/ui.lib.php:668 ../../admin/mail.php:119 msgid "hours" msgstr "" -#: ../../lib/ui.lib.php:994 ../../templates/sidebar.inc.php:168 -#: ../../templates/show_admin_tools.inc.php:52 -#: ../../templates/show_artists.inc:55 ../../templates/show_random_play.inc:42 -#: ../../templates/show_albums.inc:60 +#: ../../lib/ui.lib.php:872 ../../templates/sidebar.inc.php:52 +#: ../../templates/menu.inc:29 +msgid "Home" +msgstr "" + +#: ../../lib/ui.lib.php:875 ../../templates/sidebar.inc.php:111 +#: ../../templates/menu.inc:43 ../../templates/show_upload.inc:53 +msgid "Upload" +msgstr "" + +#: ../../lib/ui.lib.php:878 ../../templates/menu.inc:32 +msgid "Local Play" +msgstr "" + +#: ../../lib/ui.lib.php:881 +msgid "Random Play" +msgstr "" + +#: ../../lib/ui.lib.php:884 ../../templates/show_play_selected.inc.php:47 +msgid "Playlist" +msgstr "" + +#: ../../lib/ui.lib.php:887 ../../templates/show_duplicates.inc.php:56 +#: ../../templates/sidebar.inc.php:127 ../../templates/sidebar.inc.php:133 +#: ../../templates/menu.inc:39 ../../templates/show_search_bar.inc:31 +#: ../../templates/show_search.inc:131 +msgid "Search" +msgstr "" + +#: ../../lib/ui.lib.php:890 ../../templates/sidebar.inc.php:84 +#: ../../templates/menu.inc:40 +msgid "Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:893 ../../lib/ui.lib.php:897 +msgid "Admin-Catalog" +msgstr "" + +#: ../../lib/ui.lib.php:901 +msgid "Admin-User Management" +msgstr "" + +#: ../../lib/ui.lib.php:905 +msgid "Admin-Mail Users" +msgstr "" + +#: ../../lib/ui.lib.php:909 +msgid "Admin-Manage Access Lists" +msgstr "" + +#: ../../lib/ui.lib.php:913 +msgid "Admin-Site Preferences" +msgstr "" + +#: ../../lib/ui.lib.php:917 +msgid "Admin-Manage Modules" +msgstr "" + +#: ../../lib/ui.lib.php:921 +msgid "Browse Music" +msgstr "" + +#: ../../lib/ui.lib.php:925 ../../admin/mail.php:132 +#: ../../templates/sidebar.inc.php:36 ../../templates/sidebar.inc.php:167 +#: ../../templates/show_genre.inc.php:32 +#: ../../templates/show_local_catalog_info.inc.php:34 +#: ../../templates/show_artists.inc:44 ../../templates/show_artists.inc:66 +#: ../../templates/show_artist.inc:28 +msgid "Albums" +msgstr "" + +#: ../../lib/ui.lib.php:929 ../../admin/mail.php:133 +#: ../../templates/sidebar.inc.php:37 ../../templates/sidebar.inc.php:166 +#: ../../templates/show_genre.inc.php:35 +#: ../../templates/show_local_catalog_info.inc.php:38 +#: ../../templates/show_artist.inc:27 +msgid "Artists" +msgstr "" + +#: ../../lib/ui.lib.php:937 ../../templates/sidebar.inc.php:121 +msgid "Statistics" +msgstr "" + +#: ../../lib/ui.lib.php:982 ../../templates/sidebar.inc.php:159 +#: ../../templates/show_admin_tools.inc.php:49 +#: ../../templates/show_artists.inc:56 ../../templates/show_random_play.inc:41 +#: ../../templates/show_add_access.inc:60 ../../templates/show_albums.inc:61 +#: ../../templates/show_edit_access.inc:69 msgid "All" msgstr "" -#: ../../lib/upload.php:231 -msgid "The file uploaded successfully" +#: ../../lib/general.lib.php:652 ../../stats.php:51 ../../stats.php:63 +#: ../../stats.php:75 +msgid "Not Enough Data" msgstr "" -#: ../../lib/upload.php:232 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +#: ../../lib/general.lib.php:851 ../../lib/general.lib.php:862 +msgid "English" msgstr "" -#: ../../lib/upload.php:233 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" +#: ../../lib/general.lib.php:863 +msgid "British English" msgstr "" -#: ../../lib/upload.php:234 -msgid "The uploaded file was only partially uploaded" +#: ../../lib/general.lib.php:868 +msgid "Turkish" msgstr "" -#: ../../lib/upload.php:235 -msgid "No file was uploaded" +#: ../../lib/general.lib.php:869 +msgid "Simplified Chinese" msgstr "" -#: ../../lib/upload.php:236 -msgid "Missing a temporary folder" +#: ../../lib/general.lib.php:947 ../../templates/show_mpdplay.inc:94 +#: ../../templates/show_mpdplay.inc:106 +msgid "On" msgstr "" -#: ../../lib/rating.lib.php:55 -msgid "Don't Play" +#: ../../lib/general.lib.php:950 ../../templates/show_mpdplay.inc:95 +#: ../../templates/show_mpdplay.inc:107 +msgid "Off" msgstr "" -#: ../../lib/rating.lib.php:58 -msgid "It's Pretty Bad" +#: ../../lib/upload.php:231 +msgid "The file uploaded successfully" msgstr "" -#: ../../lib/rating.lib.php:61 -msgid "It's Ok" +#: ../../lib/upload.php:232 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ../../lib/rating.lib.php:64 -msgid "It's Pretty Good" +#: ../../lib/upload.php:233 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" msgstr "" -#: ../../lib/rating.lib.php:67 -msgid "I Love It!" +#: ../../lib/upload.php:234 +msgid "The uploaded file was only partially uploaded" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "It's Insane" +#: ../../lib/upload.php:235 +msgid "No file was uploaded" msgstr "" -#: ../../lib/rating.lib.php:74 -msgid "Off the Charts!" +#: ../../lib/upload.php:236 +msgid "Missing a temporary folder" msgstr "" -#: ../../lib/playlist.lib.php:73 -msgid "No songs in this playlist." +#: ../../lib/debug.php:218 +msgid "" +"You defined the option \"debug = on\" but didn't define a log path for the " +"log to be stored" msgstr "" #: ../../modules/horde/Browser.php:867 @@ -637,204 +740,224 @@ msgid "" "There was a problem with the file upload: The %s was only partially uploaded." msgstr "" -#: ../../modules/lib.php:396 -msgid "Create a new playlist" -msgstr "" - -#: ../../modules/admin.php:46 +#: ../../modules/admin.php:45 msgid "Manage Users" msgstr "" -#: ../../modules/admin.php:48 +#: ../../modules/admin.php:47 msgid "Add a new user" msgstr "" -#: ../../bin/test_vainfo.php:48 ../../bin/print_tags.php.inc:43 -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 "" - -#: ../../bin/test_vainfo.php:54 ../../bin/print_tags.php.inc:49 -msgid "Filename:" +#: ../../admin/catalog.php:62 ../../admin/catalog.php:82 +#: ../../admin/catalog.php:107 ../../admin/catalog.php:168 +msgid "Catalog Updated" msgstr "" -#: ../../admin/catalog.php:62 ../../admin/catalog.php:106 -#: ../../admin/catalog.php:131 ../../admin/catalog.php:194 -msgid "Catalog Updated" +#: ../../admin/catalog.php:119 +msgid "Catalog Deleted" msgstr "" -#: ../../admin/catalog.php:66 ../../templates/catalog.inc:74 -msgid "Add to all Catalogs" +#: ../../admin/catalog.php:119 +msgid "The Catalog and all assoicated records has been deleted" msgstr "" -#: ../../admin/catalog.php:143 -msgid "Catalog Deleted" +#: ../../admin/catalog.php:128 +msgid "Songs Removed" msgstr "" -#: ../../admin/catalog.php:143 -msgid "The Catalog and all assoicated records has been deleted" +#: ../../admin/catalog.php:131 +msgid "No Songs Removed" msgstr "" -#: ../../admin/catalog.php:160 +#: ../../admin/catalog.php:134 msgid "Disabled Songs Processed" msgstr "" -#: ../../admin/catalog.php:182 +#: ../../admin/catalog.php:155 msgid "Catalog Cleaned" msgstr "" -#: ../../admin/catalog.php:224 +#: ../../admin/catalog.php:198 msgid "Catalog Created" msgstr "" -#: ../../admin/catalog.php:225 +#: ../../admin/catalog.php:199 msgid "Catalog Created and Songs Indexed" msgstr "" -#: ../../admin/catalog.php:238 +#: ../../admin/catalog.php:212 msgid "Catalog statistics cleared" msgstr "" -#: ../../admin/catalog.php:248 +#: ../../admin/catalog.php:222 msgid "Now Playing Cleared" msgstr "" -#: ../../admin/catalog.php:248 +#: ../../admin/catalog.php:222 msgid "All now playing data has been cleared" msgstr "" -#: ../../admin/catalog.php:255 +#: ../../admin/catalog.php:229 msgid "Do you really want to clear the statistics for this catalog?" msgstr "" -#: ../../admin/catalog.php:256 ../../templates/show_admin_tools.inc.php:72 +#: ../../admin/catalog.php:230 ../../templates/show_admin_tools.inc.php:69 #: ../../templates/catalog.inc:32 msgid "Clear Catalog Stats" msgstr "" -#: ../../admin/catalog.php:275 +#: ../../admin/catalog.php:241 +msgid "No Disabled songs found" +msgstr "" + +#: ../../admin/catalog.php:249 msgid "Delete Catalog" msgstr "" -#: ../../admin/catalog.php:275 +#: ../../admin/catalog.php:249 msgid "Do you really want to delete this catalog?" msgstr "" -#: ../../admin/catalog.php:288 ../../admin/catalog.php:291 +#: ../../admin/catalog.php:262 ../../admin/catalog.php:265 msgid "Album Art Search Finished" msgstr "" -#: ../../admin/users.php:72 ../../admin/users.php:119 -msgid "Error Username Required" +#: ../../admin/flag.php:98 +msgid "Song Updated" msgstr "" -#: ../../admin/users.php:75 ../../admin/users.php:115 -msgid "Error Passwords don't match" +#: ../../admin/flag.php:98 +msgid "The requested song has been updated" msgstr "" -#: ../../admin/users.php:124 ../../register.php:136 -msgid "Error Username already exists" +#: ../../admin/flag.php:106 +msgid "Flag Removed" msgstr "" -#: ../../admin/users.php:145 -msgid "Are you sure you want to permanently delete" +#: ../../admin/flag.php:107 +msgid "Flag Removed from" msgstr "" -#: ../../admin/users.php:152 ../../templates/show_confirm_action.inc.php:29 -#: ../../templates/show_search.inc:79 -msgid "No" +#: ../../admin/flag.php:125 +msgid "Songs Disabled" msgstr "" -#: ../../admin/users.php:154 -msgid "User Deleted" +#: ../../admin/flag.php:125 +msgid "The requested song(s) have been disabled" msgstr "" -#: ../../admin/users.php:157 -msgid "Delete Error" +#: ../../admin/flag.php:136 +msgid "Songs Enabled" msgstr "" -#: ../../admin/users.php:157 -msgid "Unable to delete last Admin User" +#: ../../admin/flag.php:136 +msgid "The requested song(s) have been enabled" +msgstr "" + +#: ../../admin/flag.php:141 +msgid "Flagged Records" msgstr "" #: ../../admin/access.php:42 msgid "Confirm Delete" msgstr "" -#: ../../admin/access.php:42 +#: ../../admin/access.php:43 msgid "Do you really want to delete this Access Record?" msgstr "" -#: ../../admin/access.php:46 +#: ../../admin/access.php:49 msgid "Entry Deleted" msgstr "" -#: ../../admin/access.php:46 +#: ../../admin/access.php:49 msgid "Your Access List Entry has been removed" msgstr "" -#: ../../admin/access.php:50 +#: ../../admin/access.php:54 msgid "Entry Added" msgstr "" -#: ../../admin/access.php:50 +#: ../../admin/access.php:54 msgid "Your new Access List Entry has been created" msgstr "" -#: ../../admin/access.php:54 +#: ../../admin/access.php:58 msgid "Entry Updated" msgstr "" -#: ../../admin/access.php:54 +#: ../../admin/access.php:58 msgid "Access List Entry updated" msgstr "" -#: ../../admin/mail.php:74 -msgid "E-mail Sent" +#: ../../admin/users.php:70 ../../admin/users.php:117 +msgid "Error Username Required" msgstr "" -#: ../../admin/mail.php:75 -msgid "Your E-mail was successfully sent." +#: ../../admin/users.php:73 ../../admin/users.php:113 +msgid "Error Passwords don't match" msgstr "" -#: ../../admin/flag.php:98 -msgid "Song Updated" +#: ../../admin/users.php:122 ../../register.php:137 +msgid "Error Username already exists" msgstr "" -#: ../../admin/flag.php:98 -msgid "The requested song has been updated" +#: ../../admin/users.php:144 +msgid "Deletion Request" msgstr "" -#: ../../admin/flag.php:106 -msgid "Flag Removed" +#: ../../admin/users.php:145 +msgid "Are you sure you want to permanently delete" msgstr "" -#: ../../admin/flag.php:107 -msgid "Flag Removed from" +#: ../../admin/users.php:150 ../../templates/show_confirm_action.inc.php:29 +#: ../../templates/show_search.inc:76 +msgid "No" msgstr "" -#: ../../admin/flag.php:125 -msgid "Songs Disabled" +#: ../../admin/users.php:152 +msgid "User Deleted" msgstr "" -#: ../../admin/flag.php:125 -msgid "The requested song(s) have been disabled" +#: ../../admin/users.php:155 +msgid "Delete Error" msgstr "" -#: ../../admin/flag.php:136 -msgid "Songs Enabled" +#: ../../admin/users.php:155 +msgid "Unable to delete last Admin User" msgstr "" -#: ../../admin/flag.php:136 -msgid "The requested song(s) have been enabled" +#: ../../admin/mail.php:130 ../../templates/show_local_catalog_info.inc.php:26 +msgid "Total Users" msgstr "" -#: ../../admin/flag.php:141 -msgid "Flagged Records" +#: ../../admin/mail.php:131 ../../templates/show_local_catalog_info.inc.php:30 +msgid "Connected Users" +msgstr "" + +#: ../../admin/mail.php:134 ../../templates/sidebar.inc.php:164 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_local_catalog_info.inc.php:42 +#: ../../templates/show_genres.inc.php:38 ../../templates/show_artists.inc:43 +#: ../../templates/show_artists.inc:65 ../../templates/show_albums.inc:44 +#: ../../templates/show_albums.inc:76 +msgid "Songs" +msgstr "" + +#: ../../admin/mail.php:135 ../../templates/show_local_catalog_info.inc.php:46 +msgid "Catalog Size" +msgstr "" + +#: ../../admin/mail.php:136 ../../templates/show_local_catalog_info.inc.php:50 +msgid "Catalog Time" +msgstr "" + +#: ../../admin/mail.php:233 +msgid "E-mail Sent" +msgstr "" + +#: ../../admin/mail.php:234 +msgid "Your E-mail was successfully sent." msgstr "" #: ../../admin/modules.php:41 @@ -849,17 +972,49 @@ msgstr "" msgid "Module Deactivated" msgstr "" +#: ../../templates/show_flag.inc.php:42 +msgid "Flag song" +msgstr "" + +#: ../../templates/show_flag.inc.php:43 +msgid "" +"Flag the following song as having one of the problems listed below. Site " +"admins will then take the appropriate action for the flagged files." +msgstr "" + +#: ../../templates/show_flag.inc.php:48 +#: ../../templates/show_edit_song.inc.php:28 +msgid "File" +msgstr "" + +#: ../../templates/show_flag.inc.php:52 +msgid "Item" +msgstr "" + +#: ../../templates/show_flag.inc.php:56 +msgid "Reason to flag" +msgstr "" + +#: ../../templates/show_flag.inc.php:60 +msgid "Incorrect Tags" +msgstr "" + +#: ../../templates/show_flag.inc.php:73 +#: ../../templates/show_flagged.inc.php:29 ../../templates/show_songs.inc:131 +msgid "Flag" +msgstr "" + #: ../../templates/show_install_account.inc.php:35 #: ../../templates/show_install_lang.inc.php:9 -#: ../../templates/show_install.inc:9 #: ../../templates/show_install_config.inc:35 +#: ../../templates/show_install.inc:9 msgid "Ampache Installation" msgstr "" #: ../../templates/show_install_account.inc.php:42 #: ../../templates/show_install_lang.inc.php:16 -#: ../../templates/show_install.inc:17 #: ../../templates/show_install_config.inc:41 +#: ../../templates/show_install.inc:17 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 " @@ -868,8 +1023,8 @@ msgstr "" #: ../../templates/show_install_account.inc.php:45 #: ../../templates/show_install_lang.inc.php:19 -#: ../../templates/show_install.inc:20 #: ../../templates/show_install_config.inc:44 +#: ../../templates/show_install.inc:20 msgid "" "A MySQL Server with a username and password that can create/modify databases" msgstr "" @@ -882,8 +1037,8 @@ msgstr "" #: ../../templates/show_install_account.inc.php:48 #: ../../templates/show_install_lang.inc.php:22 -#: ../../templates/show_install.inc:23 #: ../../templates/show_install_config.inc:47 +#: ../../templates/show_install.inc:23 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 " @@ -892,8 +1047,8 @@ msgid "" msgstr "" #: ../../templates/show_install_account.inc.php:52 -#: ../../templates/show_install.inc:28 #: ../../templates/show_install_config.inc:51 +#: ../../templates/show_install.inc:28 msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" @@ -902,8 +1057,8 @@ msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" #: ../../templates/show_install_account.inc.php:54 -#: ../../templates/show_install.inc:33 #: ../../templates/show_install_config.inc:56 +#: ../../templates/show_install.inc:33 msgid "Step 3 - Setup Initial Account" msgstr "" @@ -918,15 +1073,16 @@ msgid "Create Admin Account" msgstr "" #: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_user_registration.inc.php:109 -#: ../../templates/show_users_info.inc.php:27 ../../templates/userform.inc:40 -#: ../../templates/show_users.inc:44 +#: ../../templates/show_user_registration.inc.php:99 +#: ../../templates/show_users_info.inc.php:27 +#: ../../templates/show_edit_user.inc.php:40 ../../templates/show_users.inc:44 msgid "Username" msgstr "" #: ../../templates/show_install_account.inc.php:68 -#: ../../templates/show_user_registration.inc.php:137 -#: ../../templates/userform.inc:63 ../../templates/show_login_form.inc:41 +#: ../../templates/show_user_registration.inc.php:127 +#: ../../templates/show_edit_user.inc.php:63 +#: ../../templates/show_login_form.inc:30 msgid "Password" msgstr "" @@ -934,236 +1090,355 @@ msgstr "" msgid "Create Account" msgstr "" -#: ../../templates/show_user_registration.inc.php:59 -msgid "Ampache New User Registration" +#: ../../templates/show_playlists.inc.php:28 +#: ../../templates/sidebar.inc.php:118 ../../templates/menu.inc:38 +msgid "Playlists" msgstr "" -#: ../../templates/show_user_registration.inc.php:74 -msgid "User Agreement" +#: ../../templates/show_playlists.inc.php:33 +msgid "Playlist Name" msgstr "" -#: ../../templates/show_user_registration.inc.php:84 -msgid "I Accept" +#: ../../templates/show_playlists.inc.php:34 +msgid "# Songs" msgstr "" -#: ../../templates/show_user_registration.inc.php:101 -msgid "User Information" +#: ../../templates/show_playlists.inc.php:35 +msgid "Owner" msgstr "" -#: ../../templates/show_user_registration.inc.php:119 -#: ../../templates/userform.inc:48 -msgid "Full Name" +#: ../../templates/show_playlists.inc.php:36 +#: ../../templates/show_artist_box.inc.php:32 +#: ../../templates/show_localplay.inc.php:31 ../../templates/show_album.inc:55 +msgid "Actions" msgstr "" -#: ../../templates/show_user_registration.inc.php:128 -#: ../../templates/show_user.inc.php:31 ../../templates/userform.inc:55 -msgid "E-mail" +#: ../../templates/show_playlists.inc.php:52 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../templates/show_add_access.inc:57 +#: ../../templates/show_edit_access.inc:66 +msgid "View" msgstr "" -#: ../../templates/show_user_registration.inc.php:146 -#: ../../templates/show_user.inc.php:50 ../../templates/userform.inc:72 -msgid "Confirm Password" +#: ../../templates/show_playlists.inc.php:55 +#: ../../templates/show_users_info.inc.php:46 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_songs.inc:133 ../../templates/show_access_list.inc:72 +#: ../../templates/show_users.inc:64 +msgid "Edit" msgstr "" -#: ../../templates/show_user_registration.inc.php:166 -msgid "Clear Info" +#: ../../templates/show_playlists.inc.php:61 +#: ../../templates/show_genres.inc.php:48 ../../templates/show_artists.inc:55 +#: ../../templates/show_random_play.inc:82 ../../templates/show_albums.inc:60 +#: ../../templates/show_mpdplay.inc:55 ../../templates/show_artist.inc:66 +msgid "Play" msgstr "" -#: ../../templates/show_user_registration.inc.php:167 -msgid "Register User" +#: ../../templates/show_playlists.inc.php:63 +#: ../../templates/sidebar.inc.php:144 +#: ../../templates/show_localplay_status.inc.php:68 +#: ../../templates/show_artists.inc:57 ../../templates/show_albums.inc:62 +#: ../../templates/show_mpdplay.inc:101 +msgid "Random" +msgstr "" + +#: ../../templates/show_playlists.inc.php:66 +#: ../../templates/show_songs.inc:141 ../../templates/show_album.inc:66 +#: ../../templates/show_random_play.inc:84 ../../templates/show_albums.inc:64 +#: ../../templates/show_artist.inc:68 +msgid "Download" +msgstr "" + +#: ../../templates/show_playlists.inc.php:75 +msgid "No Playlists Found" +msgstr "" + +#: ../../templates/show_duplicates.inc.php:25 +msgid "Find Duplicates" +msgstr "" + +#: ../../templates/show_duplicates.inc.php:29 +msgid "Search Type" +msgstr "" + +#: ../../templates/show_duplicates.inc.php:43 +msgid "Artist and Title" +msgstr "" + +#: ../../templates/show_duplicates.inc.php:48 +msgid "Artist, Album and Title" msgstr "" #: ../../templates/show_confirm_action.inc.php:28 -#: ../../templates/show_search.inc:78 +#: ../../templates/show_search.inc:75 msgid "Yes" msgstr "" -#: ../../templates/show_modules.inc.php:33 ../../templates/sidebar.inc.php:34 +#: ../../templates/show_playlist_edit.inc.php:27 +msgid "Editing Playlist" +msgstr "" + +#: ../../templates/show_playlist_edit.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:31 +#: ../../templates/show_user.inc.php:25 +#: ../../templates/show_localplay.inc.php:47 +#: ../../templates/show_edit_catalog.inc.php:27 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_add_access.inc:30 +#: ../../templates/show_access_list.inc:50 +#: ../../templates/show_edit_access.inc:27 +msgid "Name" +msgstr "" + +#: ../../templates/show_playlist_edit.inc.php:36 +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_random_play.inc:51 +#: ../../templates/show_access_list.inc:56 +msgid "Type" +msgstr "" + +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" +msgstr "" + +#: ../../templates/show_playlist_edit.inc.php:40 +msgid "Private" +msgstr "" + +#: ../../templates/show_playlist_edit.inc.php:48 +#: ../../templates/show_edit_access.inc:78 +msgid "Update" +msgstr "" + +#: ../../templates/sidebar.inc.php:29 +msgid "Users" +msgstr "" + +#: ../../templates/sidebar.inc.php:30 +msgid "Mail Users" +msgstr "" + +#: ../../templates/sidebar.inc.php:32 +msgid "Site Preferences" +msgstr "" + +#: ../../templates/sidebar.inc.php:33 +msgid "Access List" +msgstr "" + +#: ../../templates/sidebar.inc.php:34 ../../templates/show_modules.inc.php:33 msgid "Modules" msgstr "" -#: ../../templates/show_modules.inc.php:36 -msgid "Module Name" +#: ../../templates/sidebar.inc.php:39 +msgid "Song Title" +msgstr "" + +#: ../../templates/sidebar.inc.php:40 +msgid "Lists" +msgstr "" + +#: ../../templates/sidebar.inc.php:65 ../../templates/menu.inc:60 +#: ../../templates/menu.inc:63 +msgid "Admin" +msgstr "" + +#: ../../templates/sidebar.inc.php:165 +msgid "Minutes" +msgstr "" + +#: ../../templates/sidebar.inc.php:168 +msgid "Less Played" +msgstr "" + +#: ../../templates/sidebar.inc.php:173 +msgid "Enqueue" +msgstr "" + +#: ../../templates/sidebar.inc.php:197 ../../templates/menu.inc:72 +#: ../../templates/menu.inc:78 ../../templates/menu.inc:82 +msgid "Logout" +msgstr "" + +#: ../../templates/show_admin_tools.inc.php:28 +msgid "Catalogs" msgstr "" +#: ../../templates/show_admin_tools.inc.php:32 #: ../../templates/show_modules.inc.php:37 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_flagged.inc.php:31 -#: ../../templates/show_admin_tools.inc.php:35 -#: ../../templates/show_localplay.inc.php:49 #: ../../templates/show_users_info.inc.php:30 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_flagged.inc.php:31 +#: ../../templates/show_localplay.inc.php:48 #: ../../templates/show_uploads.inc:32 ../../templates/show_mpdpl.inc:57 -#: ../../templates/show_songs.inc:46 ../../templates/show_artists.inc:44 -#: ../../templates/show_artists.inc:66 ../../templates/show_albums.inc:47 -#: ../../templates/show_albums.inc:79 ../../templates/show_access_list.inc:52 -#: ../../templates/show_artist.inc:42 +#: ../../templates/show_songs.inc:56 ../../templates/show_artists.inc:45 +#: ../../templates/show_artists.inc:67 ../../templates/show_albums.inc:48 +#: ../../templates/show_albums.inc:80 ../../templates/show_access_list.inc:57 +#: ../../templates/show_artist.inc:43 msgid "Action" msgstr "" -#: ../../templates/show_modules.inc.php:43 -msgid "Activate" +#: ../../templates/show_admin_tools.inc.php:43 +#: ../../templates/show_uploads.inc:51 +msgid "Add" msgstr "" -#: ../../templates/show_modules.inc.php:47 -msgid "Deactivate" +#: ../../templates/show_admin_tools.inc.php:45 +msgid "Verify" msgstr "" -#: ../../templates/show_modules.inc.php:56 -#: ../../templates/show_flagged.inc.php:52 -#: ../../templates/show_localplay.inc.php:65 -#: ../../templates/show_users_info.inc.php:52 -msgid "No Records Found" +#: ../../templates/show_admin_tools.inc.php:47 +msgid "Clean" msgstr "" -#: ../../templates/show_import_playlist.inc.php:24 -msgid "Importing a Playlist from a File" +#: ../../templates/show_admin_tools.inc.php:58 +msgid "No Catalogs Found" msgstr "" -#: ../../templates/show_import_playlist.inc.php:28 -#: ../../templates/show_uploads.inc:41 ../../templates/list_duplicates.inc:39 -#: ../../templates/show_search.inc:68 -msgid "Filename" +#: ../../templates/show_admin_tools.inc.php:64 +msgid "Clean All" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" +#: ../../templates/show_admin_tools.inc.php:65 +msgid "Verify All" msgstr "" -#: ../../templates/show_import_playlist.inc.php:48 -msgid "Import Playlist" +#: ../../templates/show_admin_tools.inc.php:66 +msgid "Add to All" msgstr "" -#: ../../templates/show_genre.inc.php:32 -msgid "Viewing" +#: ../../templates/show_admin_tools.inc.php:67 +msgid "Update All" msgstr "" -#: ../../templates/show_genre.inc.php:35 ../../templates/sidebar.inc.php:36 -#: ../../templates/sidebar.inc.php:176 -#: ../../templates/show_local_catalog_info.inc.php:36 -#: ../../templates/show_artists.inc:43 ../../templates/show_artists.inc:65 -msgid "Albums" +#: ../../templates/show_admin_tools.inc.php:70 +#: ../../templates/show_add_catalog.inc.php:78 ../../templates/catalog.inc:35 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_genre.inc.php:38 ../../templates/sidebar.inc.php:37 -#: ../../templates/sidebar.inc.php:175 -#: ../../templates/show_local_catalog_info.inc.php:40 -msgid "Artists" +#: ../../templates/show_admin_tools.inc.php:74 +msgid "Other Tools" msgstr "" -#: ../../templates/show_genre.inc.php:41 -#: ../../templates/show_genres.inc.php:37 ../../templates/sidebar.inc.php:173 -#: ../../templates/show_local_catalog_info.inc.php:44 -#: ../../templates/show_artists.inc:42 ../../templates/show_artists.inc:64 -#: ../../templates/show_albums.inc:43 ../../templates/show_albums.inc:75 -msgid "Songs" +#: ../../templates/show_admin_tools.inc.php:76 ../../templates/catalog.inc:30 +msgid "Show Duplicate Songs" msgstr "" -#: ../../templates/show_user.inc.php:25 -#: ../../templates/show_playlist_edit.inc.php:32 -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_localplay.inc.php:48 -#: ../../templates/customize_catalog.inc:30 -#: ../../templates/show_add_access.inc:38 -#: ../../templates/show_access_list.inc:48 -#: ../../templates/show_edit_access.inc:29 -msgid "Name" +#: ../../templates/show_admin_tools.inc.php:77 ../../templates/catalog.inc:33 +msgid "Clear Now Playing" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "Results Per Page" +#: ../../templates/show_admin_tools.inc.php:80 +msgid "User Activity" msgstr "" -#: ../../templates/show_user.inc.php:43 -msgid "New Password" +#: ../../templates/show_admin_tools.inc.php:83 +#: ../../templates/show_admin_info.inc.php:37 +#: ../../templates/show_admin_info.inc.php:45 +msgid "Show All" msgstr "" -#: ../../templates/show_user.inc.php:56 -msgid "Clear Stats" +#: ../../templates/show_artist_box.inc.php:23 +msgid "Albums by" msgstr "" -#: ../../templates/show_user.inc.php:66 -msgid "Update Account" +#: ../../templates/show_artist_box.inc.php:33 +msgid "Show All Songs By" msgstr "" -#: ../../templates/sidebar.inc.php:29 -msgid "Users" +#: ../../templates/show_artist_box.inc.php:34 +msgid "Play All Songs By" msgstr "" -#: ../../templates/sidebar.inc.php:30 -msgid "Mail Users" +#: ../../templates/show_artist_box.inc.php:35 +msgid "Play Random Songs By" msgstr "" -#: ../../templates/sidebar.inc.php:32 -msgid "Site Preferences" +#: ../../templates/show_artist_box.inc.php:37 +#: ../../templates/show_album.inc:63 +msgid "Update from tags" msgstr "" -#: ../../templates/sidebar.inc.php:33 -msgid "Access List" +#: ../../templates/show_artist_box.inc.php:38 +msgid "Rename Artist" msgstr "" -#: ../../templates/sidebar.inc.php:39 -msgid "Lists" +#: ../../templates/show_artist_box.inc.php:39 +msgid "Find duplicate artists" msgstr "" -#: ../../templates/sidebar.inc.php:60 ../../templates/menu.inc:29 -msgid "Home" +#: ../../templates/show_user.inc.php:31 +#: ../../templates/show_user_registration.inc.php:118 +#: ../../templates/show_edit_user.inc.php:55 +msgid "E-mail" msgstr "" -#: ../../templates/sidebar.inc.php:73 ../../templates/menu.inc:60 -#: ../../templates/menu.inc:63 -msgid "Admin" +#: ../../templates/show_user.inc.php:37 +msgid "Results Per Page" msgstr "" -#: ../../templates/sidebar.inc.php:92 ../../templates/menu.inc:40 -msgid "Preferences" +#: ../../templates/show_user.inc.php:43 +msgid "New Password" msgstr "" -#: ../../templates/sidebar.inc.php:119 ../../templates/menu.inc:43 -#: ../../templates/show_upload.inc:73 -msgid "Upload" +#: ../../templates/show_user.inc.php:50 +#: ../../templates/show_user_registration.inc.php:136 +#: ../../templates/show_edit_user.inc.php:72 +msgid "Confirm Password" msgstr "" -#: ../../templates/sidebar.inc.php:126 -#: ../../templates/show_playlists.inc.php:30 ../../templates/menu.inc:38 -msgid "Playlists" +#: ../../templates/show_user.inc.php:56 +msgid "Clear Stats" msgstr "" -#: ../../templates/sidebar.inc.php:129 -msgid "Statistics" +#: ../../templates/show_user.inc.php:66 +msgid "Update Account" msgstr "" -#: ../../templates/sidebar.inc.php:153 -#: ../../templates/show_playlists.inc.php:63 -#: ../../templates/show_artists.inc:56 ../../templates/show_albums.inc:61 -#: ../../templates/show_mpdplay.inc:101 -msgid "Random" +#: ../../templates/show_preference_box.inc.php:43 +msgid "Preference" msgstr "" -#: ../../templates/sidebar.inc.php:174 -msgid "Minutes" +#: ../../templates/show_preference_box.inc.php:44 +msgid "Value" msgstr "" -#: ../../templates/sidebar.inc.php:177 -msgid "Less Played" +#: ../../templates/show_preference_box.inc.php:46 +msgid "Apply to All" msgstr "" -#: ../../templates/sidebar.inc.php:182 -msgid "Enqueue" +#: ../../templates/show_preference_box.inc.php:52 +msgid "description" msgstr "" -#: ../../templates/sidebar.inc.php:206 ../../templates/menu.inc:72 -#: ../../templates/menu.inc:78 ../../templates/menu.inc:82 -msgid "Logout" +#: ../../templates/show_user_registration.inc.php:55 +msgid "Ampache New User Registration" msgstr "" -#: ../../templates/show_confirmation.inc.php:27 -msgid "Continue" +#: ../../templates/show_user_registration.inc.php:70 +msgid "User Agreement" msgstr "" -#: ../../templates/show_confirmation.inc.php:29 -#: ../../templates/show_preferences.inc:92 -#: ../../templates/show_similar_artists.inc:75 -msgid "Cancel" +#: ../../templates/show_user_registration.inc.php:80 +msgid "I Accept" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:94 +msgid "User Information" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:109 +#: ../../templates/show_edit_user.inc.php:48 +msgid "Full Name" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:156 +msgid "Clear Info" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:157 +msgid "Register User" msgstr "" #: ../../templates/show_install_lang.inc.php:14 @@ -1172,8 +1447,8 @@ msgid "Requirements" msgstr "" #: ../../templates/show_install_lang.inc.php:20 -#: ../../templates/show_install.inc:21 #: ../../templates/show_install_config.inc:45 +#: ../../templates/show_install.inc:21 msgid "" "Your webserver has read access to the /sql/ampache.sql file and the /config/" "ampache.cfg.php.dist file" @@ -1183,488 +1458,496 @@ msgstr "" msgid "Start configuration" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" -msgstr "" - -#: ../../templates/show_local_catalog_info.inc.php:32 -msgid "Connected Users" -msgstr "" - -#: ../../templates/show_local_catalog_info.inc.php:48 -msgid "Catalog Size" +#: ../../templates/show_modules.inc.php:36 +msgid "Module Name" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:52 -msgid "Catalog Time" +#: ../../templates/show_modules.inc.php:43 +msgid "Activate" msgstr "" -#: ../../templates/show_flag.inc.php:42 -msgid "Flag song" +#: ../../templates/show_modules.inc.php:47 +msgid "Deactivate" msgstr "" -#: ../../templates/show_flag.inc.php:43 -msgid "" -"Flag the following song as having one of the problems listed below. Site " -"admins will then take the appropriate action for the flagged files." +#: ../../templates/show_modules.inc.php:56 +#: ../../templates/show_users_info.inc.php:52 +#: ../../templates/show_flagged.inc.php:52 +#: ../../templates/show_localplay.inc.php:64 +msgid "No Records Found" msgstr "" -#: ../../templates/show_flag.inc.php:48 -#: ../../templates/show_edit_song.inc.php:28 -msgid "File" +#: ../../templates/show_edit_song.inc.php:24 +msgid "Edit Song" msgstr "" -#: ../../templates/show_flag.inc.php:52 -msgid "Item" +#: ../../templates/show_edit_song.inc.php:41 +#: ../../templates/show_edit_song.inc.php:49 +#: ../../templates/show_edit_song.inc.php:57 +#: ../../templates/show_rename_artist.inc.php:33 +#: ../../templates/show_search.inc:105 +msgid "OR" msgstr "" -#: ../../templates/show_flag.inc.php:56 -msgid "Reason to flag" +#: ../../templates/show_edit_song.inc.php:82 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_flag.inc.php:60 -msgid "Incorrect Tags" +#: ../../templates/show_edit_song.inc.php:90 +msgid "Update Song" msgstr "" -#: ../../templates/show_flag.inc.php:73 -#: ../../templates/show_flagged.inc.php:29 ../../templates/show_songs.inc:121 -msgid "Flag" +#: ../../templates/show_import_playlist.inc.php:24 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_play_selected.inc.php:28 -msgid "Play Selected" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_list_duplicates.inc.php:39 +#: ../../templates/show_uploads.inc:41 ../../templates/show_search.inc:65 +msgid "Filename" msgstr "" -#: ../../templates/show_play_selected.inc.php:31 -msgid "Download Selected" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" msgstr "" -#: ../../templates/show_play_selected.inc.php:40 -msgid "Set Track Numbers" +#: ../../templates/show_import_playlist.inc.php:48 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_play_selected.inc.php:41 -msgid "Remove Selected Tracks" +#: ../../templates/show_genre.inc.php:29 +msgid "Viewing" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Playlist" +#: ../../templates/show_mail_users.inc.php:25 +msgid "Send E-mail to Users" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Add to" +#: ../../templates/show_mail_users.inc.php:28 +msgid "Mail to" msgstr "" -#: ../../templates/show_play_selected.inc.php:49 -#: ../../templates/show_playlists.inc.php:52 -msgid "View" +#: ../../templates/show_mail_users.inc.php:45 +#: ../../templates/show_all_popular.inc.php:30 ../../index.php:62 +msgid "Most Popular Albums" msgstr "" -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_playlists.inc.php:55 -#: ../../templates/show_users_info.inc.php:46 -#: ../../templates/show_songs.inc:123 ../../templates/show_users.inc:59 -#: ../../templates/show_users.inc:101 ../../templates/show_access_list.inc:65 -msgid "Edit" +#: ../../templates/show_mail_users.inc.php:52 +#: ../../templates/show_all_recent.inc.php:27 ../../index.php:90 +msgid "Newest Artist Additions" msgstr "" -#: ../../templates/show_all_recent.inc.php:27 ../../index.php:95 -msgid "Newest Artist Additions" +#: ../../templates/show_mail_users.inc.php:56 +#: ../../templates/show_all_popular.inc.php:27 ../../index.php:73 +msgid "Most Popular Artists" msgstr "" -#: ../../templates/show_all_recent.inc.php:30 ../../index.php:102 +#: ../../templates/show_mail_users.inc.php:63 +#: ../../templates/show_all_recent.inc.php:30 ../../index.php:97 msgid "Newest Album Additions" msgstr "" -#: ../../templates/show_all_popular.inc.php:27 ../../index.php:78 -msgid "Most Popular Artists" +#: ../../templates/show_mail_users.inc.php:67 +#: ../../templates/show_all_popular.inc.php:40 ../../index.php:80 +msgid "Most Popular Songs" msgstr "" -#: ../../templates/show_all_popular.inc.php:30 ../../index.php:67 -msgid "Most Popular Albums" +#: ../../templates/show_mail_users.inc.php:77 +msgid "Subject" msgstr "" -#: ../../templates/show_all_popular.inc.php:37 -msgid "Most Popular Genres" +#: ../../templates/show_mail_users.inc.php:84 +msgid "Message" msgstr "" -#: ../../templates/show_all_popular.inc.php:40 ../../index.php:85 -msgid "Most Popular Songs" +#: ../../templates/show_mail_users.inc.php:94 +msgid "Send Mail" msgstr "" -#: ../../templates/show_get_albumart.inc.php:28 -msgid "Customize Search" +#: ../../templates/show_admin_info.inc.php:34 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_get_albumart.inc.php:49 -msgid "Direct URL to Image" +#: ../../templates/show_admin_info.inc.php:41 +msgid "Disabled Songs" msgstr "" -#: ../../templates/show_get_albumart.inc.php:59 -msgid "Get Art" +#: ../../templates/show_object_rating.inc.php:51 +#: ../../templates/show_object_rating.inc.php:54 +#: ../../templates/show_object_rating.inc.php:57 +#: ../../templates/show_object_rating.inc.php:60 +#: ../../templates/show_object_rating.inc.php:63 +msgid "out of" msgstr "" -#: ../../templates/show_artist_box.inc.php:25 -msgid "Albums by" +#: ../../templates/show_users_info.inc.php:27 +#: ../../templates/show_users.inc:41 +msgid "Fullname" msgstr "" -#: ../../templates/show_artist_box.inc.php:28 -msgid "Show All Songs By" +#: ../../templates/show_users_info.inc.php:28 +#: ../../templates/show_users.inc:49 +msgid "Last Seen" msgstr "" -#: ../../templates/show_artist_box.inc.php:29 -msgid "Play All Songs By" +#: ../../templates/show_users_info.inc.php:29 +#: ../../templates/show_users.inc:58 +msgid "Activity" msgstr "" -#: ../../templates/show_artist_box.inc.php:30 -msgid "Play Random Songs By" +#: ../../templates/show_confirmation.inc.php:26 +msgid "Continue" msgstr "" -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_album.inc:67 -msgid "Update from tags" +#: ../../templates/show_confirmation.inc.php:28 +#: ../../templates/show_preferences.inc:90 +#: ../../templates/show_similar_artists.inc:75 +msgid "Cancel" msgstr "" -#: ../../templates/show_artist_box.inc.php:33 -msgid "Rename Artist" +#: ../../templates/show_flagged.inc.php:28 +msgid "Object" msgstr "" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Find duplicate artists" +#: ../../templates/show_flagged.inc.php:30 ../../templates/show_uploads.inc:33 +msgid "Status" msgstr "" -#: ../../templates/show_rename_artist.inc.php:34 -#: ../../templates/show_rename_artist.inc.php:52 -msgid "Rename" +#: ../../templates/show_flagged.inc.php:41 +msgid "Reject" msgstr "" -#: ../../templates/show_rename_artist.inc.php:34 -msgid "to" +#: ../../templates/show_flagged.inc.php:45 +msgid "Approve" msgstr "" -#: ../../templates/show_rename_artist.inc.php:41 -#: ../../templates/show_edit_song.inc.php:41 -#: ../../templates/show_edit_song.inc.php:49 -#: ../../templates/show_edit_song.inc.php:57 -#: ../../templates/show_search.inc:108 -msgid "OR" +#: ../../templates/show_rename_artist.inc.php:29 +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" msgstr "" -#: ../../templates/show_rename_artist.inc.php:43 +#: ../../templates/show_rename_artist.inc.php:35 msgid "Insert current" msgstr "" -#: ../../templates/show_rename_artist.inc.php:48 +#: ../../templates/show_rename_artist.inc.php:37 msgid "Update id3 tags" msgstr "" -#: ../../templates/show_playlists.inc.php:33 -msgid "Playlist Name" -msgstr "" - -#: ../../templates/show_playlists.inc.php:34 -msgid "# Songs" -msgstr "" - -#: ../../templates/show_playlists.inc.php:35 -msgid "Owner" +#: ../../templates/show_get_albumart.inc.php:23 +msgid "Customize Search" msgstr "" -#: ../../templates/show_playlists.inc.php:36 -msgid "Actions" +#: ../../templates/show_get_albumart.inc.php:46 +msgid "Direct URL to Image" msgstr "" -#: ../../templates/show_playlists.inc.php:66 -#: ../../templates/show_songs.inc:131 ../../templates/show_album.inc:70 -#: ../../templates/show_random_play.inc:84 ../../templates/show_albums.inc:63 -#: ../../templates/show_artist.inc:67 -msgid "Download" +#: ../../templates/show_get_albumart.inc.php:56 +msgid "Get Art" msgstr "" -#: ../../templates/show_playlists.inc.php:75 -msgid "No Playlists Found" +#: ../../templates/show_playlist_box.inc.php:30 +msgid "Playist Actions" msgstr "" #: ../../templates/show_playlist_box.inc.php:35 -msgid "Playlist Actions" -msgstr "" - -#: ../../templates/show_playlist_box.inc.php:38 msgid "Edit Playlist" msgstr "" -#: ../../templates/show_playlist_box.inc.php:39 +#: ../../templates/show_playlist_box.inc.php:36 msgid "Normalize Tracks" msgstr "" -#: ../../templates/show_playlist_box.inc.php:40 +#: ../../templates/show_playlist_box.inc.php:37 msgid "Play This Playlist" msgstr "" -#: ../../templates/show_playlist_box.inc.php:41 +#: ../../templates/show_playlist_box.inc.php:38 msgid "Play Random" msgstr "" -#: ../../templates/show_playlist_box.inc.php:42 +#: ../../templates/show_playlist_box.inc.php:39 msgid "Delete This Playlist" msgstr "" -#: ../../templates/show_playlist_box.inc.php:44 +#: ../../templates/show_playlist_box.inc.php:41 msgid "Import From File" msgstr "" -#: ../../templates/show_playlist_box.inc.php:45 +#: ../../templates/show_playlist_box.inc.php:42 msgid "Create New Playlist" msgstr "" -#: ../../templates/show_playlist_box.inc.php:47 +#: ../../templates/show_playlist_box.inc.php:44 msgid "Delete Empty Playlists" msgstr "" -#: ../../templates/show_flagged.inc.php:28 -msgid "Object" +#: ../../templates/show_all_popular.inc.php:37 +msgid "Most Popular Genres" msgstr "" -#: ../../templates/show_flagged.inc.php:30 ../../templates/show_uploads.inc:33 -msgid "Status" +#: ../../templates/show_play_selected.inc.php:28 +msgid "Play Selected" msgstr "" -#: ../../templates/show_flagged.inc.php:41 -msgid "Reject" +#: ../../templates/show_play_selected.inc.php:31 +msgid "Download Selected" msgstr "" -#: ../../templates/show_flagged.inc.php:45 -msgid "Approve" +#: ../../templates/show_play_selected.inc.php:40 +msgid "Set Track Numbers" msgstr "" -#: ../../templates/show_edit_song.inc.php:24 -msgid "Edit Song" +#: ../../templates/show_play_selected.inc.php:41 +msgid "Remove Selected Tracks" msgstr "" -#: ../../templates/show_edit_song.inc.php:82 -msgid "Flag for Retagging" +#: ../../templates/show_play_selected.inc.php:47 +msgid "Add to" msgstr "" -#: ../../templates/show_edit_song.inc.php:90 -msgid "Update Song" +#: ../../templates/show_localplay.inc.php:33 +msgid "Clear Playlist" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:29 -msgid "Editing Playlist" +#: ../../templates/show_localplay.inc.php:43 +msgid "Current Playlist" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:38 -#: ../../templates/show_random_play.inc:52 -msgid "Type" +#: ../../templates/show_edit_catalog.inc.php:23 +msgid "Settings for" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:41 -msgid "Public" +#: ../../templates/show_edit_catalog.inc.php:30 +#: ../../templates/show_add_catalog.inc.php:38 +msgid "Auto-inserted Fields" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:42 -msgid "Private" +#: ../../templates/show_edit_catalog.inc.php:31 +#: ../../templates/show_add_catalog.inc.php:39 +msgid "album name" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:50 -#: ../../templates/show_edit_access.inc:61 -msgid "Update" +#: ../../templates/show_edit_catalog.inc.php:32 +#: ../../templates/show_add_catalog.inc.php:40 +msgid "artist name" msgstr "" -#: ../../templates/show_preference_box.inc.php:43 -msgid "Preference" +#: ../../templates/show_edit_catalog.inc.php:33 +msgid "catalog path" msgstr "" -#: ../../templates/show_preference_box.inc.php:44 -msgid "Value" +#: ../../templates/show_edit_catalog.inc.php:34 +#: ../../templates/show_add_catalog.inc.php:41 +msgid "id3 comment" msgstr "" -#: ../../templates/show_preference_box.inc.php:46 -msgid "Apply to All" +#: ../../templates/show_edit_catalog.inc.php:35 +#: ../../templates/show_add_catalog.inc.php:42 +msgid "genre" msgstr "" -#: ../../templates/show_preference_box.inc.php:52 -msgid "description" +#: ../../templates/show_edit_catalog.inc.php:36 +#: ../../templates/show_add_catalog.inc.php:43 +msgid "track number (padded with leading 0)" msgstr "" -#: ../../templates/show_admin_tools.inc.php:28 -msgid "Catalogs" +#: ../../templates/show_edit_catalog.inc.php:37 +#: ../../templates/show_add_catalog.inc.php:44 +msgid "song title" msgstr "" -#: ../../templates/show_admin_tools.inc.php:46 -#: ../../templates/show_uploads.inc:51 -msgid "Add" +#: ../../templates/show_edit_catalog.inc.php:38 +#: ../../templates/show_add_catalog.inc.php:45 +msgid "year" msgstr "" -#: ../../templates/show_admin_tools.inc.php:48 -msgid "Verify" +#: ../../templates/show_edit_catalog.inc.php:39 +#: ../../templates/show_add_catalog.inc.php:46 +msgid "other" msgstr "" -#: ../../templates/show_admin_tools.inc.php:50 -msgid "Clean" +#: ../../templates/show_edit_catalog.inc.php:43 +#: ../../templates/show_add_catalog.inc.php:64 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/show_admin_tools.inc.php:61 -msgid "No Catalogs Found" +#: ../../templates/show_edit_catalog.inc.php:49 +msgid "Filename pattern" msgstr "" -#: ../../templates/show_admin_tools.inc.php:67 -msgid "Clean All" +#: ../../templates/show_edit_catalog.inc.php:56 +#: ../../templates/show_add_catalog.inc.php:73 +msgid "Folder Pattern" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -msgid "Verify All" +#: ../../templates/show_edit_catalog.inc.php:56 +#: ../../templates/show_add_catalog.inc.php:73 +msgid "(no leading or ending '/')" msgstr "" -#: ../../templates/show_admin_tools.inc.php:69 -msgid "Add to All" +#: ../../templates/show_edit_catalog.inc.php:67 +msgid "Save Catalog Settings" msgstr "" -#: ../../templates/show_admin_tools.inc.php:70 -msgid "Update All" +#: ../../templates/show_localplay_status.inc.php:58 +msgid "Volume" msgstr "" -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/add_catalog.inc:82 ../../templates/catalog.inc:35 -msgid "Gather Album Art" +#: ../../templates/show_localplay_status.inc.php:62 +msgid "Repeat" msgstr "" -#: ../../templates/show_admin_tools.inc.php:77 -msgid "Other Tools" +#: ../../templates/show_add_playlist.inc.php:24 +msgid "Create a new playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:80 ../../templates/catalog.inc:30 -msgid "Show Duplicate Songs" +#: ../../templates/show_add_playlist.inc.php:42 +msgid "Create" msgstr "" -#: ../../templates/show_admin_tools.inc.php:81 ../../templates/catalog.inc:33 -msgid "Clear Now Playing" +#: ../../templates/show_add_catalog.inc.php:30 +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_admin_tools.inc.php:84 -msgid "User Activity" +#: ../../templates/show_add_catalog.inc.php:35 +msgid "Catalog Name" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/show_admin_info.inc.php:39 -#: ../../templates/show_admin_info.inc.php:47 -msgid "Show All" +#: ../../templates/show_add_catalog.inc.php:51 +msgid "Path" msgstr "" -#: ../../templates/show_admin_info.inc.php:34 -msgid "Information" +#: ../../templates/show_add_catalog.inc.php:55 +msgid "Catalog Type" msgstr "" -#: ../../templates/show_admin_info.inc.php:36 -msgid "Last Ten Flagged Records" +#: ../../templates/show_add_catalog.inc.php:58 +msgid "Local" msgstr "" -#: ../../templates/show_admin_info.inc.php:42 -msgid "Disabled Songs" +#: ../../templates/show_add_catalog.inc.php:59 +msgid "Remote" msgstr "" -#: ../../templates/show_localplay.inc.php:32 -msgid "Clear Playlist" +#: ../../templates/show_add_catalog.inc.php:65 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/show_mail_users.inc.php:24 -msgid "Send E-mail to Users" +#: ../../templates/show_add_catalog.inc.php:68 +msgid "Filename Pattern" msgstr "" -#: ../../templates/show_mail_users.inc.php:27 -msgid "Mail to" +#: ../../templates/show_add_catalog.inc.php:82 +msgid "ID3V2 Tags" msgstr "" -#: ../../templates/show_mail_users.inc.php:38 -msgid "Subject" +#: ../../templates/show_add_catalog.inc.php:86 +msgid "Amazon" msgstr "" -#: ../../templates/show_mail_users.inc.php:45 -msgid "Message" +#: ../../templates/show_add_catalog.inc.php:90 +msgid "File Folder" msgstr "" -#: ../../templates/show_mail_users.inc.php:55 -msgid "Send Mail" +#: ../../templates/show_add_catalog.inc.php:98 +msgid "Build Playlists from m3u Files" msgstr "" -#: ../../templates/show_users_info.inc.php:27 -#: ../../templates/show_users.inc:41 -msgid "Fullname" +#: ../../templates/show_add_catalog.inc.php:106 +msgid "Add Catalog" msgstr "" -#: ../../templates/show_users_info.inc.php:28 -#: ../../templates/show_users.inc:49 -msgid "Last Seen" +#: ../../templates/show_edit_user.inc.php:25 +msgid "Adding a New User" msgstr "" -#: ../../templates/show_users_info.inc.php:29 -msgid "Activity" +#: ../../templates/show_edit_user.inc.php:29 +msgid "Editing existing User" msgstr "" -#: ../../localplay.php:51 -msgid "Song(s) Removed from Playlist" +#: ../../templates/show_edit_user.inc.php:80 +msgid "User Access Level" msgstr "" -#: ../../localplay.php:59 -msgid "Song(s) Remove from Playlist" +#: ../../templates/show_edit_user.inc.php:94 +msgid "Add User" msgstr "" -#: ../../browse.php:48 ../../albums.php:159 ../../albums.php:165 -#: ../../albums.php:172 ../../albums.php:177 ../../albums.php:183 -msgid "Show Albums starting with" +#: ../../templates/show_edit_user.inc.php:98 +msgid "Update User" msgstr "" -#: ../../browse.php:78 ../../artists.php:196 ../../artists.php:200 -#: ../../artists.php:206 ../../artists.php:219 -msgid "Show Artists starting with" +#: ../../templates/show_list_duplicates.inc.php:28 +msgid "Duplicate Songs" msgstr "" -#: ../../search.php:48 -msgid "Error: No Keyword Entered" +#: ../../templates/show_list_duplicates.inc.php:33 +#: ../../templates/show_uploads.inc:34 +msgid "Song" msgstr "" -#: ../../playlist.php:46 -msgid "Playlist Deleted" +#: ../../templates/show_list_duplicates.inc.php:36 +msgid "Length" msgstr "" -#: ../../playlist.php:46 -msgid "The Requested Playlist has been deleted" +#: ../../templates/show_list_duplicates.inc.php:38 +#: ../../templates/show_uploads.inc:40 ../../templates/show_songs.inc:53 +msgid "Size" msgstr "" -#: ../../playlist.php:56 -msgid "Are you sure you want to delete this playlist" +#: ../../templates/show_list_duplicates.inc.php:71 +msgid "You don't have any duplicate songs." msgstr "" -#: ../../playlist.php:63 -msgid "New Playlist" +#: ../../localplay.php:51 +msgid "Song(s) Removed from Playlist" msgstr "" -#: ../../playlist.php:113 -msgid "Playlist Created" +#: ../../localplay.php:59 +msgid "Song(s) Remove from Playlist" msgstr "" -#: ../../playlist.php:113 -msgid " has been created" +#: ../../browse.php:48 ../../albums.php:165 +msgid "Show Albums starting with" msgstr "" -#: ../../playlist.php:122 -msgid "Remote Selected Tracks" +#: ../../browse.php:78 ../../artists.php:198 ../../artists.php:220 +msgid "Show Artists starting with" msgstr "" -#: ../../playlist.php:141 -msgid "Playlist Updated" +#: ../../browse.php:123 +msgid "Show Titles Starting With" msgstr "" -#: ../../playlist.php:142 -msgid "has been updated and is now" +#: ../../search.php:47 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../playlist.php:156 -msgid "Playlist Imported" +#: ../../ratings.php:33 +msgid "Rating Updated" msgstr "" -#: ../../playlist.php:185 -msgid "Empty Playlists Deleted" +#: ../../ratings.php:33 +msgid "Your rating for this object has been updated" +msgstr "" + +#: ../../login.php:80 +msgid "User Disabled please contact Admin" +msgstr "" + +#: ../../login.php:94 +msgid "Unable to create new account" +msgstr "" + +#: ../../login.php:103 +msgid "No local account found" +msgstr "" + +#: ../../login.php:174 +msgid "Message of the Day" msgstr "" #: ../../preferences.php:53 @@ -1675,84 +1958,80 @@ msgstr "" msgid "Password Updated" msgstr "" -#: ../../register.php:79 -msgid "Error Captcha Required" -msgstr "" - -#: ../../register.php:86 -msgid "Error Captcha Failed" +#: ../../update.php:74 +msgid "Ampache Update" msgstr "" -#: ../../register.php:93 -msgid "You <U>must</U> accept the user agreement" +#: ../../artists.php:59 ../../albums.php:142 +msgid "Starting Update from Tags" msgstr "" -#: ../../register.php:98 -msgid "You did not enter a username" +#: ../../artists.php:64 ../../albums.php:147 +msgid "Update From Tags Complete" msgstr "" -#: ../../register.php:102 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../stats.php:39 +msgid "Favorites" msgstr "" -#: ../../register.php:128 -msgid "You must enter a password" +#: ../../activate.php:44 +msgid "No user with this name registered" msgstr "" -#: ../../register.php:132 -msgid "Your passwords do not match" +#: ../../activate.php:48 +msgid "The validation key used isn't correct." msgstr "" -#: ../../register.php:150 -msgid "Error: Insert Failed" +#: ../../activate.php:53 +msgid "User activated" msgstr "" -#: ../../register.php:165 -msgid "Registration Complete" +#: ../../activate.php:53 +msgid "This User ID is activated and can be used" msgstr "" -#: ../../update.php:74 -msgid "Ampache Update" +#: ../../playlist.php:46 +msgid "Playlist Deleted" msgstr "" -#: ../../tv.php:75 ../../templates/show_now_playing.inc:33 -msgid "Now Playing" +#: ../../playlist.php:46 +msgid "The Requested Playlist has been deleted" msgstr "" -#: ../../artists.php:59 ../../albums.php:138 -msgid "Starting Update from Tags" +#: ../../playlist.php:56 +msgid "Are you sure you want to delete this playlist" msgstr "" -#: ../../artists.php:64 ../../albums.php:143 -msgid "Update From Tags Complete" +#: ../../playlist.php:63 +msgid "New Playlist" msgstr "" -#: ../../activate.php:41 -msgid "No user with this name registered" +#: ../../playlist.php:117 +msgid "Playlist Created" msgstr "" -#: ../../activate.php:45 -msgid "The validation key used isn't correct." +#: ../../playlist.php:117 +msgid " has been created" msgstr "" -#: ../../activate.php:50 -msgid "User activated" +#: ../../playlist.php:126 +msgid "Remote Selected Tracks" msgstr "" -#: ../../activate.php:50 -msgid "This User ID is activated and can be used" +#: ../../playlist.php:145 +msgid "Playlist Updated" msgstr "" -#: ../../stats.php:41 -msgid "Favorites" +#: ../../playlist.php:146 +msgid "has been updated and is now" msgstr "" -#: ../../ratings.php:33 -msgid "Rating Updated" +#: ../../playlist.php:160 +msgid "Playlist Imported" msgstr "" -#: ../../ratings.php:33 -msgid "Your rating for this object has been updated" +#: ../../playlist.php:189 +msgid "Empty Playlists Deleted" msgstr "" #: ../../flag.php:46 @@ -1763,29 +2042,29 @@ msgstr "" msgid "The specified item has been flagged" msgstr "" -#: ../../albums.php:38 +#: ../../albums.php:42 msgid "Album Art Cleared" msgstr "" -#: ../../albums.php:38 +#: ../../albums.php:42 msgid "Album Art information has been removed from the database" msgstr "" -#: ../../albums.php:67 +#: ../../albums.php:71 msgid "No Amazon Developer Key set, amazon album art searching will not work" msgstr "" -#: ../../albums.php:97 +#: ../../albums.php:101 msgid "Album Art Not Located" msgstr "" -#: ../../albums.php:97 +#: ../../albums.php:101 msgid "" "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." msgstr "" -#: ../../albums.php:128 +#: ../../albums.php:132 msgid "Album Art Inserted" msgstr "" @@ -1825,27 +2104,76 @@ msgid "" "to permently delete this file" msgstr "" -#: ../../bin/quarantine_migration.php.inc:51 +#: ../../register.php:80 +msgid "Error Captcha Required" +msgstr "" + +#: ../../register.php:87 +msgid "Error Captcha Failed" +msgstr "" + +#: ../../register.php:94 +msgid "You <U>must</U> accept the user agreement" +msgstr "" + +#: ../../register.php:99 +msgid "You did not enter a username" +msgstr "" + +#: ../../register.php:103 +msgid "Please fill in your full name (Firstname Lastname)" +msgstr "" + +#: ../../register.php:129 +msgid "You must enter a password" +msgstr "" + +#: ../../register.php:133 +msgid "Your passwords do not match" +msgstr "" + +#: ../../register.php:151 +msgid "Error: Insert Failed" +msgstr "" + +#: ../../register.php:169 +msgid "Registration Complete" +msgstr "" + +#: ../../bin/print_tags.php.inc:59 +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 "" + +#: ../../bin/print_tags.php.inc:65 +msgid "Filename:" +msgstr "" + +#: ../../bin/quarantine_migration.php.inc:61 msgid "Error: Unable to write to" msgstr "" -#: ../../bin/quarantine_migration.php.inc:58 +#: ../../bin/quarantine_migration.php.inc:68 msgid "Error: Upload directory not inside a catalog" msgstr "" -#: ../../bin/quarantine_migration.php.inc:92 +#: ../../bin/quarantine_migration.php.inc:107 msgid "Adding" msgstr "" -#: ../../bin/quarantine_migration.php.inc:92 +#: ../../bin/quarantine_migration.php.inc:107 msgid "to database" msgstr "" -#: ../../bin/quarantine_migration.php.inc:109 +#: ../../bin/quarantine_migration.php.inc:124 msgid "Deleted" msgstr "" -#: ../../bin/quarantine_migration.php.inc:124 +#: ../../bin/quarantine_migration.php.inc:139 msgid "" "\n" "\t\n" @@ -1861,56 +2189,41 @@ msgid "" "\t\n" msgstr "" -#: ../../bin/quarantine_migration.php.inc:138 +#: ../../bin/quarantine_migration.php.inc:153 msgid "Continue? (Y/N):" msgstr "" -#: ../../bin/quarantine_migration.php.inc:163 +#: ../../bin/quarantine_migration.php.inc:178 msgid "Error: " msgstr "" -#: ../../bin/quarantine_migration.php.inc:164 +#: ../../bin/quarantine_migration.php.inc:179 msgid "!\n" msgstr "" -#: ../../templates/show_preferences.inc:51 -msgid "Editing" -msgstr "" - -#: ../../templates/show_preferences.inc:51 -msgid "preferences" -msgstr "" - -#: ../../templates/show_preferences.inc:53 -msgid "Rebuild Preferences" -msgstr "" - -#: ../../templates/show_preferences.inc:88 -msgid "Update Preferences" -msgstr "" - -#: ../../templates/show_uploads.inc:34 ../../templates/list_duplicates.inc:33 -msgid "Song" +#: ../../templates/show_uploads.inc:42 ../../templates/show_add_access.inc:48 +#: ../../templates/show_access_list.inc:54 +#: ../../templates/show_edit_access.inc:47 +msgid "User" msgstr "" -#: ../../templates/show_uploads.inc:40 ../../templates/show_songs.inc:43 -#: ../../templates/list_duplicates.inc:38 -msgid "Size" +#: ../../templates/show_uploads.inc:43 +msgid "Date" msgstr "" -#: ../../templates/show_uploads.inc:42 -msgid "User" +#: ../../templates/show_big_art.inc:31 +msgid "Album Art" msgstr "" -#: ../../templates/show_uploads.inc:43 -msgid "Date" +#: ../../templates/show_big_art.inc:35 +msgid "Click to close window" msgstr "" #: ../../templates/show_mpdpl.inc:43 msgid "MPD Server Playlist" msgstr "" -#: ../../templates/show_mpdpl.inc:51 ../../templates/show_songs.inc:38 +#: ../../templates/show_mpdpl.inc:51 ../../templates/show_songs.inc:48 msgid "Song title" msgstr "" @@ -1934,244 +2247,165 @@ msgstr "" msgid "Click to the remove all except the Now Playing" msgstr "" -#: ../../templates/customize_catalog.inc:25 -msgid "Settings for catalog in" -msgstr "" - -#: ../../templates/customize_catalog.inc:33 ../../templates/add_catalog.inc:40 -msgid "Auto-inserted Fields" -msgstr "" - -#: ../../templates/customize_catalog.inc:34 ../../templates/add_catalog.inc:41 -msgid "album name" -msgstr "" - -#: ../../templates/customize_catalog.inc:35 ../../templates/add_catalog.inc:42 -msgid "artist name" -msgstr "" - -#: ../../templates/customize_catalog.inc:36 -msgid "catalog path" -msgstr "" - -#: ../../templates/customize_catalog.inc:37 ../../templates/add_catalog.inc:43 -msgid "id3 comment" -msgstr "" - -#: ../../templates/customize_catalog.inc:38 ../../templates/add_catalog.inc:44 -msgid "genre" -msgstr "" - -#: ../../templates/customize_catalog.inc:39 ../../templates/add_catalog.inc:45 -msgid "track number (padded with leading 0)" -msgstr "" - -#: ../../templates/customize_catalog.inc:40 ../../templates/add_catalog.inc:46 -msgid "song title" -msgstr "" - -#: ../../templates/customize_catalog.inc:41 ../../templates/add_catalog.inc:47 -msgid "year" -msgstr "" - -#: ../../templates/customize_catalog.inc:42 ../../templates/add_catalog.inc:48 -msgid "other" -msgstr "" - -#: ../../templates/customize_catalog.inc:46 -msgid "ID3 set command" -msgstr "" - -#: ../../templates/customize_catalog.inc:52 -msgid "Filename pattern" -msgstr "" - -#: ../../templates/customize_catalog.inc:59 ../../templates/add_catalog.inc:77 -msgid "Folder Pattern" -msgstr "" - -#: ../../templates/customize_catalog.inc:59 ../../templates/add_catalog.inc:77 -msgid "(no leading or ending '/')" +#: ../../templates/menu.inc:70 ../../templates/menu.inc:76 +msgid "Account" msgstr "" -#: ../../templates/customize_catalog.inc:70 -msgid "Save Catalog Settings" +#: ../../templates/menu.inc:71 ../../templates/menu.inc:77 +#: ../../templates/show_users.inc:70 +msgid "Stats" msgstr "" -#: ../../templates/show_test.inc:34 -msgid "Ampache Debug" +#: ../../templates/list_header.inc:102 ../../templates/show_mpdplay.inc:53 +msgid "Prev" msgstr "" -#: ../../templates/show_test.inc:35 -msgid "" -"You've reached this page because a configuration error has occured. Debug " -"Information below" +#: ../../templates/list_header.inc:148 ../../templates/show_mpdplay.inc:57 +msgid "Next" msgstr "" -#: ../../templates/show_test.inc:39 -msgid "CHECK" +#: ../../templates/header.inc:52 +msgid "You are currently logged in as" msgstr "" -#: ../../templates/show_test.inc:41 -msgid "STATUS" +#: ../../templates/show_songs.inc:58 ../../templates/show_search.inc:90 +msgid "Rating" msgstr "" -#: ../../templates/show_test.inc:43 -msgid "DESCRIPTION" +#: ../../templates/show_songs.inc:144 +msgid "Direct Link" msgstr "" -#: ../../templates/show_test.inc:46 -msgid "PHP Version" +#: ../../templates/show_songs.inc:163 +msgid "Total" msgstr "" -#: ../../templates/show_test.inc:61 -msgid "" -"This tests to make sure that you are running a version of PHP that is known " -"to work with Ampache." +#: ../../templates/show_songs.inc:181 +msgid "** Indicates flagged songs" msgstr "" -#: ../../templates/show_test.inc:65 -msgid "Mysql for PHP" +#: ../../templates/show_install_config.inc:52 +#: ../../templates/show_install.inc:32 +msgid "Step 2 - Creating the Ampache.cfg.php file" msgstr "" -#: ../../templates/show_test.inc:80 +#: ../../templates/show_install_config.inc:54 msgid "" -"This test checks to see if you have the mysql extensions loaded for PHP. " -"These are required for Ampache to work." +"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_test.inc:84 -msgid "PHP Session Support" +#: ../../templates/show_install_config.inc:63 +msgid "Web Path" msgstr "" -#: ../../templates/show_test.inc:99 -msgid "" -"This test checks to make sure that you have PHP session support enabled. " -"Sessions are required for Ampache to work." +#: ../../templates/show_install_config.inc:67 +#: ../../templates/show_install.inc:40 +msgid "Desired Database Name" msgstr "" -#: ../../templates/show_test.inc:103 -msgid "PHP ICONV Support" +#: ../../templates/show_install_config.inc:71 +#: ../../templates/show_install.inc:44 +msgid "MySQL Hostname" msgstr "" -#: ../../templates/show_test.inc:117 -msgid "" -"This test checks to make sure you have Iconv support installed. Iconv " -"support is not required for Ampache, but it is highly recommended" +#: ../../templates/show_install_config.inc:75 +msgid "MySQL Username" msgstr "" -#: ../../templates/show_test.inc:121 -msgid "PHP PCRE Support" +#: ../../templates/show_install_config.inc:79 +msgid "MySQL Password" msgstr "" -#: ../../templates/show_test.inc:134 -msgid "" -"This test makes sure you have PCRE support compiled into your version of " -"PHP, this is required for Ampache." +#: ../../templates/show_install_config.inc:84 +msgid "Write Config" msgstr "" -#: ../../templates/show_test.inc:138 #: ../../templates/show_install_config.inc:91 +#: ../../templates/show_test.inc:138 msgid "Ampache.cfg.php Exists" msgstr "" -#: ../../templates/show_test.inc:153 -msgid "" -"This attempts to read /config/ampache.cfg.php If this fails either the " -"ampache.cfg.php is not in the correct locations or\n" -"\tit is not currently readable by your webserver." -msgstr "" - -#: ../../templates/show_test.inc:159 #: ../../templates/show_install_config.inc:108 +#: ../../templates/show_test.inc:159 msgid "Ampache.cfg.php Configured?" msgstr "" -#: ../../templates/show_test.inc:176 -msgid "" -"This test makes sure that you have set all of the required configuration " -"variables and that we are able to \n" -"\tcompletely parse your config file" -msgstr "" - -#: ../../templates/show_test.inc:182 -msgid "Ampache.cfg.php Up to Date?" +#: ../../templates/show_install_config.inc:129 +msgid "Check for Config" msgstr "" -#: ../../templates/show_test.inc:200 -msgid "Ampache.cfg.php is missing the following:" +#: ../../templates/show_album.inc:56 +msgid "Play Album" msgstr "" -#: ../../templates/show_test.inc:212 -msgid "DB Connection" +#: ../../templates/show_album.inc:57 +msgid "Play Random from Album" msgstr "" -#: ../../templates/show_test.inc:228 -msgid "" -"This attempts to connect to your database using the values from your ampache." -"cfg.php" +#: ../../templates/show_album.inc:59 +msgid "Reset Album Art" msgstr "" -#: ../../templates/add_catalog.inc:31 -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:61 +msgid "Find Album Art" msgstr "" -#: ../../templates/add_catalog.inc:37 -msgid "Catalog Name" +#: ../../templates/show_preferences.inc:52 +msgid "Editing" msgstr "" -#: ../../templates/add_catalog.inc:53 -msgid "Path" +#: ../../templates/show_preferences.inc:52 +msgid "preferences" msgstr "" -#: ../../templates/add_catalog.inc:57 -msgid "Catalog Type" +#: ../../templates/show_preferences.inc:54 +msgid "Rebuild Preferences" msgstr "" -#: ../../templates/add_catalog.inc:60 -msgid "Local" +#: ../../templates/show_preferences.inc:86 +msgid "Update Preferences" msgstr "" -#: ../../templates/add_catalog.inc:61 -msgid "Remote" +#: ../../templates/show_random_play.inc:26 +msgid "Play Random Selection" msgstr "" -#: ../../templates/add_catalog.inc:67 -msgid "ID3 Set Command" +#: ../../templates/show_random_play.inc:29 +msgid "Item count" msgstr "" -#: ../../templates/add_catalog.inc:72 -msgid "Filename Pattern" +#: ../../templates/show_random_play.inc:44 +msgid "From genre" msgstr "" -#: ../../templates/add_catalog.inc:86 -msgid "ID3V2 Tags" +#: ../../templates/show_random_play.inc:53 +msgid "Standard" msgstr "" -#: ../../templates/add_catalog.inc:90 -msgid "Amazon" +#: ../../templates/show_random_play.inc:54 +msgid "Favor Unplayed" msgstr "" -#: ../../templates/add_catalog.inc:94 -msgid "File Folder" +#: ../../templates/show_random_play.inc:55 +msgid "Full Albums" msgstr "" -#: ../../templates/add_catalog.inc:102 -msgid "Build Playlists from m3u Files" +#: ../../templates/show_random_play.inc:56 +msgid "Full Artist" msgstr "" -#: ../../templates/add_catalog.inc:110 -msgid "Add Catalog" +#: ../../templates/show_random_play.inc:61 +msgid "From catalog" msgstr "" -#: ../../templates/list_header.inc:67 ../../templates/show_mpdplay.inc:53 -msgid "Prev" +#: ../../templates/show_random_play.inc:67 +msgid "Size Limit" msgstr "" -#: ../../templates/list_header.inc:86 ../../templates/show_mpdplay.inc:57 -msgid "Next" +#: ../../templates/show_random_play.inc:70 ../../templates/show_search.inc:120 +msgid "Unlimited" msgstr "" #: ../../templates/show_install.inc:30 @@ -2181,21 +2415,6 @@ msgid "" "depending upon the speed of your computer" msgstr "" -#: ../../templates/show_install.inc:32 -#: ../../templates/show_install_config.inc:52 -msgid "Step 2 - Creating the Ampache.cfg.php file" -msgstr "" - -#: ../../templates/show_install.inc:40 -#: ../../templates/show_install_config.inc:67 -msgid "Desired Database Name" -msgstr "" - -#: ../../templates/show_install.inc:44 -#: ../../templates/show_install_config.inc:71 -msgid "MySQL Hostname" -msgstr "" - #: ../../templates/show_install.inc:48 msgid "MySQL Administrative Username" msgstr "" @@ -2220,161 +2439,74 @@ msgstr "" msgid "Insert Database" msgstr "" -#: ../../templates/header.inc:51 -msgid "You are currently logged in as" -msgstr "" - -#: ../../templates/show_songs.inc:48 ../../templates/show_search.inc:93 -msgid "Rating" -msgstr "" - -#: ../../templates/show_songs.inc:134 -msgid "Direct Link" -msgstr "" - -#: ../../templates/show_songs.inc:153 -msgid "Total" -msgstr "" - -#: ../../templates/show_songs.inc:164 -msgid "** Indicates flagged songs" -msgstr "" - -#: ../../templates/show_search_bar.inc:26 ../../templates/show_search.inc:31 -msgid "Search Ampache" +#: ../../templates/show_add_access.inc:23 +msgid "Add Access for a Host" msgstr "" -#: ../../templates/show_install_config.inc:54 +#: ../../templates/show_add_access.inc:24 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_install_config.inc:63 -msgid "Web Path" -msgstr "" - -#: ../../templates/show_install_config.inc:75 -msgid "MySQL Username" -msgstr "" - -#: ../../templates/show_install_config.inc:79 -msgid "MySQL Password" -msgstr "" - -#: ../../templates/show_install_config.inc:84 -msgid "Write Config" -msgstr "" - -#: ../../templates/show_install_config.inc:129 -msgid "Check for Config" -msgstr "" - -#: ../../templates/show_album.inc:62 -msgid "Play Album" -msgstr "" - -#: ../../templates/show_album.inc:63 -msgid "Play Random from Album" -msgstr "" - -#: ../../templates/show_album.inc:64 -msgid "Reset Album Art" -msgstr "" - -#: ../../templates/show_album.inc:65 -msgid "Find Album Art" -msgstr "" - -#: ../../templates/userform.inc:25 -msgid "Adding a New User" -msgstr "" - -#: ../../templates/userform.inc:29 -msgid "Editing existing User" -msgstr "" - -#: ../../templates/userform.inc:80 -msgid "User Access Level" -msgstr "" - -#: ../../templates/userform.inc:94 -msgid "Add User" -msgstr "" - -#: ../../templates/userform.inc:98 -msgid "Update User" -msgstr "" - -#: ../../templates/show_random_play.inc:27 -msgid "Play Random Selection" -msgstr "" - -#: ../../templates/show_random_play.inc:30 -msgid "Item count" -msgstr "" - -#: ../../templates/show_random_play.inc:45 -msgid "From genre" +"Use the form below to add a host that you want to have access to your " +"Ampache catalog." msgstr "" -#: ../../templates/show_random_play.inc:54 -msgid "Standard" +#: ../../templates/show_add_access.inc:36 +#: ../../templates/show_edit_access.inc:35 +msgid "Start IP Address" msgstr "" -#: ../../templates/show_random_play.inc:55 -msgid "Favor Unplayed" +#: ../../templates/show_add_access.inc:42 +#: ../../templates/show_edit_access.inc:41 +msgid "End IP Address" msgstr "" -#: ../../templates/show_random_play.inc:56 -msgid "Full Albums" +#: ../../templates/show_add_access.inc:54 +#: ../../templates/show_access_list.inc:53 +#: ../../templates/show_edit_access.inc:62 +msgid "Level" msgstr "" -#: ../../templates/show_random_play.inc:57 -msgid "Full Artist" +#: ../../templates/show_add_access.inc:58 +#: ../../templates/show_edit_access.inc:67 +msgid "Read" msgstr "" -#: ../../templates/show_random_play.inc:62 -msgid "From catalog" +#: ../../templates/show_add_access.inc:59 +#: ../../templates/show_edit_access.inc:68 +msgid "Read/Write" msgstr "" -#: ../../templates/show_random_play.inc:68 -msgid "Size Limit" +#: ../../templates/show_add_access.inc:65 +#: ../../templates/show_edit_access.inc:31 +msgid "ACL Type" msgstr "" -#: ../../templates/show_random_play.inc:71 ../../templates/show_search.inc:123 -msgid "Unlimited" +#: ../../templates/show_add_access.inc:68 +msgid "Stream Access" msgstr "" -#: ../../templates/show_add_access.inc:31 -msgid "Add Access for a Host" +#: ../../templates/show_add_access.inc:69 +msgid "Web Interface" msgstr "" -#: ../../templates/show_add_access.inc:32 -msgid "" -"Use the form below to add a host that you want to have access to your " -"Ampache catalog." +#: ../../templates/show_add_access.inc:70 +msgid "Local Network Definition" msgstr "" -#: ../../templates/show_add_access.inc:44 -#: ../../templates/show_edit_access.inc:33 -msgid "Start IP Address" +#: ../../templates/show_add_access.inc:71 +msgid "XML-RPC" msgstr "" -#: ../../templates/show_add_access.inc:50 -#: ../../templates/show_edit_access.inc:39 -msgid "End IP Address" +#: ../../templates/show_add_access.inc:76 +msgid "XML-RPC Options" msgstr "" -#: ../../templates/show_add_access.inc:56 -#: ../../templates/show_access_list.inc:51 -#: ../../templates/show_edit_access.inc:45 -msgid "Level" +#: ../../templates/show_add_access.inc:79 +#: ../../templates/show_edit_access.inc:54 +msgid "Remote Key" msgstr "" -#: ../../templates/show_add_access.inc:70 -msgid "Add Host" +#: ../../templates/show_add_access.inc:88 +msgid "Create ACL" msgstr "" #: ../../templates/catalog.inc:28 @@ -2412,6 +2544,10 @@ msgstr "" msgid "Add to Catalog(s)" msgstr "" +#: ../../templates/catalog.inc:74 +msgid "Add to all Catalogs" +msgstr "" + #: ../../templates/catalog.inc:75 msgid "Fast Add" msgstr "" @@ -2444,252 +2580,319 @@ msgstr "" msgid "Catalog Tools" msgstr "" -#: ../../templates/menu.inc:32 -msgid "Local Play" +#: ../../templates/show_access_list.inc:34 +msgid "Host Access to Your Catalog" msgstr "" -#: ../../templates/menu.inc:70 ../../templates/menu.inc:76 -msgid "Account" +#: ../../templates/show_access_list.inc:44 +msgid "Add Entry" msgstr "" -#: ../../templates/menu.inc:71 ../../templates/menu.inc:77 -#: ../../templates/show_users.inc:65 ../../templates/show_users.inc:111 -msgid "Stats" +#: ../../templates/show_access_list.inc:51 +msgid "Start Address" msgstr "" -#: ../../templates/show_upload.inc:30 -msgid "Uploading Music to Ampache" +#: ../../templates/show_access_list.inc:52 +msgid "End Address" msgstr "" -#: ../../templates/show_upload.inc:32 -msgid "The following Audio file formats are supported" +#: ../../templates/show_access_list.inc:55 +msgid "Key" msgstr "" -#: ../../templates/show_upload.inc:72 -msgid "max_upload_size" +#: ../../templates/show_access_list.inc:74 +msgid "Revoke" msgstr "" #: ../../templates/show_users.inc:54 msgid "Registration Date" msgstr "" -#: ../../templates/show_users.inc:62 ../../templates/show_users.inc:106 +#: ../../templates/show_users.inc:67 msgid "Prefs" msgstr "" -#: ../../templates/show_users.inc:68 +#: ../../templates/show_users.inc:73 msgid "Access" msgstr "" -#: ../../templates/show_users.inc:74 +#: ../../templates/show_users.inc:80 msgid "On-line" msgstr "" -#: ../../templates/show_users.inc:125 -msgid "delete" +#: ../../templates/show_mpdplay.inc:37 +msgid "MPD Play Control" msgstr "" -#: ../../templates/list_duplicates.inc:29 -msgid "Duplicate Songs" +#: ../../templates/show_mpdplay.inc:54 +msgid "Stop" msgstr "" -#: ../../templates/list_duplicates.inc:36 -msgid "Length" +#: ../../templates/show_mpdplay.inc:56 +msgid "Pause" msgstr "" -#: ../../templates/list_duplicates.inc:70 -msgid "You don't have any duplicate songs." +#: ../../templates/show_mpdplay.inc:87 +msgid "Loop" msgstr "" -#: ../../templates/show_login_form.inc:37 -#: ../../templates/show_login_form.inc:51 -msgid "Login" +#: ../../templates/show_mpdplay.inc:121 +msgid "Now Playing :" msgstr "" -#: ../../templates/show_login_form.inc:47 -msgid "Remember Me" +#: ../../templates/show_mpdplay.inc:149 +msgid "On Deck " msgstr "" -#: ../../templates/show_login_form.inc:61 -msgid "Register" +#: ../../templates/show_mpdplay.inc:149 +msgid "(in " msgstr "" -#: ../../templates/show_access_list.inc:35 -msgid "Host Access to Your Catalog" +#: ../../templates/show_artist.inc:37 +msgid "Select" msgstr "" -#: ../../templates/show_access_list.inc:44 -msgid "Add Entry" +#: ../../templates/show_artist.inc:39 +msgid "Cover" msgstr "" -#: ../../templates/show_access_list.inc:49 -msgid "Start Address" +#: ../../templates/show_artist.inc:40 +msgid "Album Name" msgstr "" -#: ../../templates/show_access_list.inc:50 -msgid "End Address" +#: ../../templates/show_artist.inc:41 +msgid "Album Year" msgstr "" -#: ../../templates/show_access_list.inc:67 -msgid "Revoke" +#: ../../templates/show_artist.inc:42 +msgid "Total Tracks" msgstr "" -#: ../../templates/show_search.inc:34 -msgid "Keywords" +#: ../../templates/show_edit_access.inc:23 +msgid "Edit Access List" msgstr "" -#: ../../templates/show_search.inc:74 -msgid "Played" +#: ../../templates/show_test.inc:34 +msgid "Ampache Debug" msgstr "" -#: ../../templates/show_search.inc:82 -msgid "Min Bitrate" +#: ../../templates/show_test.inc:35 +msgid "" +"You've reached this page because a configuration error has occured. Debug " +"Information below" msgstr "" -#: ../../templates/show_search.inc:97 -msgid "One Star" +#: ../../templates/show_test.inc:39 +msgid "CHECK" msgstr "" -#: ../../templates/show_search.inc:98 -msgid "Two Stars" +#: ../../templates/show_test.inc:41 +msgid "STATUS" msgstr "" -#: ../../templates/show_search.inc:99 -msgid "Three Stars" +#: ../../templates/show_test.inc:43 +msgid "DESCRIPTION" msgstr "" -#: ../../templates/show_search.inc:100 -msgid "Four Stars" +#: ../../templates/show_test.inc:46 +msgid "PHP Version" msgstr "" -#: ../../templates/show_search.inc:101 -msgid "Five Stars" +#: ../../templates/show_test.inc:61 +msgid "" +"This tests to make sure that you are running a version of PHP that is known " +"to work with Ampache." msgstr "" -#: ../../templates/show_search.inc:104 -msgid "Operator" +#: ../../templates/show_test.inc:65 +msgid "Mysql for PHP" msgstr "" -#: ../../templates/show_search.inc:107 -msgid "AND" +#: ../../templates/show_test.inc:80 +msgid "" +"This test checks to see if you have the mysql extensions loaded for PHP. " +"These are required for Ampache to work." msgstr "" -#: ../../templates/show_search.inc:113 -msgid "Method" +#: ../../templates/show_test.inc:84 +msgid "PHP Session Support" msgstr "" -#: ../../templates/show_search.inc:116 -msgid "Fuzzy" +#: ../../templates/show_test.inc:99 +msgid "" +"This test checks to make sure that you have PHP session support enabled. " +"Sessions are required for Ampache to work." msgstr "" -#: ../../templates/show_search.inc:117 -msgid "Exact" +#: ../../templates/show_test.inc:103 +msgid "PHP ICONV Support" msgstr "" -#: ../../templates/show_search.inc:120 -msgid "Maxium Results" +#: ../../templates/show_test.inc:117 +msgid "" +"This test checks to make sure you have Iconv support installed. Iconv " +"support is not required for Ampache, but it is highly recommended" msgstr "" -#: ../../templates/show_search.inc:135 -msgid "Reset Form" +#: ../../templates/show_test.inc:121 +msgid "PHP PCRE Support" msgstr "" -#: ../../templates/show_search.inc:146 -msgid "Save Search As Track on" +#: ../../templates/show_test.inc:134 +msgid "" +"This test makes sure you have PCRE support compiled into your version of " +"PHP, this is required for Ampache." msgstr "" -#: ../../templates/show_search.inc:148 -msgid "Save" +#: ../../templates/show_test.inc:153 +msgid "" +"This attempts to read /config/ampache.cfg.php If this fails either the " +"ampache.cfg.php is not in the correct locations or\n" +"\tit is not currently readable by your webserver." msgstr "" -#: ../../templates/show_mpdplay.inc:37 -msgid "MPD Play Control" +#: ../../templates/show_test.inc:176 +msgid "" +"This test makes sure that you have set all of the required configuration " +"variables and that we are able to \n" +"\tcompletely parse your config file" msgstr "" -#: ../../templates/show_mpdplay.inc:54 -msgid "Stop" +#: ../../templates/show_test.inc:186 +msgid "Ampache.cfg.php Up to Date?" msgstr "" -#: ../../templates/show_mpdplay.inc:56 -msgid "Pause" +#: ../../templates/show_test.inc:204 +msgid "Ampache.cfg.php is missing the following:" msgstr "" -#: ../../templates/show_mpdplay.inc:87 -msgid "Loop" +#: ../../templates/show_test.inc:216 +msgid "DB Connection" msgstr "" -#: ../../templates/show_mpdplay.inc:94 ../../templates/show_mpdplay.inc:106 -msgid "On" +#: ../../templates/show_test.inc:232 +msgid "" +"This attempts to connect to your database using the values from your ampache." +"cfg.php" msgstr "" -#: ../../templates/show_mpdplay.inc:95 ../../templates/show_mpdplay.inc:107 -msgid "Off" +#: ../../templates/show_search_bar.inc:26 ../../templates/show_search.inc:27 +msgid "Search Ampache" msgstr "" -#: ../../templates/show_mpdplay.inc:121 -msgid "Now Playing :" +#: ../../templates/show_similar_artists.inc:24 +msgid "Similar Artists" msgstr "" -#: ../../templates/show_mpdplay.inc:149 -msgid "On Deck " +#: ../../templates/show_similar_artists.inc:26 +msgid "Please check the artists you want to merge with the current one" msgstr "" -#: ../../templates/show_mpdplay.inc:149 -msgid "(in " +#: ../../templates/show_similar_artists.inc:63 +msgid "Back" msgstr "" -#: ../../templates/show_artist.inc:36 -msgid "Select" +#: ../../templates/show_similar_artists.inc:74 +msgid "Rename selected" msgstr "" -#: ../../templates/show_artist.inc:38 -msgid "Cover" +#: ../../templates/show_similar_artists.inc:84 +msgid "Advanced Options" msgstr "" -#: ../../templates/show_artist.inc:39 -msgid "Album Name" +#: ../../templates/show_similar_artists.inc:145 +msgid "Search Again" msgstr "" -#: ../../templates/show_artist.inc:40 -msgid "Album Year" +#: ../../templates/show_upload.inc:27 +msgid "Uploading Music to Ampache" msgstr "" -#: ../../templates/show_artist.inc:41 -msgid "Total Tracks" +#: ../../templates/show_upload.inc:31 +msgid "The following Audio file formats are supported" msgstr "" -#: ../../templates/show_big_art.inc:31 -msgid "Album Art" +#: ../../templates/show_upload.inc:52 +msgid "max_upload_size" msgstr "" -#: ../../templates/show_big_art.inc:35 -msgid "Click to close window" +#: ../../templates/show_login_form.inc:28 +#: ../../templates/show_login_form.inc:35 +msgid "Login" msgstr "" -#: ../../templates/show_similar_artists.inc:63 -msgid "Back" +#: ../../templates/show_login_form.inc:32 +msgid "Remember Me" msgstr "" -#: ../../templates/show_similar_artists.inc:74 -msgid "Rename selected" +#: ../../templates/show_login_form.inc:47 +msgid "Register" msgstr "" -#: ../../templates/show_similar_artists.inc:146 -msgid "Search Again" +#: ../../templates/show_search.inc:31 +msgid "Keywords" msgstr "" -#: ../../templates/show_edit_access.inc:24 -msgid "Edit Access List" +#: ../../templates/show_search.inc:71 +msgid "Played" msgstr "" -#: ../../templates/show_edit_access.inc:49 -msgid "Demo" +#: ../../templates/show_search.inc:79 +msgid "Min Bitrate" msgstr "" -#: ../../templates/show_edit_access.inc:51 -msgid "Stream/Download" +#: ../../templates/show_search.inc:94 +msgid "One Star" msgstr "" -#: ../../templates/show_edit_access.inc:52 -msgid "XML-RPC" +#: ../../templates/show_search.inc:95 +msgid "Two Stars" +msgstr "" + +#: ../../templates/show_search.inc:96 +msgid "Three Stars" +msgstr "" + +#: ../../templates/show_search.inc:97 +msgid "Four Stars" +msgstr "" + +#: ../../templates/show_search.inc:98 +msgid "Five Stars" +msgstr "" + +#: ../../templates/show_search.inc:101 +msgid "Operator" +msgstr "" + +#: ../../templates/show_search.inc:104 +msgid "AND" +msgstr "" + +#: ../../templates/show_search.inc:110 +msgid "Method" +msgstr "" + +#: ../../templates/show_search.inc:113 +msgid "Fuzzy" +msgstr "" + +#: ../../templates/show_search.inc:114 +msgid "Exact" +msgstr "" + +#: ../../templates/show_search.inc:117 +msgid "Maxium Results" +msgstr "" + +#: ../../templates/show_search.inc:132 +msgid "Reset Form" +msgstr "" + +#: ../../templates/show_search.inc:143 +msgid "Save Search As Track on" +msgstr "" + +#: ../../templates/show_search.inc:145 +msgid "Save" msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/messages.po b/locale/de_DE/LC_MESSAGES/messages.po index 8aa171a0..55363bd4 100644 --- a/locale/de_DE/LC_MESSAGES/messages.po +++ b/locale/de_DE/LC_MESSAGES/messages.po @@ -1825,9 +1825,8 @@ msgid "Next" msgstr "" #: ../../templates/show_localplay.inc:49 -#, fuzzy msgid "Volume" -msgstr "Wert" +msgstr "" #: ../../templates/show_localplay.inc:53 ../../templates/show_localplay.inc:54 msgid "Increase Volume" @@ -2500,10 +2499,10 @@ msgid "Sorry, you don't have access to that part of the server." msgstr "Entschuldigung, sie haben keinen Zugriff auf diesen Teil des Servers." msgid "No Songs Removed" -msgstr "Keine Lieder gelscht" +msgstr "" msgid "No Disabled songs found" -msgstr "Keine 'abgeschalteten' Lieder gefunden" +msgstr "" msgid "Popular Threshold" msgstr "Weiter" diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po index 9953d476..fb4f2984 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.po +++ b/locale/fr_FR/LC_MESSAGES/messages.po @@ -186,7 +186,7 @@ msgstr "" #: ../../lib/class/catalog.class.php:1138 msgid "Checking" -msgstr "" +msgstr "Vц╘fication" #: ../../lib/class/catalog.class.php:1196 msgid "Catalog Clean Done" @@ -340,7 +340,7 @@ msgstr "Erreur, ne peut pas ц╘crire" #: ../../lib/class/stream.class.php:214 msgid "Error, cannot write song in file" -msgstr "" +msgstr "Erreur, ne peut pas ц╘crire chanson dans le "fichier" #: ../../lib/class/stream.class.php:220 msgid "Closed after write" @@ -498,7 +498,7 @@ msgstr "Parcourir" #: ../../lib/ui.lib.php:301 msgid "Show w/o art" -msgstr "" +msgstr "Montrer sans l'art" #: ../../lib/ui.lib.php:304 msgid "Show all" diff --git a/locale/nl_NL/LC_MESSAGES/messages.po b/locale/nl_NL/LC_MESSAGES/messages.po index 5e038e3b..076cd12d 100644 --- a/locale/nl_NL/LC_MESSAGES/messages.po +++ b/locale/nl_NL/LC_MESSAGES/messages.po @@ -35,7 +35,7 @@ msgstr "" #: ../../lib/class/catalog.class.php:365 msgid "Added" -msgstr "Toegevoegd" +msgstr "" #: ../../lib/class/catalog.class.php:377 msgid "is not readable by ampache" diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 00000000..b0f49c9e --- /dev/null +++ b/locale/ru_RU/LC_MESSAGES/messages.mo diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po new file mode 100644 index 00000000..d04e5775 --- /dev/null +++ b/locale/ru_RU/LC_MESSAGES/messages.po @@ -0,0 +1,1973 @@ +# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: ampache\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2005-06-21 19:58-0700\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"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=koi8-r\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../play/index.php:46
+msgid "Session Expired: please log in again at"
+msgstr "Время сессии исчерпано: пожалуйста, залогиньтесь опять"
+
+#: ../../lib/preferences.php:210
+#: ../../templates/show_users.inc:97
+msgid "Enable"
+msgstr "Включено"
+
+#: ../../lib/preferences.php:211
+#: ../../templates/show_users.inc:100
+msgid "Disable"
+msgstr "Выключено"
+
+#: ../../lib/preferences.php:223
+#: ../../templates/add_catalog.inc:60
+msgid "Local"
+msgstr "Локальное"
+
+#: ../../lib/preferences.php:226
+msgid "Stream"
+msgstr "Поток"
+
+#: ../../lib/preferences.php:229
+msgid "IceCast"
+msgstr "IceCast"
+
+#: ../../lib/preferences.php:232
+msgid "Downsample"
+msgstr "Downsample"
+
+#: ../../lib/preferences.php:235
+msgid "Music Player Daemon"
+msgstr "Музыкальный проигрыватель Daemon"
+
+#: ../../lib/preferences.php:238
+msgid "SlimServer"
+msgstr "SlimServer"
+
+#: ../../lib/preferences.php:247
+msgid "M3U"
+msgstr "M3U"
+
+#: ../../lib/preferences.php:248
+msgid "Simple M3U"
+msgstr "Простой M3U"
+
+#: ../../lib/preferences.php:249
+msgid "PLS"
+msgstr "PLS"
+
+#: ../../lib/preferences.php:250
+msgid "Asx"
+msgstr "Asx"
+
+#: ../../lib/preferences.php:257
+msgid "English"
+msgstr "English"
+
+#: ../../lib/preferences.php:258
+msgid "German"
+msgstr "German"
+
+#: ../../lib/preferences.php:259
+msgid "French"
+msgstr "French"
+
+#: ../../lib/preferences.php:260
+msgid "Turkish"
+msgstr "Turkish"
+
+#: ../../lib/duplicates.php:80
+msgid "Find Duplicates"
+msgstr "Найти дубликата"
+
+#: ../../lib/duplicates.php:83
+#: ../../templates/show_search.inc:74
+msgid "Search Type"
+msgstr "Тип поиска"
+
+#: ../../lib/duplicates.php:91
+#: ../../modules/class/song.php:253
+msgid "Title"
+msgstr "Название"
+
+#: ../../lib/duplicates.php:97
+msgid "Artist and Title"
+msgstr "Исполнитель и название"
+
+#: ../../lib/duplicates.php:102
+msgid "Artist, Album and Title"
+msgstr "Артист, альбом и название"
+
+#: ../../lib/duplicates.php:110
+#: ../../templates/menu.inc:38
+#: ../../templates/show_search.inc:37
+#: ../../templates/show_search.inc:83
+msgid "Search"
+msgstr "Поиск"
+
+#: ../../lib/search.php:52
+#: ../../lib/search.php:68
+#: ../../lib/search.php:84
+#: ../../lib/search.php:100
+#: ../../lib/search.php:116
+#: ../../lib/search.php:133
+#: ../../lib/search.php:145
+#: ../../lib/search.php:161
+#: ../../lib/search.php:177
+msgid "No Results Found"
+msgstr "No Results Found"
+
+#: ../../lib/ui.php:180
+msgid "Playlist Actions"
+msgstr "Действия с Playlist'ом"
+
+#: ../../lib/ui.php:180
+msgid "New"
+msgstr "Новые"
+
+#: ../../lib/ui.php:181
+msgid "View All"
+msgstr "Просмотреть все"
+
+#: ../../lib/ui.php:182
+msgid "Import"
+msgstr "Импортировать"
+
+#: ../../lib/ui.php:282
+msgid "Browse"
+msgstr "Пролистать"
+
+#: ../../lib/ui.php:284
+msgid "Show w/o art"
+msgstr "Показать w/o art"
+
+#: ../../lib/ui.php:287
+msgid "Show all"
+msgstr "Показать всё"
+
+#: ../../lib/ui.php:393
+msgid "No songs in this playlist."
+msgstr "Нет песен в этом списке."
+
+#: ../../lib/mpd.php:40
+#: ../../lib/mpd.php:49
+#: ../../modules/class/catalog.php:902
+msgid "Error"
+msgstr "Ошибка"
+
+#: ../../lib/mpd.php:40
+#: ../../lib/mpd.php:49
+msgid "Could not add"
+msgstr "Невозможно добавить"
+
+#: ../../lib/Browser.php:867
+msgid "file"
+msgstr "файл"
+
+#: ../../lib/Browser.php:871
+msgid "File uploads not supported."
+msgstr "Загрузка файла не поддерживается."
+
+#: ../../lib/Browser.php:889
+msgid "No file uploaded"
+msgstr "Нет загруженных файлов"
+
+#: ../../lib/Browser.php:896
+#, php-format
+msgid "There was a problem with the file upload: No %s was uploaded."
+msgstr "Была проблема с загрузкой файла: 0% было загружено."
+
+#: ../../lib/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 "Была проблема с загрузкой файла: размер загружаемого файла превышает норму."
+
+#: ../../lib/Browser.php:903
+#, php-format
+msgid "There was a problem with the file upload: The %s was only partially uploaded."
+msgstr "Была проблема с загрузкой файла: файл был загружен только частично."
+
+#: ../../modules/class/catalog.php:267
+#: ../../modules/class/catalog.php:552
+#: ../../modules/class/album.php:241
+msgid "Error: Unable to open"
+msgstr "Ошибка: Невозможно открыть"
+
+#: ../../modules/class/catalog.php:290
+msgid "Error: Unable to change to directory"
+msgstr "Ошибка: Невозможно изменить директорию"
+
+#: ../../modules/class/catalog.php:313
+msgid "Error: Unable to get filesize for"
+msgstr "Ошибка: Невозможно получить размер файла для"
+
+#: ../../modules/class/catalog.php:332
+msgid "Added Playlist From"
+msgstr "Добавлен Список из"
+
+#: ../../modules/class/catalog.php:351
+msgid "Added"
+msgstr "Добавлено"
+
+#: ../../modules/class/catalog.php:363
+msgid "is not readable by ampache"
+msgstr "не читаем программой ampache"
+
+#: ../../modules/class/catalog.php:427
+msgid "Found in ID3"
+msgstr "Найдено в ID3"
+
+#: ../../modules/class/catalog.php:431
+msgid "Found on Amazon"
+msgstr "Найдено на Amazon"
+
+#: ../../modules/class/catalog.php:435
+msgid "Found in Folder"
+msgstr "Найдено в Директории"
+
+#: ../../modules/class/catalog.php:439
+msgid "Found"
+msgstr "Найдено"
+
+#: ../../modules/class/catalog.php:442
+msgid "Not Found"
+msgstr "Не Найдено"
+
+#: ../../modules/class/catalog.php:450
+msgid "Searched"
+msgstr "Обыскано"
+
+#: ../../modules/class/catalog.php:605
+msgid "Starting Dump Album Art"
+msgstr "Starting Dump Album Art"
+
+#: ../../modules/class/catalog.php:625
+msgid "Written"
+msgstr "Записано"
+
+#: ../../modules/class/catalog.php:634
+msgid "Error unable to open file for writting"
+msgstr "Ошибка: невозможно открыть файл для записи"
+
+#: ../../modules/class/catalog.php:641
+msgid "Album Art Dump Complete"
+msgstr "Album Art Dump Создан"
+
+#: ../../modules/class/catalog.php:642
+#: ../../artists.php:62
+#: ../../albums.php:111
+msgid "Return"
+msgstr "Возврат"
+
+#: ../../modules/class/catalog.php:708
+msgid "Starting Catalog Build"
+msgstr "Начинато Построение Каталога"
+
+#: ../../modules/class/catalog.php:713
+msgid "Running Remote Sync"
+msgstr "Запущен Remote Sync"
+
+#: ../../modules/class/catalog.php:723
+#: ../../modules/class/catalog.php:869
+#: ../../admin/catalog.php:251
+msgid "Starting Album Art Search"
+msgstr "Начат поиск Album Art"
+
+#: ../../modules/class/catalog.php:733
+msgid "Catalog Finished"
+msgstr "Каталог Готов"
+
+#: ../../modules/class/catalog.php:733
+#: ../../modules/class/catalog.php:888
+msgid "Total Time"
+msgstr "Поное время"
+
+#: ../../modules/class/catalog.php:733
+#: ../../modules/class/catalog.php:889
+msgid "Total Songs"
+msgstr "Всего песен"
+
+#: ../../modules/class/catalog.php:734
+#: ../../modules/class/catalog.php:889
+msgid "Songs Per Seconds"
+msgstr "Песен за секунды"
+
+#: ../../modules/class/catalog.php:768
+#: ../../modules/class/catalog.php:1379
+msgid "Updated"
+msgstr "Обновлено"
+
+#: ../../modules/class/catalog.php:775
+msgid "No Update Needed"
+msgstr "Обновление не требуется"
+
+#: ../../modules/class/catalog.php:849
+msgid "Starting New Song Search on"
+msgstr "Начат поиск новой песни на"
+
+#: ../../modules/class/catalog.php:849
+msgid "catalog"
+msgstr "Каталог"
+
+#: ../../modules/class/catalog.php:853
+msgid "Running Remote Update"
+msgstr "Запущено удалённое обновление"
+
+#: ../../modules/class/catalog.php:888
+msgid "Catalog Update Finished"
+msgstr "Обновление каталога окончено"
+
+#: ../../modules/class/catalog.php:902
+msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled"
+msgstr "Невозможно загрузить библиотеку XMLRPC, убедитесь что XML-RPC включено"
+
+#: ../../modules/class/catalog.php:934
+#: ../../modules/class/catalog.php:949
+msgid "Error connecting to"
+msgstr "Ошибка при соединении с"
+
+#: ../../modules/class/catalog.php:934
+#: ../../modules/class/catalog.php:949
+msgid "Code"
+msgstr "Код"
+
+#: ../../modules/class/catalog.php:934
+#: ../../modules/class/catalog.php:949
+msgid "Reason"
+msgstr "Причина"
+
+#: ../../modules/class/catalog.php:954
+msgid "Completed updating remote catalog(s)"
+msgstr "Закончено обновление удалённого каталога(ов)"
+
+#: ../../modules/class/catalog.php:1042
+msgid "Checking"
+msgstr "Проверка"
+
+#: ../../modules/class/catalog.php:1099
+msgid "Catalog Clean Done"
+msgstr "Очистка каталога завершена"
+
+#: ../../modules/class/catalog.php:1099
+msgid "files removed"
+msgstr "файлы удалены"
+
+#: ../../modules/class/catalog.php:1339
+msgid "Updating the"
+msgstr "Обновление "
+
+#: ../../modules/class/catalog.php:1339
+#: ../../templates/show_admin_index.inc:31
+#: ../../templates/admin_menu.inc:35
+msgid "Catalog"
+msgstr "Каталог"
+
+#: ../../modules/class/catalog.php:1340
+msgid "songs found checking tag information."
+msgstr "песни найдены проверка информации о tag"
+
+#: ../../modules/class/catalog.php:1387
+msgid " FOUND"
+msgstr " НАЙДЕНО"
+
+#: ../../modules/class/catalog.php:1388
+msgid "Searching for new Album Art"
+msgstr "Поиск новой картинки альбома"
+
+#: ../../modules/class/catalog.php:1392
+msgid "Album Art Already Found"
+msgstr "Картинка альбома уже найдена"
+
+#: ../../modules/class/stream.php:198
+msgid "Opened for writting"
+msgstr "Открыто для записи"
+
+#: ../../modules/class/stream.php:203
+msgid "Error, cannot write"
+msgstr "Ошибка, невозможно записать"
+
+#: ../../modules/class/stream.php:214
+msgid "Error, cannot write song in file"
+msgstr "Ошибка, невозможно записать песню или файл"
+
+#: ../../modules/class/stream.php:220
+msgid "Closed after write"
+msgstr "Закрыто после записи"
+
+#: ../../modules/class/album.php:126
+msgid "Various"
+msgstr "Различные"
+
+#: ../../modules/class/song.php:253
+#: ../../modules/class/song.php:257
+#: ../../modules/class/song.php:261
+#: ../../modules/class/song.php:265
+#: ../../modules/class/song.php:269
+#: ../../modules/class/song.php:273
+#: ../../modules/class/song.php:277
+#: ../../modules/class/song.php:282
+#: ../../modules/class/song.php:287
+#: ../../modules/class/song.php:291
+#: ../../modules/class/song.php:295
+#: ../../modules/class/song.php:300
+msgid "updated to"
+msgstr "обновлено в"
+
+#: ../../modules/class/song.php:257
+#: ../../upload.php:235
+#: ../../templates/show_songs.inc:39
+msgid "Bitrate"
+msgstr "Битрейд"
+
+#: ../../modules/class/song.php:261
+msgid "Rate"
+msgstr "Скорость"
+
+#: ../../modules/class/song.php:265
+msgid "Mode"
+msgstr "Режим"
+
+#: ../../modules/class/song.php:269
+#: ../../upload.php:234
+#: ../../templates/show_songs.inc:37
+msgid "Time"
+msgstr "Время"
+
+#: ../../modules/class/song.php:273
+#: ../../templates/show_songs.inc:32
+#: ../../templates/show_songs.inc:36
+msgid "Track"
+msgstr "Дорожка"
+
+#: ../../modules/class/song.php:277
+msgid "Filesize"
+msgstr "Размер файла"
+
+#: ../../modules/class/song.php:282
+#: ../../upload.php:231
+#: ../../templates/show_artists.inc:39
+#: ../../templates/show_artists.inc:62
+#: ../../templates/show_songs.inc:34
+#: ../../templates/show_albums.inc:40
+#: ../../templates/show_albums.inc:70
+msgid "Artist"
+msgstr "Исполнитель"
+
+#: ../../modules/class/song.php:287
+#: ../../upload.php:232
+#: ../../templates/show_songs.inc:35
+#: ../../templates/show_albums.inc:38
+#: ../../templates/show_albums.inc:68
+msgid "Album"
+msgstr "Альбом"
+
+#: ../../modules/class/song.php:291
+#: ../../templates/show_albums.inc:43
+#: ../../templates/show_albums.inc:73
+msgid "Year"
+msgstr "Год"
+
+#: ../../modules/class/song.php:295
+#: ../../templates/list_flagged.inc:46
+#: ../../templates/flag.inc:66
+msgid "Comment"
+msgstr "Комментарии"
+
+#: ../../modules/class/song.php:300
+#: ../../upload.php:233
+#: ../../templates/show_songs.inc:40
+msgid "Genre"
+msgstr "Жанр"
+
+#: ../../modules/lib.php:53
+msgid "day"
+msgstr "День"
+
+#: ../../modules/lib.php:53
+msgid "days"
+msgstr "дни
+
+#: ../../modules/lib.php:55
+msgid "hour"
+msgstr "час"
+
+#: ../../modules/lib.php:55
+msgid "hours"
+msgstr "часы"
+
+#: ../../modules/lib.php:70
+msgid "Catalog Statistics"
+msgstr "Статистика каталога"
+
+#: ../../modules/lib.php:73
+msgid "Total Users"
+msgstr "Все пользователи"
+
+#: ../../modules/lib.php:77
+msgid "Connected Users"
+msgstr "Подсоединённые пользователи"
+
+#: ../../modules/lib.php:81
+#: ../../templates/show_artists.inc:42
+#: ../../templates/show_artists.inc:65
+#: ../../templates/menu.inc:35
+msgid "Albums"
+msgstr "Альбомы"
+
+#: ../../modules/lib.php:85
+#: ../../templates/menu.inc:36
+msgid "Artists"
+msgstr "Артисты"
+
+#: ../../modules/lib.php:89
+#: ../../templates/show_artists.inc:41
+#: ../../templates/show_artists.inc:64
+#: ../../templates/show_albums.inc:41
+#: ../../templates/show_albums.inc:71
+msgid "Songs"
+msgstr "Песни"
+
+#: ../../modules/lib.php:93
+msgid "Catalog Size"
+msgstr "Размер каталога"
+
+#: ../../modules/lib.php:97
+msgid "Catalog Time"
+msgstr "Время каталога"
+
+#: ../../modules/lib.php:151
+msgid "Play Random Selection"
+msgstr "Играть случайный выбор"
+
+#: ../../modules/lib.php:158
+msgid "Item count"
+msgstr "Счёт"
+
+#: ../../modules/lib.php:170
+#: ../../templates/show_artists.inc:55
+#: ../../templates/show_albums.inc:58
+msgid "All"
+msgstr "Все"
+
+#: ../../modules/lib.php:172
+msgid "From genre"
+msgstr "Из жанра"
+
+#: ../../modules/lib.php:182
+msgid "Favor Unplayed"
+msgstr "Любимые непроигранные"
+
+#: ../../modules/lib.php:183
+msgid "Full Albums"
+msgstr "Все альбомы"
+
+#: ../../modules/lib.php:184
+msgid "Full Artist"
+msgstr "Весь Артист"
+
+#: ../../modules/lib.php:193
+msgid "from catalog"
+msgstr "из каталога"
+
+#: ../../modules/lib.php:204
+msgid "Play Random Songs"
+msgstr "Играть случайные песни"
+
+#: ../../modules/lib.php:912
+msgid "Public"
+msgstr "Общее"
+
+#: ../../modules/lib.php:913
+msgid "Your Private"
+msgstr "Ваши личные"
+
+#: ../../modules/lib.php:914
+msgid "Other Private"
+msgstr "Другие личные"
+
+#: ../../modules/lib.php:995
+#: ../../templates/show_play_selected.inc.php:61
+msgid "View"
+msgstr "Просмотреть"
+
+#: ../../modules/lib.php:998
+#: ../../templates/show_play_selected.inc.php:62
+#: ../../templates/show_users.inc:52
+#: ../../templates/show_users.inc:86
+msgid "Edit"
+msgstr "Изменить"
+
+#: ../../modules/lib.php:999
+#: ../../upload.php:290
+#: ../../templates/catalog.inc:60
+#: ../../templates/show_users.inc:61
+msgid "Delete"
+msgstr "Удалить"
+
+#: ../../modules/lib.php:1007
+#: ../../templates/show_localplay.inc:41
+#: ../../templates/show_artists.inc:54
+#: ../../templates/show_albums.inc:57
+#: ../../templates/show_artist.inc:79
+#: ../../templates/show_mpdplay.inc:45
+msgid "Play"
+msgstr "Играть"
+
+#: ../../modules/lib.php:1008
+#: ../../templates/show_artists.inc:56
+#: ../../templates/show_albums.inc:59
+#: ../../templates/show_mpdplay.inc:67
+msgid "Random"
+msgstr "Случайно"
+
+#: ../../modules/lib.php:1014
+#: ../../templates/show_songs.inc:110
+#: ../../templates/show_album.inc:61
+#: ../../templates/show_albums.inc:61
+#: ../../templates/show_artist.inc:81
+msgid "Download"
+msgstr "Загрузить"
+
+#: ../../modules/lib.php:1025
+msgid "There are no playlists of this type"
+msgstr "Нет плейлистов этого типа"
+
+#: ../../modules/lib.php:1060
+msgid "Create a new playlist"
+msgstr "Создать новый плейлист"
+
+#: ../../modules/admin.php:46
+msgid "Manage Users"
+msgstr "Управление пользователями"
+
+#: ../../modules/admin.php:48
+msgid "Add a new user"
+msgstr "Добавить нового пользователя"
+
+#: ../../admin/catalog.php:55
+#: ../../templates/catalog.inc:66
+msgid "Add to Catalog(s)"
+msgstr "Добавить в каталог(и)"
+
+#: ../../admin/catalog.php:66
+#: ../../templates/catalog.inc:67
+msgid "Add to all Catalogs"
+msgstr "Добавить во все каталоги"
+
+#: ../../admin/catalog.php:76
+#: ../../templates/catalog.inc:73
+msgid "Update Catalog(s)"
+msgstr "Обновить каталог(и)"
+
+#: ../../admin/catalog.php:87
+#: ../../templates/catalog.inc:74
+msgid "Update All Catalogs"
+msgstr "Обновить все каталоги"
+
+#: ../../admin/catalog.php:119
+#: ../../templates/catalog.inc:80
+msgid "Clean Catalog(s)"
+msgstr "Очистить каталог(и)"
+
+#: ../../admin/catalog.php:149
+#: ../../templates/catalog.inc:81
+msgid "Clean All Catalogs"
+msgstr "Очистить все каталоги"
+
+#: ../../admin/catalog.php:198
+msgid "Now Playing Cleared"
+msgstr "Не играть удалённые"
+
+#: ../../admin/catalog.php:198
+msgid "All now playing data has been cleared"
+msgstr "Вся проигранные треки удалены"
+
+#: ../../admin/catalog.php:203
+msgid "Do you really want to clear your catalog?"
+msgstr "Вы действвительно хотите очистить Ваш каталог?"
+
+#: ../../admin/catalog.php:210
+msgid "Do you really want to clear the statistics for this catalog?"
+msgstr "Вы действительно хотите удалить статистику для этого каталога?"
+
+#: ../../admin/catalog.php:228
+msgid "Do you really want to delete this catalog?"
+msgstr "Вы действитльно хотите удалить этот каталог?"
+
+#: ../../admin/catalog.php:259
+msgid "Album Art Search Finished"
+msgstr "Поиск картинки для альбома завершен"
+
+#: ../../admin/users.php:77
+#: ../../admin/users.php:124
+msgid "Error Username Required"
+msgstr "Ошибка требуется имя пользавателя"
+
+#: ../../admin/users.php:80
+#: ../../admin/users.php:121
+msgid "Error Passwords don't match"
+msgstr "Ошибка Пароль не совпадает"
+
+#: ../../admin/users.php:138
+msgid "Are you sure you want to permanently delete"
+msgstr "Вы уверены что хотите удалить прямо сейчас"
+
+#: ../../admin/users.php:145
+#: ../../templates/show_confirm_action.inc.php:29
+msgid "No"
+msgstr "Нет"
+
+#: ../../admin/users.php:147
+msgid "User Deleted"
+msgstr "Пользователь удалён"
+
+#: ../../admin/users.php:150
+msgid "Delete Error"
+msgstr "Удалить ошибкуr"
+
+#: ../../admin/users.php:150
+msgid "Unable to delete last Admin User"
+msgstr "Невозмонжно удалить последнего пользователя-админестратора"
+
+#: ../../admin/access.php:43
+msgid "Do you really want to delete this Access Record?"
+msgstr "Вы действительно хотете удалить Запись?"
+
+#: ../../admin/access.php:51
+msgid "Entry Deleted"
+msgstr "Запись удалена"
+
+#: ../../admin/access.php:51
+msgid "Your Access List Entry has been removed"
+msgstr "Удалено"
+
+#: ../../admin/access.php:61
+msgid "Entry Added"
+msgstr "Запист добавлена"
+
+#: ../../admin/access.php:61
+msgid "Your new Access List Entry has been created"
+msgstr "Ваш новый Список Доступа создан"
+
+#: ../../admin/mail.php:98
+msgid "Mail to"
+msgstr "Написать письмо"
+
+#: ../../admin/mail.php:109
+msgid "Subject"
+msgstr "Предмет"
+
+#: ../../admin/mail.php:116
+msgid "Message"
+msgstr "Сообщение"
+
+#: ../../admin/mail.php:126
+msgid "Send Mail"
+msgstr "Послать почту"
+
+#: ../../admin/song.php:70
+msgid "Songs Disabled"
+msgstr "Песни отключены"
+
+#: ../../admin/song.php:70
+msgid "The requested song(s) have been disabled"
+msgstr "Запрашиваемые песня(и) отключены"
+
+#: ../../admin/song.php:80
+msgid "Songs Enabled"
+msgstr "Песни Включены"
+
+#: ../../admin/song.php:80
+msgid "The requested song(s) have been enabled"
+msgstr "Запрашиваемые песня(и) включены"
+
+#: ../../templates/show_user_registration.inc.php:28
+#: ../../templates/show_install_account.inc.php:59
+#: ../../templates/userform.inc:41
+#: ../../templates/show_users.inc:40
+msgid "Username"
+msgstr "Имя пользователя"
+
+#: ../../templates/show_user_registration.inc.php:36
+#: ../../templates/userform.inc:49
+msgid "Full Name"
+msgstr "Полное имя"
+
+#: ../../templates/show_user_registration.inc.php:44
+#: ../../templates/show_user.inc.php:40
+#: ../../templates/userform.inc:56
+msgid "E-mail"
+msgstr "E-mail"
+
+#: ../../templates/show_user_registration.inc.php:52
+#: ../../templates/show_install_account.inc.php:63
+#: ../../templates/userform.inc:64
+#: ../../templates/show_login_form.inc:53
+msgid "Password"
+msgstr "Пароль"
+
+#: ../../templates/show_user_registration.inc.php:60
+#: ../../templates/show_user.inc.php:75
+#: ../../templates/userform.inc:73
+msgid "Confirm Password"
+msgstr "Подтверждение пароля"
+
+#: ../../templates/show_user_registration.inc.php:69
+msgid "Register User"
+msgstr "Зарегистрировать пользователя"
+
+#: ../../templates/show_install_account.inc.php:35
+#: ../../templates/show_install_config.inc:35
+#: ../../templates/show_install.inc:34
+msgid "Ampache Installation"
+msgstr "Установка Ampache"
+
+#: ../../templates/show_install_account.inc.php:37
+#: ../../templates/show_install_config.inc:37
+#: ../../templates/show_install.inc:36
+msgid "This Page handles the installation of the ampache database and the creation of the ampache.cfg.php file. Before you continue please make sure that you have the following pre-requisits"
+msgstr "This Page handles the installation of the ampache database and the creation of the ampache.cfg.php file. Before you continue please make sure that you have the following pre-requisites"
+
+#: ../../templates/show_install_account.inc.php:40
+#: ../../templates/show_install_config.inc:40
+#: ../../templates/show_install.inc:39
+msgid "A MySQL Server with a username and password that can create/modify databases"
+msgstr "MySQL Server with a username and password that can create/modify databases"
+
+#: ../../templates/show_install_account.inc.php:41
+msgid "Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.dist.php file"
+msgstr "Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.dist.php file"
+
+#: ../../templates/show_install_account.inc.php:43
+#: ../../templates/show_install_config.inc:43
+#: ../../templates/show_install.inc:42
+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 values. If you would like to make changes to your ampache install at a later date simply edit /config/ampache.cfg.php"
+msgstr "Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit /config/ampache.cfg.php"
+
+#: ../../templates/show_install_account.inc.php:48
+#: ../../templates/show_install_config.inc:48
+#: ../../templates/show_install.inc:46
+msgid "Step 1 - Creating and Inserting the Ampache Database"
+msgstr "Step 1 - Creating and Inserting the Ampache Database"
+
+#: ../../templates/show_install_account.inc.php:49
+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:53
+#: ../../templates/show_install.inc:51
+msgid "Step 3 - Setup Initial Account"
+msgstr "Step 3 - Setup Initial Account"
+
+#: ../../templates/show_install_account.inc.php:52
+msgid "This step creates your initial Ampache admin account. Once your admin account has been created you will be directed to the login page"
+msgstr "This step creates your initial Ampache admin account. Once your admin account has been created you will be directed to the login page"
+
+#: ../../templates/show_install_account.inc.php:68
+msgid "Create Account"
+msgstr "Create Account"
+
+#: ../../templates/show_confirm_action.inc.php:28
+msgid "Yes"
+msgstr "Yes"
+
+#: ../../templates/show_import_playlist.inc.php:26
+msgid "Importing a Playlist from a File"
+msgstr "Importing a Playlist from a File"
+
+#: ../../templates/show_import_playlist.inc.php:29
+#: ../../upload.php:237
+msgid "Filename"
+msgstr "Filename"
+
+#: ../../templates/show_import_playlist.inc.php:36
+msgid "Playlist Type"
+msgstr "Playlist Type"
+
+#: ../../templates/show_import_playlist.inc.php:49
+msgid "Import Playlist"
+msgstr "Import Playlist"
+
+#: ../../templates/show_user.inc.php:31
+#: ../../templates/customize_catalog.inc:29
+#: ../../templates/show_add_access.inc:40
+#: ../../templates/show_access_list.inc:47
+msgid "Name"
+msgstr "Name"
+
+#: ../../templates/show_user.inc.php:48
+msgid "View Limit"
+msgstr "View Limit"
+
+#: ../../templates/show_user.inc.php:56
+msgid "Update Profile"
+msgstr "Update Profile"
+
+#: ../../templates/show_user.inc.php:67
+msgid "Enter password"
+msgstr "Enter password"
+
+#: ../../templates/show_user.inc.php:83
+msgid "Change Password"
+msgstr "Change Password"
+
+#: ../../templates/show_user.inc.php:91
+msgid "Clear Stats"
+msgstr "Clear Stats"
+
+#: ../../templates/show_confirmation.inc.php:30
+msgid "Continue"
+msgstr "Continue"
+
+#: ../../templates/show_play_selected.inc.php:43
+msgid "Play Selected"
+msgstr "Play Selected"
+
+#: ../../templates/show_play_selected.inc.php:44
+#: ../../playlist.php:77
+msgid "Flag Selected"
+msgstr "Flag Selected"
+
+#: ../../templates/show_play_selected.inc.php:45
+#: ../../playlist.php:83
+msgid "Edit Selected"
+msgstr "Edit Selected"
+
+#: ../../templates/show_play_selected.inc.php:52
+msgid "Set Track Numbers"
+msgstr "Set Track Numbers"
+
+#: ../../templates/show_play_selected.inc.php:53
+msgid "Remove Selected Tracks"
+msgstr "Remove Selected Tracks"
+
+#: ../../templates/show_play_selected.inc.php:59
+msgid "Playlist"
+msgstr "Playlist"
+
+#: ../../templates/show_play_selected.inc.php:59
+msgid "Add to"
+msgstr "Add to"
+
+#: ../../localplay.php:79
+msgid "Unknown action requested"
+msgstr "Unknown action requested"
+
+#: ../../artists.php:47
+msgid "All songs by"
+msgstr "All songs by"
+
+#: ../../artists.php:56
+#: ../../albums.php:105
+msgid "Starting Update from Tags"
+msgstr "Starting Update from Tags"
+
+#: ../../artists.php:61
+#: ../../albums.php:110
+msgid "Update From Tags Complete"
+msgstr "Update From Tags Complete"
+
+#: ../../artists.php:73
+#: ../../artists.php:82
+#: ../../artists.php:94
+#: ../../artists.php:111
+msgid "<u>S</u>how artists starting with"
+msgstr "<u>S</u>how artists starting with"
+
+#: ../../amp-mpd.php:41
+msgid "Error Connecting"
+msgstr "Error Connecting"
+
+#: ../../playlist.php:115
+msgid "owned by"
+msgstr "owned by"
+
+#: ../../playlist.php:118
+msgid "Edit Playlist"
+msgstr "Edit Playlist"
+
+#: ../../playlist.php:121
+msgid "Play Full Playlist"
+msgstr "Play Full Playlist"
+
+#: ../../playlist.php:122
+msgid "Play Random"
+msgstr "Play Random"
+
+#: ../../playlist.php:135
+msgid "New Playlist"
+msgstr "New Playlist"
+
+#: ../../playlist.php:192
+msgid "Playlist updated."
+msgstr "Playlist updated."
+
+#: ../../index.php:38
+msgid "Welcome to"
+msgstr "Welcome to"
+
+#: ../../index.php:40
+msgid "you are currently logged in as"
+msgstr "you are currently logged in as"
+
+#: ../../index.php:65
+msgid "Most Popular Albums"
+msgstr "Most Popular Albums"
+
+#: ../../index.php:75
+msgid "Most Popular Artists"
+msgstr "Most Popular Artists"
+
+#: ../../index.php:82
+msgid "Most Popular Songs"
+msgstr "Most Popular Songs"
+
+#: ../../index.php:92
+msgid "Newest Artist Additions"
+msgstr "Newest Artist Additions"
+
+#: ../../index.php:99
+msgid "Newest Album Additions"
+msgstr "Newest Album Additions"
+
+#: ../../user.php:45
+msgid "Error: Password Does Not Match or Empty"
+msgstr "Error: Password Does Not Match or Empty"
+
+#: ../../user.php:51
+#: ../../user.php:62
+msgid "Error: Insufficient Rights"
+msgstr "Error: Insufficient Rights"
+
+#: ../../flag.php:35
+msgid "Flagging song completed."
+msgstr "Flagging song completed."
+
+#: ../../albums.php:43
+msgid "Album Art Cleared"
+msgstr "Album Art Cleared"
+
+#: ../../albums.php:43
+msgid "Album Art information has been removed form the database"
+msgstr "Album Art information has been removed from the database"
+
+#: ../../albums.php:77
+msgid "Album Art Located"
+msgstr "Album Art Located"
+
+#: ../../albums.php:77
+msgid "Album Art information has been located in Amazon. If incorrect, click \"Reset Album Art\" below to remove the artwork."
+msgstr "Album Art information has been located in Amazon. If incorrect, click \"Reset Album Art\" below to remove the artwork."
+
+#: ../../albums.php:85
+#: ../../albums.php:95
+msgid "Get Art"
+msgstr "Get Art"
+
+#: ../../albums.php:89
+msgid "Album Art Not Located"
+msgstr "Album Art Not Located"
+
+#: ../../albums.php:89
+msgid "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."
+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:126
+#: ../../albums.php:132
+msgid "<u>S</u>how all albums"
+msgstr "<u>S</u>how all albums"
+
+#: ../../albums.php:139
+#: ../../albums.php:146
+#: ../../albums.php:151
+msgid "<u>S</u>how only albums starting with"
+msgstr "<u>S</u>how only albums starting with"
+
+#: ../../albums.php:145
+msgid "Select a starting letter or Show all"
+msgstr "Select a starting letter or Show all"
+
+#: ../../upload.php:124
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
+msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini"
+
+#: ../../upload.php:127
+msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."
+msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."
+
+#: ../../upload.php:130
+msgid "The uploaded file was only partially uploaded."
+msgstr "The uploaded file was only partially uploaded."
+
+#: ../../upload.php:133
+msgid "No file was uploaded."
+msgstr "No file was uploaded."
+
+#: ../../upload.php:136
+msgid "An Unknown Error has occured."
+msgstr "An Unknown Error has occured."
+
+#: ../../upload.php:157
+msgid "Successfully-Quarantined"
+msgstr "Successfully-Quarantined"
+
+#: ../../upload.php:167
+msgid "Successfully-Cataloged"
+msgstr "Successfully-Catalogued"
+
+#: ../../upload.php:229
+#: ../../templates/show_artists.inc:43
+#: ../../templates/show_artists.inc:67
+#: ../../templates/show_songs.inc:42
+#: ../../templates/show_albums.inc:45
+#: ../../templates/show_albums.inc:75
+#: ../../templates/show_access_list.inc:51
+#: ../../templates/show_artist.inc:56
+msgid "Action"
+msgstr "Action"
+
+#: ../../upload.php:230
+#: ../../templates/list_flagged.inc:41
+#: ../../templates/flag.inc:58
+msgid "Song"
+msgstr "Song"
+
+#: ../../upload.php:236
+#: ../../templates/show_songs.inc:38
+msgid "Size"
+msgstr "Size"
+
+#: ../../upload.php:238
+msgid "User"
+msgstr "User"
+
+#: ../../upload.php:239
+msgid "Date"
+msgstr "Date"
+
+#: ../../upload.php:267
+msgid "Unknown"
+msgstr "Unknown"
+
+#: ../../upload.php:289
+msgid "Add"
+msgstr "Add"
+
+#: ../../upload.php:294
+msgid "Quarantined"
+msgstr "Quarantined"
+
+#: ../../templates/customize_catalog.inc:24
+msgid "Settings for catalog in"
+msgstr "Settings for catalogue in"
+
+#: ../../templates/customize_catalog.inc:32
+#: ../../templates/add_catalog.inc:39
+msgid "Auto-inserted Fields"
+msgstr "Auto-inserted Fields"
+
+#: ../../templates/customize_catalog.inc:33
+#: ../../templates/add_catalog.inc:40
+msgid "album name"
+msgstr "album name"
+
+#: ../../templates/customize_catalog.inc:34
+#: ../../templates/add_catalog.inc:41
+msgid "artist name"
+msgstr "artist name"
+
+#: ../../templates/customize_catalog.inc:35
+msgid "catalog path"
+msgstr "catalogue path"
+
+#: ../../templates/customize_catalog.inc:36
+#: ../../templates/add_catalog.inc:42
+msgid "id3 comment"
+msgstr "id3 comment"
+
+#: ../../templates/customize_catalog.inc:37
+#: ../../templates/add_catalog.inc:43
+msgid "genre"
+msgstr "genre"
+
+#: ../../templates/customize_catalog.inc:38
+#: ../../templates/add_catalog.inc:44
+msgid "track number (padded with leading 0)"
+msgstr "track number (padded with leading 0)"
+
+#: ../../templates/customize_catalog.inc:39
+#: ../../templates/add_catalog.inc:45
+msgid "song title"
+msgstr "song title"
+
+#: ../../templates/customize_catalog.inc:40
+#: ../../templates/add_catalog.inc:46
+msgid "year"
+msgstr "year"
+
+#: ../../templates/customize_catalog.inc:41
+#: ../../templates/add_catalog.inc:47
+msgid "other"
+msgstr "other"
+
+#: ../../templates/customize_catalog.inc:45
+msgid "ID3 set command"
+msgstr "ID3 set command"
+
+#: ../../templates/customize_catalog.inc:51
+msgid "Filename pattern"
+msgstr "Filename pattern"
+
+#: ../../templates/customize_catalog.inc:58
+#: ../../templates/add_catalog.inc:74
+msgid "Folder Pattern"
+msgstr "Folder Pattern"
+
+#: ../../templates/customize_catalog.inc:58
+#: ../../templates/add_catalog.inc:74
+msgid "(no leading or ending '/')"
+msgstr "(no leading or ending '/')"
+
+#: ../../templates/customize_catalog.inc:69
+msgid "Save Catalog Settings"
+msgstr "Save Catalogue Settings"
+
+#: ../../templates/show_admin_index.inc:27
+msgid "Admin Section"
+msgstr "Admin Section"
+
+#: ../../templates/show_admin_index.inc:29
+#: ../../templates/admin_menu.inc:33
+msgid "Users"
+msgstr "Users"
+
+#: ../../templates/show_admin_index.inc:29
+msgid "Create/Modify User Accounts for Ampache"
+msgstr "Create/Modify User Accounts for Ampache"
+
+#: ../../templates/show_admin_index.inc:30
+msgid "Mail"
+msgstr "Mail"
+
+#: ../../templates/show_admin_index.inc:30
+msgid "Mail your users to notfiy them of changes"
+msgstr "Mail your users to notfiy them of changes"
+
+#: ../../templates/show_admin_index.inc:31
+msgid "Create/Update/Clean your catalog here"
+msgstr "Create/Update/Clean your catalogue here"
+
+#: ../../templates/show_admin_index.inc:32
+#: ../../templates/admin_menu.inc:36
+msgid "Admin Preferences"
+msgstr "Admin Preferences"
+
+#: ../../templates/show_admin_index.inc:32
+msgid "Modify Site-wide preferences"
+msgstr "Modify Site-wide preferences"
+
+#: ../../templates/show_admin_index.inc:33
+#: ../../templates/catalog.inc:98
+#: ../../templates/admin_menu.inc:37
+msgid "Access Lists"
+msgstr "Access Lists"
+
+#: ../../templates/show_admin_index.inc:33
+msgid "Modify Access List Permissions"
+msgstr "Modify Access List Permissions"
+
+#: ../../templates/show_admin_index.inc:33
+msgid "Must have access_control=true in ampache.cfg"
+msgstr "Must have access_control=true in ampache.cfg"
+
+#: ../../templates/show_test.inc:29
+msgid "Ampache Debug"
+msgstr "Ampache Debug"
+
+#: ../../templates/show_test.inc:30
+msgid "You've reached this page because a configuration error has occured. Debug Information below"
+msgstr "You've reached this page because a configuration error has occured. Debug Information below"
+
+#: ../../templates/show_test.inc:34
+msgid "CHECK"
+msgstr "CHECK"
+
+#: ../../templates/show_test.inc:36
+msgid "STATUS"
+msgstr "STATUS"
+
+#: ../../templates/show_test.inc:38
+msgid "DESCRIPTION"
+msgstr "DESCRIPTION"
+
+#: ../../templates/show_test.inc:41
+msgid "PHP Version"
+msgstr "PHP Version"
+
+#: ../../templates/show_test.inc:56
+msgid "This tests to make sure that you are running a version of PHP that is known to work with Ampache."
+msgstr "This tests to make sure that you are running a version of PHP that is known to work with Ampache."
+
+#: ../../templates/show_test.inc:60
+msgid "Mysql for PHP"
+msgstr "Mysql for PHP"
+
+#: ../../templates/show_test.inc:75
+msgid "This test checks to see if you have the mysql extensions loaded for PHP. These are required for Ampache to work."
+msgstr "This test checks to see if you have the mysql extensions loaded for PHP. These are required for Ampache to work."
+
+#: ../../templates/show_test.inc:79
+msgid "PHP Session Support"
+msgstr "PHP Session Support"
+
+#: ../../templates/show_test.inc:94
+msgid "This test checks to make sure that you have PHP session support enabled. Sessions are required for Ampache to work."
+msgstr "This test checks to make sure that you have PHP session support enabled. Sessions are required for Ampache to work."
+
+#: ../../templates/show_test.inc:98
+msgid "PHP ICONV Support"
+msgstr "PHP ICONV Support"
+
+#: ../../templates/show_test.inc:112
+msgid "This test checks to make sure you have Iconv support installed. Iconv support is not required for Ampache, but it is highly recommended"
+msgstr "This test checks to make sure you have Iconv support installed. Iconv support is not required for Ampache, but it is highly recommended"
+
+#: ../../templates/show_test.inc:116
+#: ../../templates/show_install_config.inc:87
+msgid "Ampache.cfg.php Exists"
+msgstr "Ampache.cfg.php Exists"
+
+#: ../../templates/show_test.inc:131
+msgid ""
+"This attempts to read /config/ampache.cfg.php If this fails either the ampache.cfg.php is not in the correct locations or\n"
+"\tit is not currently readable by your webserver."
+msgstr ""
+"This attempts to read /config/ampache.cfg.php If this fails either the ampache.cfg.php is not in the correct locations or\n"
+"\tit is not currently readable by your webserver."
+
+#: ../../templates/show_test.inc:137
+#: ../../templates/show_install_config.inc:104
+msgid "Ampache.cfg.php Configured?"
+msgstr "Ampache.cfg.php Configured?"
+
+#: ../../templates/show_test.inc:154
+msgid ""
+"This test makes sure that you have set all of the required config variables and that we are able to \n"
+"\tcompleatly parse your config file"
+msgstr ""
+"This test makes sure that you have set all of the required configuration variables and that we are able to \n"
+"\tcompletely parse your config file"
+
+#: ../../templates/show_test.inc:160
+msgid "Ampache.cfg.php Up to Date?"
+msgstr "Ampache.cfg.php Up to Date?"
+
+#: ../../templates/show_test.inc:180
+msgid "Ampache.cfg.php is missing the following:"
+msgstr "Ampache.cfg.php is missing the following:"
+
+#: ../../templates/show_test.inc:181
+msgid "Under CONF"
+msgstr "Under CONF"
+
+#: ../../templates/show_test.inc:185
+msgid "Under LIBGLUE"
+msgstr "Under LIBGLUE"
+
+#: ../../templates/show_test.inc:196
+msgid "DB Connection"
+msgstr "DB Connection"
+
+#: ../../templates/show_test.inc:212
+msgid "This attempts to connect to your database using the values from your ampache.cfg.php"
+msgstr "This attempts to connect to your database using the values from your ampache.cfg.php"
+
+#: ../../templates/show_localplay.inc:30
+msgid "Local Play Control"
+msgstr "Local Play Control"
+
+#: ../../templates/show_localplay.inc:35
+msgid "Playback"
+msgstr "Playback"
+
+#: ../../templates/show_localplay.inc:39
+#: ../../templates/list_header.inc:71
+#: ../../templates/show_mpdplay.inc:43
+msgid "Prev"
+msgstr "Prev"
+
+#: ../../templates/show_localplay.inc:40
+#: ../../templates/show_mpdplay.inc:44
+msgid "Stop"
+msgstr "Stop"
+
+#: ../../templates/show_localplay.inc:42
+#: ../../templates/show_mpdplay.inc:46
+msgid "Pause"
+msgstr "Pause"
+
+#: ../../templates/show_localplay.inc:43
+#: ../../templates/list_header.inc:94
+#: ../../templates/show_mpdplay.inc:47
+msgid "Next"
+msgstr "Next"
+
+#: ../../templates/show_localplay.inc:49
+msgid "Volume"
+msgstr "Volume"
+
+#: ../../templates/show_localplay.inc:53
+#: ../../templates/show_localplay.inc:54
+msgid "Increase Volume"
+msgstr "Increase Volume"
+
+#: ../../templates/show_localplay.inc:55
+#: ../../templates/show_localplay.inc:56
+msgid "Decrease Volume"
+msgstr "Decrease Volume"
+
+#: ../../templates/show_localplay.inc:62
+msgid "Clear queue"
+msgstr "Clear queue"
+
+#: ../../templates/add_catalog.inc:28
+msgid "Add a Catalog"
+msgstr "Add a Catalogue"
+
+#: ../../templates/add_catalog.inc:30
+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/add_catalog.inc:36
+msgid "Catalog Name"
+msgstr "Catalogue Name"
+
+#: ../../templates/add_catalog.inc:53
+msgid "Path"
+msgstr "Path"
+
+#: ../../templates/add_catalog.inc:57
+msgid "Catalog Type"
+msgstr "Catalogue Type"
+
+#: ../../templates/add_catalog.inc:61
+msgid "Remote"
+msgstr "Remote"
+
+#: ../../templates/add_catalog.inc:66
+msgid "ID3 Set Command"
+msgstr "ID3 Set Command"
+
+#: ../../templates/add_catalog.inc:70
+msgid "Filename Pattern"
+msgstr "Filename Pattern"
+
+#: ../../templates/add_catalog.inc:78
+#: ../../templates/catalog.inc:104
+msgid "Gather Album Art"
+msgstr "Gather Album Art"
+
+#: ../../templates/add_catalog.inc:82
+msgid "ID3V2 Tags"
+msgstr "ID3V2 Tags"
+
+#: ../../templates/add_catalog.inc:85
+msgid "Amazon"
+msgstr "Amazon"
+
+#: ../../templates/add_catalog.inc:88
+msgid "File Folder"
+msgstr "File Folder"
+
+#: ../../templates/add_catalog.inc:95
+msgid "Build Playlists from m3u Files"
+msgstr "Build Playlists from m3u Files"
+
+#: ../../templates/add_catalog.inc:102
+msgid "Add Catalog"
+msgstr "Add Catalogue"
+
+#: ../../templates/list_flagged.inc:42
+#: ../../templates/show_songs.inc:41
+msgid "Flag"
+msgstr "Flag"
+
+#: ../../templates/list_flagged.inc:43
+msgid "New Flag"
+msgstr "New Flag"
+
+#: ../../templates/list_flagged.inc:44
+msgid "Flagged by"
+msgstr "Flagged by"
+
+#: ../../templates/list_flagged.inc:45
+msgid "ID3 Update"
+msgstr "ID3 Update"
+
+#: ../../templates/list_flagged.inc:69
+msgid "Accept"
+msgstr "Accept"
+
+#: ../../templates/list_flagged.inc:70
+msgid "Reject"
+msgstr "Reject"
+
+#: ../../templates/show_songs.inc:33
+msgid "Song title"
+msgstr "Song title"
+
+#: ../../templates/show_songs.inc:113
+msgid "Direct Link"
+msgstr "Direct Link"
+
+#: ../../templates/show_songs.inc:131
+msgid "Total"
+msgstr "Total"
+
+#: ../../templates/show_install_config.inc:41
+#: ../../templates/show_install.inc:40
+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_config.inc:49
+#: ../../templates/show_install.inc:50
+msgid "Step 2 - Creating the Ampache.cfg.php file"
+msgstr "Step 2 - Creating the Ampache.cfg.php file"
+
+#: ../../templates/show_install_config.inc: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_install_config.inc:59
+msgid "Web Path"
+msgstr "Web Path"
+
+#: ../../templates/show_install_config.inc:63
+#: ../../templates/show_install.inc:57
+msgid "Desired Database Name"
+msgstr "Desired Database Name"
+
+#: ../../templates/show_install_config.inc:67
+#: ../../templates/show_install.inc:61
+msgid "MySQL Hostname"
+msgstr "MySQL Hostname"
+
+#: ../../templates/show_install_config.inc:71
+msgid "MySQL Username"
+msgstr "MySQL Username"
+
+#: ../../templates/show_install_config.inc:75
+msgid "MySQL Password"
+msgstr "MySQL Password"
+
+#: ../../templates/show_install_config.inc:80
+msgid "Write Config"
+msgstr "Write Configuration"
+
+#: ../../templates/show_install_config.inc:124
+msgid "Check for Config"
+msgstr "Check for Configuration"
+
+#: ../../templates/show_album.inc:53
+msgid "Play Album"
+msgstr "Play Album"
+
+#: ../../templates/show_album.inc:54
+msgid "Play Random from Album"
+msgstr "Play Random from Album"
+
+#: ../../templates/show_album.inc:55
+msgid "Reset Album Art"
+msgstr "Reset Album Art"
+
+#: ../../templates/show_album.inc:56
+msgid "Find Album Art"
+msgstr "Find Album Art"
+
+#: ../../templates/show_album.inc:58
+#: ../../templates/show_artist.inc:37
+msgid "Update from tags"
+msgstr "Update from tags"
+
+#: ../../templates/show_preferences.inc:31
+msgid "Editing"
+msgstr "Editing"
+
+#: ../../templates/show_preferences.inc:31
+msgid "preferences"
+msgstr "preferences"
+
+#: ../../templates/show_preferences.inc:33
+msgid "Rebuild Preferences"
+msgstr "Rebuild Preferences"
+
+#: ../../templates/show_preferences.inc:39
+msgid "Preference"
+msgstr "Preference"
+
+#: ../../templates/show_preferences.inc:40
+msgid "Value"
+msgstr "Value"
+
+#: ../../templates/show_preferences.inc:42
+msgid "Type"
+msgstr "Type"
+
+#: ../../templates/show_preferences.inc:43
+msgid "Apply to All"
+msgstr "Apply to All"
+
+#: ../../templates/show_preferences.inc:83
+msgid "Update Preferences"
+msgstr "Update Preferences"
+
+#: ../../templates/show_preferences.inc:87
+msgid "Cancel"
+msgstr "Cancel"
+
+#: ../../templates/userform.inc:25
+msgid "Adding a New User"
+msgstr "Adding a New User"
+
+#: ../../templates/userform.inc:29
+msgid "Editing existing User"
+msgstr "Editing existing User"
+
+#: ../../templates/userform.inc:81
+msgid "User Access Level"
+msgstr "User Access Level"
+
+#: ../../templates/userform.inc:97
+msgid "Add User"
+msgstr "Add User"
+
+#: ../../templates/userform.inc:102
+msgid "Update User"
+msgstr "Update User"
+
+#: ../../templates/show_install.inc:48
+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 "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_install.inc:65
+msgid "MySQL Administrative Username"
+msgstr "MySQL Administrative Username"
+
+#: ../../templates/show_install.inc:69
+msgid "MySQL Administrative Password"
+msgstr "MySQL Administrative Password"
+
+#: ../../templates/show_install.inc:74
+msgid "Insert Database"
+msgstr "Insert Database"
+
+#: ../../templates/flag.inc:43
+msgid "Flag song"
+msgstr "Flag song"
+
+#: ../../templates/flag.inc:45
+msgid "Flag the following song as having one of the problems listed below. Site admins will then take the appropriate action for the flagged files."
+msgstr "Flag the following song as having one of the problems listed below. Site admins will then take the appropriate action for the flagged files."
+
+#: ../../templates/flag.inc:62
+msgid "Reason to flag"
+msgstr "Reason to flag"
+
+#: ../../templates/flag.inc:73
+msgid "Flag Song"
+msgstr "Flag Song"
+
+#: ../../templates/show_add_access.inc:31
+msgid "Add Access for a Host"
+msgstr "Add Access for a Host"
+
+#: ../../templates/show_add_access.inc:33
+msgid "Use the form below to add a host that you want to have access to your Ampache catalog."
+msgstr "Use the form below to add a host that you want to have access to your Ampache catalog."
+
+#: ../../templates/show_add_access.inc:46
+msgid "Start IP Address"
+msgstr "Start IP Address"
+
+#: ../../templates/show_add_access.inc:52
+msgid "End IP Address"
+msgstr "End IP Address"
+
+#: ../../templates/show_add_access.inc:58
+#: ../../templates/show_access_list.inc:50
+msgid "Level"
+msgstr "Level"
+
+#: ../../templates/show_add_access.inc:72
+msgid "Add Host"
+msgstr "Add Host"
+
+#: ../../templates/catalog.inc:33
+msgid "Error: ICONV not found, ID3V2 Tags will not import correctly. See <a href=\"http://php.oregonstate.edu/iconv\">Iconv</a> for information on getting ICONV"
+msgstr "Error: ICONV not found, ID3V2 Tags will not import correctly. See <a href=\"http://php.oregonstate.edu/iconv\">Iconv</a> for information on getting ICONV"
+
+#: ../../templates/catalog.inc:42
+msgid "Update Catalogs"
+msgstr "Update Catalogues"
+
+#: ../../templates/catalog.inc:68
+msgid "Fast Add"
+msgstr "Fast Add"
+
+#: ../../templates/catalog.inc:75
+msgid "Fast Update"
+msgstr "Fast Update"
+
+#: ../../templates/catalog.inc:88
+msgid "You don't have any catalogs."
+msgstr "You don't have any catalogues."
+
+#: ../../templates/catalog.inc:97
+msgid "Add a catalog"
+msgstr "Add a catalogue"
+
+#: ../../templates/catalog.inc:99
+msgid "Show Duplicate Songs"
+msgstr "Show Duplicate Songs"
+
+#: ../../templates/catalog.inc:100
+msgid "Show Disabled Songs"
+msgstr "Show Disabled Songs"
+
+#: ../../templates/catalog.inc:101
+msgid "Clear Catalog Stats"
+msgstr "Clear Catalogue Stats"
+
+#: ../../templates/catalog.inc:102
+msgid "Clear Now Playing"
+msgstr "Clear Now Playing"
+
+#: ../../templates/catalog.inc:103
+msgid "Dump Album Art"
+msgstr "Dump Album Art"
+
+#: ../../templates/catalog.inc:105
+msgid "View flagged songs"
+msgstr "View flagged songs"
+
+#: ../../templates/catalog.inc:106
+msgid "Catalog Tools"
+msgstr "Catalogue Tools"
+
+#: ../../templates/admin_menu.inc:34
+msgid "Mail Users"
+msgstr "Mail Users"
+
+#: ../../templates/menu.inc:29
+msgid "Home"
+msgstr "Главная"
+
+#: ../../templates/menu.inc:32
+msgid "Local Play"
+msgstr "Local Play"
+
+#: ../../templates/menu.inc:37
+msgid "Playlists"
+msgstr "Playlists"
+
+#: ../../templates/menu.inc:39
+msgid "Preferences"
+msgstr "Preferences"
+
+#: ../../templates/menu.inc:42
+#: ../../templates/show_upload.inc:59
+msgid "Upload"
+msgstr "Закачать"
+
+#: ../../templates/menu.inc:62
+#: ../../templates/menu.inc:65
+msgid "Admin"
+msgstr "Админка"
+
+#: ../../templates/menu.inc:72
+#: ../../templates/menu.inc:78
+msgid "Account"
+msgstr "Аккаунт"
+
+#: ../../templates/menu.inc:73
+#: ../../templates/menu.inc:79
+msgid "Stats"
+msgstr "Stats"
+
+#: ../../templates/menu.inc:74
+#: ../../templates/menu.inc:80
+#: ../../templates/menu.inc:84
+msgid "Logout"
+msgstr "Logout"
+
+#: ../../templates/show_upload.inc:27
+msgid "Please Ensure All Files Are Tagged Correctly"
+msgstr "Please Ensure All Files Are Tagged Correctly"
+
+#: ../../templates/show_upload.inc:30
+msgid "Ampache relies on id3 tags to sort data. If your file is not tagged it may be deleted."
+msgstr "Ampache relies on id3 tags to sort data. If your file is not tagged it may be deleted."
+
+#: ../../templates/show_upload.inc:34
+msgid "max_upload_size"
+msgstr "max_upload_size"
+
+#: ../../templates/show_now_playing.inc:31
+#: ../../templates/show_mpdplay.inc:90
+msgid "Now Playing"
+msgstr "Сейчас слушают"
+
+#: ../../templates/show_login_form.inc:49
+#: ../../templates/show_login_form.inc:63
+msgid "Login"
+msgstr "Login"
+
+#: ../../templates/show_login_form.inc:59
+msgid "Remember Me"
+msgstr "Remember Me"
+
+#: ../../templates/show_access_list.inc:34
+msgid "Host Access to Your Catalog"
+msgstr "Host Access to Your Catalogue"
+
+#: ../../templates/show_access_list.inc:43
+msgid "Add Entry"
+msgstr "Add Entry"
+
+#: ../../templates/show_access_list.inc:48
+msgid "Start Address"
+msgstr "Start Address"
+
+#: ../../templates/show_access_list.inc:49
+msgid "End Address"
+msgstr "End Address"
+
+#: ../../templates/show_access_list.inc:65
+msgid "Revoke"
+msgstr "Revoke"
+
+#: ../../templates/show_users.inc:43
+msgid "Fullname"
+msgstr "Fullname"
+
+#: ../../templates/show_users.inc:48
+msgid "Last Seen"
+msgstr "Last Seen"
+
+#: ../../templates/show_users.inc:55
+#: ../../templates/show_users.inc:91
+msgid "Prefs"
+msgstr "Preferencess"
+
+#: ../../templates/show_users.inc:58
+msgid "Access"
+msgstr "Доступ"
+
+#: ../../templates/show_users.inc:64
+msgid "On-line"
+msgstr "On-line"
+
+#: ../../templates/show_users.inc:105
+msgid "delete"
+msgstr "delete"
+
+#: ../../templates/show_search.inc:34
+msgid "Search Ampache"
+msgstr "Поиск"
+
+#: ../../templates/show_search.inc:41
+msgid "Object Type"
+msgstr "Object Type"
+
+#: ../../templates/show_artist.inc:31
+msgid "Albums by"
+msgstr "Albums by"
+
+#: ../../templates/show_artist.inc:33
+msgid "Show All Songs By"
+msgstr "Show All Songs By"
+
+#: ../../templates/show_artist.inc:34
+msgid "Play All Songs By"
+msgstr "Play All Songs By"
+
+#: ../../templates/show_artist.inc:35
+msgid "Play Random Songs By"
+msgstr "Play Random Songs By"
+
+#: ../../templates/show_artist.inc:50
+msgid "Select"
+msgstr "Выбрать"
+
+#: ../../templates/show_artist.inc:52
+msgid "Cover"
+msgstr "Обложка"
+
+#: ../../templates/show_artist.inc:53
+msgid "Album Name"
+msgstr "Название альбома"
+
+#: ../../templates/show_artist.inc:54
+msgid "Album Year"
+msgstr "Год"
+
+#: ../../templates/show_artist.inc:55
+msgid "Total Tracks"
+msgstr "Всего треков"
+
+#: ../../templates/show_mpdplay.inc:33
+msgid "MPD Play Control"
+msgstr "MPD Play Control"
+
+#: ../../templates/show_mpdplay.inc:53
+msgid "Loop"
+msgstr "повторять"
+
+#: ../../templates/show_mpdplay.inc:60
+#: ../../templates/show_mpdplay.inc:73
+msgid "On"
+msgstr "Вкл"
+
+#: ../../templates/show_mpdplay.inc:61
+#: ../../templates/show_mpdplay.inc:74
+msgid "Off"
+msgstr "Выкл"
+
+#: ../../templates/show_mpdplay.inc:103
+msgid "Refresh the Playlist Window"
+msgstr "Обновить окно Списка"
+
+#: ../../templates/show_mpdplay.inc:103
+msgid "refresh now"
+msgstr "обновить сейчас"
+
+#: ../../templates/show_mpdplay.inc:111
+msgid "Server Playlist"
+msgstr "Список Сервера"
+
+#: ../../templates/show_mpdplay.inc:146
+msgid "Click to shuffle (randomize) the playlist"
+msgstr "нажмите чтобы перемешать список"
+
+#: ../../templates/show_mpdplay.inc:146
+msgid "shuffle"
+msgstr "Случайный выбор"
+
+#: ../../templates/show_mpdplay.inc:147
+msgid "Click the clear the playlist"
+msgstr "Нажмите чтобы очистить плейлист"
+
+#: ../../templates/show_mpdplay.inc:147
+msgid "clear"
+msgstr "очистить"
\ No newline at end of file diff --git a/locale/tr_TR/LC_MESSAGES/messages.po b/locale/tr_TR/LC_MESSAGES/messages.po index 7e083338..8d8b7d82 100644 --- a/locale/tr_TR/LC_MESSAGES/messages.po +++ b/locale/tr_TR/LC_MESSAGES/messages.po @@ -35,7 +35,7 @@ msgstr "" #: ../../lib/class/catalog.class.php:365 msgid "Added" -msgstr "Eklendi" +msgstr "" #: ../../lib/class/catalog.class.php:377 msgid "is not readable by ampache" @@ -1821,7 +1821,7 @@ msgstr "" #: ../../templates/show_localplay.inc:49 msgid "Volume" -msgstr "Ses" +msgstr "" #: ../../templates/show_localplay.inc:53 ../../templates/show_localplay.inc:54 msgid "Increase Volume" diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po index 3a9ea312..3f678256 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.po +++ b/locale/zh_CN/LC_MESSAGES/messages.po @@ -1032,7 +1032,6 @@ msgid "Play Random Selection" msgstr "" #: ../../templates/show_random_play_bar.inc.php:51 -#, fuzzy msgid "Full Artists" msgstr "" @@ -1046,7 +1045,6 @@ msgid "from" msgstr "" #: ../../templates/show_random_play_bar.inc.php:59 -#, fuzzy msgid "Advanced" msgstr "" @@ -1229,7 +1227,6 @@ msgid "Create New Playlist" msgstr "" #: ../../templates/show_playlist_box.inc.php:35 -#, fuzzy msgid "View All Playlists" msgstr "" @@ -1452,7 +1449,6 @@ msgid "Error: Upload directory not inside a catalog" msgstr "" #: ../../bin/quarantine_migration.php.inc:74 -#, fuzzy msgid "Moved" msgstr "" @@ -1501,7 +1497,6 @@ msgid "!\n" msgstr "" #: ../../templates/show_admin_index.inc:27 -#, fuzzy msgid "User Management" msgstr "" @@ -1510,7 +1505,6 @@ msgid "E-mail Management" msgstr "" #: ../../templates/show_admin_index.inc:29 -#, fuzzy msgid "Catalog Managment" msgstr "" @@ -1531,7 +1525,6 @@ msgid "Clear Now Playing" msgstr "" #: ../../templates/show_admin_index.inc:36 -#, fuzzy msgid "Add Access List Entry" msgstr "" @@ -1540,7 +1533,6 @@ msgid "Common Functions" msgstr "" #: ../../templates/show_admin_index.inc:43 -#, fuzzy msgid "Admin Sections" msgstr "" @@ -2288,7 +2280,6 @@ msgid "Object Type" msgstr "" #: ../../templates/show_search.inc:138 -#, fuzzy msgid "Genres" msgstr "" diff --git a/templates/show_admin_tools.inc.php b/templates/show_admin_tools.inc.php index 7c73fda2..0dc3331d 100644 --- a/templates/show_admin_tools.inc.php +++ b/templates/show_admin_tools.inc.php @@ -75,6 +75,10 @@ $users = $GLOBALS['user']->get_recent(10); <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/duplicates.php"><?php echo _('Show Duplicate Songs'); ?></a> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=clear_now_playing"><?php echo _('Clear Now Playing'); ?></a> + <hr noshade="noshade" size="3" /> + <a href="<?php echo $web_path; ?>/admin/system.php?action=generate_config"><?php echo _('Generate New Config'); ?></a> +<!-- <a href="<?php echo $web_path; ?>/admin/system.php?action=check_version"><?php echo _('Check for New Version'); ?></a> +--> </div> <?php show_box_bottom(); ?> <?php show_box_top(_('User Activity')); ?> diff --git a/templates/show_test.inc b/templates/show_test.inc index 54157c65..539b2cb4 100644 --- a/templates/show_test.inc +++ b/templates/show_test.inc @@ -135,6 +135,23 @@ $row_classes = array('even','odd'); </td> </tr> <tr> + <td valign="top"><?php echo _('PHP PutENV Support'); ?></td> + <td valign="top">[ + <?php + if (!check_putenv()) { + $status['putevn_php'] = false; + echo " <font color=\"red\">ERROR</font> "; + } + else { + echo "<font color=\"green\"> OK </font> "; + } + ?>] + </td> + <td> + <?php echo _('This test makes sure that PHP isn\'t running in SafeMode and that we are able to modify the memory limits. While not required, without these abilities some features of ampache may not work correctly'); ?> + </td> +</tr> +<tr> <td valign="top"><?php echo _('Ampache.cfg.php Exists'); ?></td> <td valign="top">[ <?php @@ -31,7 +31,7 @@ require_once($prefix . "/lib/general.lib.php"); require_once($prefix . "/lib/ui.lib.php"); require_once($prefix . "/lib/class/error.class.php"); $error = new error(); -require_once($prefix . "/lib/debug.php"); +require_once($prefix . "/lib/debug.lib.php"); |