diff options
author | momo-i <momo-i@ampache> | 2008-08-25 00:28:39 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2008-08-25 00:28:39 +0000 |
commit | c16f287900ca5ec869b151af00759ea852f39287 (patch) | |
tree | 6841b381d6d9e6be64651d09a2ce280783452013 /locale | |
parent | b395cd2f88daf5154517f88171547d18c95b6447 (diff) | |
download | ampache-c16f287900ca5ec869b151af00759ea852f39287.tar.gz ampache-c16f287900ca5ec869b151af00759ea852f39287.tar.bz2 ampache-c16f287900ca5ec869b151af00759ea852f39287.zip |
remove merge shell and integrate gather-messages.sh.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/base/LANGLIST | 16 | ||||
-rw-r--r-- | locale/base/TRANSLATIONS | 17 | ||||
-rwxr-xr-x | locale/base/gather-messages.sh | 74 | ||||
-rwxr-xr-x | locale/base/merge-messages.sh | 42 | ||||
-rw-r--r-- | locale/base/messages.pot (renamed from locale/base/messages.po) | 4113 |
5 files changed, 2211 insertions, 2051 deletions
diff --git a/locale/base/LANGLIST b/locale/base/LANGLIST new file mode 100644 index 00000000..69189642 --- /dev/null +++ b/locale/base/LANGLIST @@ -0,0 +1,16 @@ +Localization Status Report for Ampache. + +LANG Trans Fuzzy Untrans Obsolete +ca_CA 496 42 195 134 +de_DE 645 43 45 14 +el_GR 634 42 57 32 +en_GB 249 181 303 187 +es_ES 182 133 418 150 +fr_FR 671 43 19 141 +it_IT 288 161 284 180 +ja_JP 700 20 13 7 +nl_NL 341 158 234 187 +ru_RU 635 40 58 77 +tr_TR 3 59 671 49 +zh_CN 0 5 728 6 + diff --git a/locale/base/TRANSLATIONS b/locale/base/TRANSLATIONS index 5191bba8..43e14519 100644 --- a/locale/base/TRANSLATIONS +++ b/locale/base/TRANSLATIONS @@ -28,7 +28,7 @@ Introduction: already working on a translation. Once you are ready to start your translation you will need to get a few tools - - Gettext + - Gettext http://www.gnu.org/software/gettext/ - xgettext (Generates PO files) - msgmerge (Merges old and new PO files) - msgfmt (Generates the MO file from a PO file) @@ -39,19 +39,21 @@ Introduction: a translation # Gather All info - Run locale/base/gather-messages.sh + ./gather-messages.sh --all # Create New po file - xgettext -n *.php -L PHP -o /tmp/mesasge.po + LANG=YOURLANG ./gather-messages.sh --init + Example: LANG=ja_JP.UTF-8 ./gather-messages.sh --init + locale/ja_JP/LC_MESSAGES/messages.po will create. # Merge with existing po file - xgettext -o /tmp/messages.po -L PHP -n *.inc -j + ./gather-messages.sh --merge # Combine Old & New po files msgmerge old.po messages.po --output-file=new.po # Generate MO file for use by gettext - msgfmt messages.po -o /tmp/messages.mo + ./gather-messages.sh --format Creating a New Translation: @@ -116,8 +118,9 @@ Updating an Existing Translation: Questions: If you have any questions or are unable to get gettext to work for you please - feel free to contact us at translations@ampache.org. Thanks! - + feel free to contact us at translations@ampache.org or forums + http://ampache.org/forums/f7-Translations.html. Thanks! + Karl Vollmer http://www.ampache.org diff --git a/locale/base/gather-messages.sh b/locale/base/gather-messages.sh index 060021b2..964024c7 100755 --- a/locale/base/gather-messages.sh +++ b/locale/base/gather-messages.sh @@ -17,8 +17,17 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # +PATH=$PATH:/bin:/usr/bin:/usr/local/bin + +# gettext package test +if [ ! -x `which xgettext` ] +then + echo "xgettext was not found. please install gettext packages." + exit 0; +fi + SCRIPTS=$0 -MAILADDR="translation@ampache.org" +MAILADDR="translations at ampache.org" OLANG=`echo $LANG | sed 's/\..*//;'` POTNAME="messages.pot" PODIR="../$OLANG/LC_MESSAGES" @@ -27,34 +36,49 @@ MONAME="messages.mo" if [ ! -d $PODIR ] then - mkdir -p $PODIR - echo "$PODIR has created." + mkdir -p $PODIR + echo "$PODIR has created." fi if [ $# = 0 ]; then - echo "usage: $SCRIPTS [--help|--get|--init|--merge]" - exit + echo "usage: $SCRIPTS [--help|--get|--init|--merge|--format|--all]" + exit fi case $1 in - "--get"|"-g"|"get") - xgettext --from-code=UTF-8 --msgid-bugs-address=$MAILADDR -L php -o $POTNAME `find ../../ -name \*.php -type f` `find ../../ -name \*.inc -type f`; - if [ $? = 0 ]; then - echo "pot file creation was done."; - else - echo "pot file creation wasn't done."; - fi - ;; - "--init"|"-i"|"init") - msginit -l $LANG -i $POTNAME -o $PODIR/$PONAME; - ;; - "--format"|"-f"|"format") - msgfmt -v --check $PODIR/$PONAME -o $PODIR/$MONAME; - ;; - "--merge"|"-m"|"merge") - msgmerge --update $PODIR/$PONAME $POTNAME; - ;; - "--help"|"-h"|"help"|"*") - echo "usage: $SCRIPTS [--help|--get|--init|--merge]"; - ;; + "--all"|"-a"|"all") + xgettext --from-code=UTF-8 --msgid-bugs-address="$MAILADDR" -L php -o $POTNAME `find ../../ -name \*.php -type f` `find ../../ -name \*.inc -type f` + OLANG=`ls ../ | grep -v base` + for i in $OLANG + do + echo "$i PO file merging..." + msgmerge --update ../$i/LC_MESSAGES/messages.po messages.pot + echo "$i MO file creating..." + msgfmt -v -c ../$i/LC_MESSAGES/messages.po -o ../$i/LC_MESSAGES/messages.mo + rm -f ../$i/LC_MESSAGES/messages.po~ + done + ;; + "--get"|"-g"|"get") + xgettext --from-code=UTF-8 --msgid-bugs-address=$MAILADDR -L php -o $POTNAME `find ../../ -name \*.php -type f` `find ../../ -name \*.inc -type f`; + if [ $? = 0 ]; then + echo "pot file creation was done."; + else + echo "pot file creation wasn't done."; + fi + ;; + "--init"|"-i"|"init") + msginit -l $LANG -i $POTNAME -o $PODIR/$PONAME; + ;; + "--format"|"-f"|"format") + msgfmt -v --check $PODIR/$PONAME -o $PODIR/$MONAME; + ;; + "--merge"|"-m"|"merge") + msgmerge --update $PODIR/$PONAME $POTNAME; + rm -f $PODIR/messages.po~ + ;; + "--help"|"-h"|"help"|"*") + echo "usage: $SCRIPTS [--help|--get|--init|--merge|--format|--all]"; + echo ""; + echo "Please read for translation: http://ampache.org/wiki/dev:translation"; + ;; esac diff --git a/locale/base/merge-messages.sh b/locale/base/merge-messages.sh deleted file mode 100755 index 185344ad..00000000 --- a/locale/base/merge-messages.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 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 v2 -# as published by the Free Software Foundation. -# -# 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. -# - - -msgmerge -N ../de_DE/LC_MESSAGES/messages.po ./messages.po --output-file=../de_DE/LC_MESSAGES/messages.po -msgfmt -o ../de_DE/LC_MESSAGES/messages.mo ../de_DE/LC_MESSAGES/messages.po -msgmerge -N ../ca_CA/LC_MESSAGES/messages.po ./messages.po --output-file=../ca_CA/LC_MESSAGES/messages.po -msgfmt -o ../ca_CA/LC_MESSAGES/messages.mo ../ca_CA/LC_MESSAGES/messages.po -msgmerge -N ../el_GR/LC_MESSAGES/messages.po ./messages.po --output-file=../el_GR/LC_MESSAGES/messages.po -msgfmt -o ../el_GR/LC_MESSAGES/messages.mo ../el_GR/LC_MESSAGES/messages.po -msgmerge -N ../es_ES/LC_MESSAGES/messages.po ./messages.po --output-file=../es_ES/LC_MESSAGES/messages.po -msgfmt -o ../es_ES/LC_MESSAGES/messages.mo ../es_ES/LC_MESSAGES/messages.po -msgmerge -N ../en_GB/LC_MESSAGES/messages.po ./messages.po --output-file=../en_GB/LC_MESSAGES/messages.po -msgfmt -o ../en_GB/LC_MESSAGES/messages.mo ../en_GB/LC_MESSAGES/messages.po -msgmerge -N ../fr_FR/LC_MESSAGES/messages.po ./messages.po --output-file=../fr_FR/LC_MESSAGES/messages.po -msgfmt -o ../fr_FR/LC_MESSAGES/messages.mo ../fr_FR/LC_MESSAGES/messages.po -msgmerge -N ../it_IT/LC_MESSAGES/messages.po ./messages.po --output-file=../it_IT/LC_MESSAGES/messages.po -msgfmt -o ../it_IT/LC_MESSAGES/messages.mo ../it_IT/LC_MESSAGES/messages.po -msgmerge -N ../nl_NL/LC_MESSAGES/messages.po ./messages.po --output-file=../nl_NL/LC_MESSAGES/messages.po -msgfmt -o ../nl_NL/LC_MESSAGES/messages.mo ../nl_NL/LC_MESSAGES/messages.po -msgmerge -N ../tr_TR/LC_MESSAGES/messages.po ./messages.po --output-file=../tr_TR/LC_MESSAGES/messages.po -msgfmt -o ../tr_TR/LC_MESSAGES/messages.mo ../tr_TR/LC_MESSAGES/messages.po -msgmerge -N ../zh_CN/LC_MESSAGES/messages.po ./messages.po --output-file=../zh_CN/LC_MESSAGES/messages.po -msgfmt -o ../zh_CN/LC_MESSAGES/messages.mo ../zh_CN/LC_MESSAGES/messages.po -msgmerge -N ../ru_RU/LC_MESSAGES/messages.po ./messages.po --output-file=../ru_RU/LC_MESSAGES/messages.po -msgfmt -o ../ru_RU/LC_MESSAGES/messages.mo ../ru_RU/LC_MESSAGES/messages.po diff --git a/locale/base/messages.po b/locale/base/messages.pot index 1becb90b..3118c3dc 100644 --- a/locale/base/messages.po +++ b/locale/base/messages.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-10 02:21-0700\n" +"Report-Msgid-Bugs-To: translations at ampache.org\n" +"POT-Creation-Date: 2008-08-25 09:18+0900\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" @@ -17,1260 +17,1358 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../../register.php:73 -msgid "Error Captcha Required" +#: ../../search.php:38 +msgid "Error: No Keyword Entered" msgstr "" -#: ../../register.php:80 -msgid "Error Captcha Failed" +#: ../../templates/show_album_row.inc.php:23 +#: ../../templates/show_song_row.inc.php:23 +#: ../../templates/show_albums.inc.php:39 +#: ../../templates/show_albums.inc.php:69 +#: ../../templates/show_artists.inc.php:35 +#: ../../templates/show_artists.inc.php:62 +#: ../../templates/show_live_streams.inc.php:35 +#: ../../templates/show_live_streams.inc.php:57 +#: ../../templates/show_playlists.inc.php:34 +#: ../../templates/show_playlists.inc.php:57 +#: ../../templates/show_add_live_stream.inc.php:68 +#: ../../templates/show_catalog_row.inc.php:28 +#: ../../templates/show_artist_row.inc.php:23 +#: ../../templates/show_genres.inc.php:36 +#: ../../templates/show_genres.inc.php:72 +#: ../../templates/show_live_stream_row.inc.php:23 +#: ../../templates/show_shoutbox.inc.php:34 +#: ../../templates/show_songs.inc.php:39 ../../templates/show_songs.inc.php:68 +#: ../../templates/show_recently_played.inc.php:35 +#: ../../templates/show_recently_played.inc.php:78 +#: ../../templates/show_recently_played.inc.php:97 +#: ../../templates/show_artist.inc.php:38 +#: ../../templates/show_album.inc.php:51 +#: ../../templates/show_playlist_song_row.inc.php:22 +#: ../../templates/show_song.inc.php:28 +#: ../../templates/show_playlist_row.inc.php:23 +#: ../../templates/show_admin_tools.inc.php:45 +msgid "Add" msgstr "" -#: ../../register.php:87 -msgid "You <U>must</U> accept the user agreement" +#: ../../templates/show_album_row.inc.php:24 +#: ../../templates/sidebar_home.inc.php:91 +#: ../../templates/show_artist_row.inc.php:24 +#: ../../templates/show_localplay_status.inc.php:36 +#: ../../templates/show_artist.inc.php:41 +#: ../../templates/show_album.inc.php:55 +#: ../../templates/show_playlist_row.inc.php:24 +msgid "Random" msgstr "" -#: ../../register.php:92 -msgid "You did not enter a username" +#: ../../templates/show_album_row.inc.php:44 +#: ../../templates/show_song_row.inc.php:40 +msgid "Post Shout" msgstr "" -#: ../../register.php:96 -msgid "Please fill in your full name (Firstname Lastname)" +#: ../../templates/show_album_row.inc.php:47 +msgid "Add Tag" msgstr "" -#: ../../register.php:122 -msgid "You must enter a password" +#: ../../templates/show_album_row.inc.php:50 +#: ../../templates/show_playlist.inc.php:32 +#: ../../templates/rightbar.inc.php:48 +#: ../../templates/show_artist_row.inc.php:34 +#: ../../templates/show_search_options.inc.php:28 +#: ../../templates/show_playlist_row.inc.php:33 +msgid "Batch Download" msgstr "" -#: ../../register.php:126 -msgid "Your passwords do not match" +#: ../../templates/show_album_row.inc.php:54 +#: ../../templates/show_song_row.inc.php:49 +#: ../../templates/show_play_selected.inc.php:50 +#: ../../templates/show_artist_row.inc.php:38 +#: ../../templates/show_live_stream_row.inc.php:31 +#: ../../templates/show_playlist_song_row.inc.php:37 +#: ../../templates/show_playlist_row.inc.php:37 +msgid "Edit" msgstr "" -#: ../../register.php:130 ../../admin/users.php:110 -msgid "Error Username already exists" +#: ../../templates/show_user_preferences.inc.php:28 +#, php-format +msgid "Editing %s preferences" msgstr "" -#: ../../register.php:158 -msgid "Error: Insert Failed" +#: ../../templates/show_user_preferences.inc.php:36 +#: ../../templates/show_preference_box.inc.php:40 +#: ../../templates/show_preference_box.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:30 +#: ../../templates/show_preference_admin.inc.php:49 +#: ../../templates/show_debug.inc.php:81 +msgid "Preference" msgstr "" -#: ../../update.php:47 ../../update.php:51 -msgid "Ampache Update" +#: ../../templates/show_user_preferences.inc.php:37 +#: ../../templates/show_preference_box.inc.php:41 +#: ../../templates/show_preference_box.inc.php:71 +#: ../../templates/show_debug.inc.php:37 ../../templates/show_debug.inc.php:82 +msgid "Value" msgstr "" -#: ../../play/index.php:76 -msgid "Session Expired: please log in again at" +#: ../../templates/show_user_preferences.inc.php:50 +#: ../../templates/show_preferences.inc.php:34 +msgid "Update Preferences" msgstr "" -#: ../../radio.php:50 -msgid "Radio Station Added" +#: ../../templates/show_song_row.inc.php:45 +#: ../../templates/show_artist.inc.php:51 +#: ../../templates/show_album.inc.php:77 +#: ../../templates/show_playlist_song_row.inc.php:33 +msgid "Download" msgstr "" -#: ../../admin/flag.php:89 -msgid "Song Updated" +#: ../../templates/show_localplay_control.inc.php:25 +msgid "Previous" msgstr "" -#: ../../admin/flag.php:89 -msgid "The requested song has been updated" +#: ../../templates/show_localplay_control.inc.php:26 +msgid "Stop" msgstr "" -#: ../../admin/flag.php:131 -msgid "Album Updated" +#: ../../templates/show_localplay_control.inc.php:27 +msgid "Pause" msgstr "" -#: ../../admin/flag.php:173 -msgid "Artist Updated" +#: ../../templates/show_localplay_control.inc.php:28 +#: ../../templates/show_manage_democratic.inc.php:57 +#: ../../templates/rightbar.inc.php:25 +msgid "Play" msgstr "" -#: ../../admin/flag.php:238 -msgid "Songs Updated" +#: ../../templates/show_localplay_control.inc.php:29 +#: ../../templates/list_header.inc.php:101 +msgid "Next" msgstr "" -#: ../../admin/flag.php:246 -msgid "Flag Removed" +#: ../../templates/show_test.inc.php:32 +#: ../../templates/show_test_config.inc.php:40 +#: ../../templates/sidebar_admin.inc.php:45 +msgid "Ampache Debug" msgstr "" -#: ../../admin/flag.php:247 -msgid "Flag Removed from" +#: ../../templates/show_test.inc.php:33 +msgid "" +"You've reached this page because a configuration error has occured. Debug " +"Information below" msgstr "" -#: ../../admin/flag.php:262 -msgid "Flags Updated" +#: ../../templates/show_test.inc.php:37 +msgid "CHECK" msgstr "" -#: ../../admin/flag.php:281 -msgid "Songs Disabled" +#: ../../templates/show_test.inc.php:39 +msgid "STATUS" msgstr "" -#: ../../admin/flag.php:281 -msgid "The requested song(s) have been disabled" +#: ../../templates/show_test.inc.php:41 +msgid "DESCRIPTION" msgstr "" -#: ../../admin/flag.php:292 -msgid "Songs Enabled" +#: ../../templates/show_test.inc.php:44 +msgid "PHP Version" msgstr "" -#: ../../admin/flag.php:292 -msgid "The requested song(s) have been enabled" +#: ../../templates/show_test.inc.php:59 +msgid "" +"This tests to make sure that you are running a version of PHP that is known " +"to work with Ampache." msgstr "" -#: ../../admin/catalog.php:53 ../../admin/catalog.php:73 -#: ../../admin/catalog.php:98 ../../admin/catalog.php:159 -msgid "Catalog Updated" +#: ../../templates/show_test.inc.php:63 +msgid "Mysql for PHP" msgstr "" -#: ../../admin/catalog.php:110 -msgid "Catalog Deleted" +#: ../../templates/show_test.inc.php:78 +msgid "" +"This test checks to see if you have the mysql extensions loaded for PHP. " +"These are required for Ampache to work." msgstr "" -#: ../../admin/catalog.php:110 -msgid "The Catalog and all associated records have been deleted" +#: ../../templates/show_test.inc.php:82 +msgid "PHP Session Support" msgstr "" -#: ../../admin/catalog.php:119 -msgid "Songs Removed" +#: ../../templates/show_test.inc.php:97 +msgid "" +"This test checks to make sure that you have PHP session support enabled. " +"Sessions are required for Ampache to work." msgstr "" -#: ../../admin/catalog.php:122 -msgid "No Songs Removed" +#: ../../templates/show_test.inc.php:101 +msgid "PHP ICONV Support" msgstr "" -#: ../../admin/catalog.php:125 -msgid "Disabled Songs Processed" +#: ../../templates/show_test.inc.php:115 +msgid "" +"This test checks to make sure you have Iconv support installed. Iconv " +"support is required for Ampache" msgstr "" -#: ../../admin/catalog.php:146 -msgid "Catalog Cleaned" +#: ../../templates/show_test.inc.php:119 +msgid "PHP PCRE Support" msgstr "" -#: ../../admin/catalog.php:197 -msgid "Catalog Created" +#: ../../templates/show_test.inc.php:132 +msgid "" +"This test makes sure you have PCRE support compiled into your version of " +"PHP, this is required for Ampache." msgstr "" -#: ../../admin/catalog.php:214 -msgid "Catalog statistics cleared" +#: ../../templates/show_test.inc.php:136 +msgid "PHP PutENV Support" msgstr "" -#: ../../admin/catalog.php:231 -msgid "Now Playing Cleared" +#: ../../templates/show_test.inc.php:149 +msgid "" +"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" msgstr "" -#: ../../admin/catalog.php:231 -msgid "All now playing data has been cleared" +#: ../../templates/show_test.inc.php:153 +#: ../../templates/show_install_config.inc.php:88 +msgid "Ampache.cfg.php Exists" msgstr "" -#: ../../admin/catalog.php:241 -msgid "No Disabled songs found" +#: ../../templates/show_test.inc.php:166 +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 "" -#: ../../admin/catalog.php:250 -msgid "Delete Catalog" +#: ../../templates/show_test.inc.php:172 +#: ../../templates/show_install_config.inc.php:105 +msgid "Ampache.cfg.php Configured?" msgstr "" -#: ../../admin/catalog.php:250 -msgid "Do you really want to delete this catalog?" +#: ../../templates/show_test.inc.php:189 +msgid "" +"This test makes sure that you have set all of the required configuration " +"variables and that we are able to completely parse your config file" msgstr "" -#: ../../admin/catalog.php:270 -msgid "Album Art Search Finished" +#: ../../templates/show_test.inc.php:193 +msgid "DB Connection" msgstr "" -#: ../../admin/users.php:55 ../../admin/users.php:105 -#: ../../lib/class/user.class.php:350 -msgid "Error Username Required" +#: ../../templates/show_test.inc.php:209 +msgid "" +"This attempts to connect to your database using the values from your ampache." +"cfg.php" msgstr "" -#: ../../admin/users.php:58 ../../admin/users.php:101 -#: ../../lib/class/user.class.php:354 -msgid "Error Passwords don't match" +#: ../../templates/show_test.inc.php:213 +msgid "DB Inserted" msgstr "" -#: ../../admin/users.php:83 -msgid "User Updated" +#: ../../templates/show_test.inc.php:235 +#: ../../templates/show_install_config.inc.php:60 +msgid "Web Path" msgstr "" -#: ../../admin/users.php:83 -msgid "updated" +#: ../../templates/show_albums.inc.php:41 +#: ../../templates/show_albums.inc.php:71 +msgid "Cover" msgstr "" -#: ../../admin/users.php:125 ../../templates/show_edit_user.inc.php:76 -#: ../../templates/show_preference_admin.inc.php:41 -#: ../../templates/show_add_user.inc.php:76 -#: ../../templates/show_preference_box.inc.php:58 -#: ../../lib/class/democratic.class.php:102 -msgid "Guest" +#: ../../templates/show_albums.inc.php:43 +#: ../../templates/show_albums.inc.php:73 +#: ../../templates/sidebar_home.inc.php:93 +#: ../../templates/show_edit_song.inc.php:37 +#: ../../templates/show_play_selected.inc.php:59 +#: ../../templates/show_search.inc.php:50 +#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:71 +#: ../../templates/show_get_albumart.inc.php:36 +#: ../../templates/show_recently_played.inc.php:37 +#: ../../templates/show_recently_played.inc.php:100 +#: ../../templates/show_disabled_songs.inc.php:35 +#: ../../templates/show_disabled_songs.inc.php:58 +#: ../../templates/show_duplicates.inc.php:39 +#: ../../templates/show_duplicates.inc.php:77 +#: ../../templates/show_playlist_songs.inc.php:44 +#: ../../templates/show_playlist_songs.inc.php:65 +#: ../../templates/show_now_playing_row.inc.php:52 +msgid "Album" msgstr "" -#: ../../admin/users.php:126 ../../templates/show_flagged.inc.php:35 -#: ../../templates/show_flagged.inc.php:54 -#: ../../templates/show_access_list.inc.php:47 -#: ../../templates/show_edit_user.inc.php:77 -#: ../../templates/show_create_democratic.inc.php:41 -#: ../../templates/show_preference_admin.inc.php:42 -#: ../../templates/show_edit_access.inc.php:57 -#: ../../templates/show_mail_users.inc.php:31 -#: ../../templates/show_add_user.inc.php:77 -#: ../../templates/show_add_access.inc.php:46 -#: ../../templates/show_preference_box.inc.php:59 -#: ../../templates/show_manage_shoutbox.inc.php:35 -#: ../../templates/show_manage_shoutbox.inc.php:59 -#: ../../lib/class/democratic.class.php:105 ../../lib/preferences.php:229 -msgid "User" +#: ../../templates/show_albums.inc.php:44 +#: ../../templates/show_albums.inc.php:74 +#: ../../templates/show_artists.inc.php:36 +#: ../../templates/show_artists.inc.php:63 +#: ../../templates/sidebar_home.inc.php:34 +#: ../../templates/sidebar_home.inc.php:94 +#: ../../templates/show_similar_artists.inc.php:33 +#: ../../templates/show_similar_artists.inc.php:86 +#: ../../templates/show_edit_song.inc.php:45 +#: ../../templates/show_play_selected.inc.php:60 +#: ../../templates/show_search.inc.php:44 +#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:70 +#: ../../templates/show_get_albumart.inc.php:28 +#: ../../templates/show_recently_played.inc.php:38 +#: ../../templates/show_recently_played.inc.php:101 +#: ../../templates/show_disabled_songs.inc.php:36 +#: ../../templates/show_disabled_songs.inc.php:59 +#: ../../templates/show_duplicates.inc.php:38 +#: ../../templates/show_duplicates.inc.php:76 +#: ../../templates/show_playlist_songs.inc.php:43 +#: ../../templates/show_playlist_songs.inc.php:64 +#: ../../templates/show_now_playing_row.inc.php:59 +msgid "Artist" msgstr "" -#: ../../admin/users.php:127 ../../templates/show_edit_user.inc.php:80 -#: ../../templates/show_create_democratic.inc.php:44 -#: ../../templates/sidebar.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:43 -#: ../../templates/show_mail_users.inc.php:32 -#: ../../templates/show_add_user.inc.php:80 -#: ../../templates/show_preference_box.inc.php:62 -#: ../../templates/show_democratic_playlist.inc.php:55 -#: ../../templates/show_democratic_playlist.inc.php:90 -#: ../../lib/class/democratic.class.php:114 ../../lib/preferences.php:231 -msgid "Admin" +#: ../../templates/show_albums.inc.php:45 +#: ../../templates/show_albums.inc.php:75 +#: ../../templates/show_artists.inc.php:37 +#: ../../templates/show_artists.inc.php:64 +#: ../../templates/show_manage_democratic.inc.php:39 +#: ../../templates/show_local_catalog_info.inc.php:31 +#: ../../templates/show_genre.inc.php:38 +#: ../../templates/show_genres.inc.php:38 +#: ../../templates/show_genres.inc.php:74 ../../lib/class/browse.class.php:972 +msgid "Songs" msgstr "" -#: ../../admin/users.php:129 -msgid "New User Added" +#: ../../templates/show_albums.inc.php:46 +#: ../../templates/show_albums.inc.php:76 +#: ../../templates/show_edit_song.inc.php:67 +#: ../../templates/show_play_selected.inc.php:61 +#: ../../templates/show_edit_album.inc.php:33 +#: ../../templates/show_search.inc.php:60 +msgid "Year" msgstr "" -#: ../../admin/users.php:134 -msgid "User Enabled" +#: ../../templates/show_albums.inc.php:47 +#: ../../templates/show_albums.inc.php:77 +#: ../../templates/show_artists.inc.php:40 +#: ../../templates/show_artists.inc.php:67 +#: ../../templates/show_search.inc.php:91 +#: ../../templates/show_songs.inc.php:49 ../../templates/show_songs.inc.php:76 +#: ../../templates/show_now_playing_row.inc.php:36 +msgid "Rating" msgstr "" -#: ../../admin/users.php:139 -msgid "User Disabled" +#: ../../templates/show_albums.inc.php:48 +#: ../../templates/show_albums.inc.php:78 +#: ../../templates/show_catalogs.inc.php:36 +#: ../../templates/show_catalogs.inc.php:52 +#: ../../templates/show_playlists.inc.php:39 +#: ../../templates/show_playlists.inc.php:62 +#: ../../templates/show_album.inc.php:48 +msgid "Actions" msgstr "" -#: ../../admin/users.php:142 ../../lib/class/catalog.class.php:1210 -msgid "Error" +#: ../../templates/show_albums.inc.php:65 +#: ../../templates/show_artists.inc.php:58 +#: ../../templates/show_live_streams.inc.php:53 +#: ../../templates/show_playlists.inc.php:53 +#: ../../templates/show_manage_democratic.inc.php:63 +#: ../../templates/show_objects.inc.php:44 +#: ../../templates/rightbar.inc.php:100 ../../templates/show_genres.inc.php:68 +#: ../../templates/show_user_recommendations.inc.php:32 +#: ../../templates/show_user_recommendations.inc.php:43 +#: ../../templates/show_user_recommendations.inc.php:54 +#: ../../templates/show_user_stats.inc.php:34 +#: ../../templates/show_user_stats.inc.php:47 +#: ../../templates/show_user_stats.inc.php:60 +#: ../../templates/show_songs.inc.php:64 +#: ../../templates/show_recently_played.inc.php:93 +msgid "Not Enough Data" msgstr "" -#: ../../admin/users.php:142 -msgid "Unable to Disabled last Administrator" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +msgid "Fullname" msgstr "" -#: ../../admin/users.php:164 -msgid "User Deleted" +#: ../../templates/show_users.inc.php:39 +#: ../../templates/show_users.inc.php:104 +#: ../../templates/show_edit_user.inc.php:29 +#: ../../templates/show_add_user.inc.php:29 +#: ../../templates/show_install_account.inc.php:60 +#: ../../templates/show_recently_played.inc.php:39 +#: ../../templates/show_recently_played.inc.php:98 +#: ../../templates/show_user_registration.inc.php:75 +#: ../../templates/show_now_playing_row.inc.php:29 +msgid "Username" msgstr "" -#: ../../admin/users.php:167 -msgid "Delete Error" +#: ../../templates/show_users.inc.php:40 +#: ../../templates/show_users.inc.php:105 ../../templates/show_user.inc.php:32 +msgid "Last Seen" msgstr "" -#: ../../admin/users.php:167 -msgid "Unable to delete last Admin User" +#: ../../templates/show_users.inc.php:41 +#: ../../templates/show_users.inc.php:106 +msgid "Registration Date" msgstr "" -#: ../../admin/users.php:173 -msgid "Deletion Request" +#: ../../templates/show_users.inc.php:42 +#: ../../templates/show_users.inc.php:107 ../../templates/show_user.inc.php:33 +msgid "Activity" msgstr "" -#: ../../admin/users.php:174 -msgid "Are you sure you want to permanently delete" +#: ../../templates/show_users.inc.php:44 +#: ../../templates/show_users.inc.php:109 +msgid "Last Ip" msgstr "" -#: ../../admin/modules.php:38 -msgid "Install Failed, Controller Error" +#: ../../templates/show_users.inc.php:46 +#: ../../templates/show_users.inc.php:111 +#: ../../templates/show_localplay_controllers.inc.php:35 +#: ../../templates/show_localplay_controllers.inc.php:66 +#: ../../templates/show_artists.inc.php:41 +#: ../../templates/show_artists.inc.php:68 +#: ../../templates/show_live_streams.inc.php:40 +#: ../../templates/show_live_streams.inc.php:62 +#: ../../templates/show_manage_democratic.inc.php:40 +#: ../../templates/show_plugins.inc.php:35 +#: ../../templates/show_plugins.inc.php:64 +#: ../../templates/show_democratic_playlist.inc.php:50 +#: ../../templates/show_democratic_playlist.inc.php:85 +#: ../../templates/show_flagged.inc.php:39 +#: ../../templates/show_flagged.inc.php:58 +#: ../../templates/show_genres.inc.php:39 +#: ../../templates/show_genres.inc.php:75 +#: ../../templates/show_localplay_instances.inc.php:29 +#: ../../templates/show_localplay_playlist.inc.php:33 +#: ../../templates/show_localplay_playlist.inc.php:59 +#: ../../templates/show_songs.inc.php:51 ../../templates/show_songs.inc.php:78 +#: ../../templates/show_song.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:34 +#: ../../templates/show_admin_tools.inc.php:74 +#: ../../templates/show_playlist_songs.inc.php:48 +#: ../../templates/show_playlist_songs.inc.php:69 +#: ../../templates/show_manage_shoutbox.inc.php:39 +#: ../../templates/show_manage_shoutbox.inc.php:63 +msgid "Action" msgstr "" -#: ../../admin/modules.php:56 ../../admin/modules.php:94 -msgid "Are you sure you want to remove this plugin?" +#: ../../templates/show_users.inc.php:47 +#: ../../templates/show_users.inc.php:112 +msgid "On-line" msgstr "" -#: ../../admin/modules.php:68 ../../admin/modules.php:113 -msgid "Plugin Deactivated" +#: ../../templates/show_users.inc.php:53 ../../templates/show_user.inc.php:22 +#: ../../lib/class/user.class.php:661 ../../lib/class/catalog.class.php:117 +#: ../../lib/class/catalog.class.php:118 ../../lib/preferences.php:261 +msgid "Never" msgstr "" -#: ../../admin/modules.php:87 -msgid "Plugin Activated" +#: ../../templates/show_users.inc.php:54 ../../templates/show_user.inc.php:23 +#: ../../lib/class/flag.class.php:282 ../../lib/class/localplay.class.php:648 +#: ../../lib/class/user.class.php:665 ../../lib/general.lib.php:409 +#: ../../modules/localplay/mpd.controller.php:508 +#: ../../modules/localplay/httpq.controller.php:505 +msgid "Unknown" msgstr "" -#: ../../admin/modules.php:122 -msgid "Plugins" +#: ../../templates/show_edit_user.inc.php:23 +msgid "Editing existing User" msgstr "" -#: ../../admin/modules.php:128 -msgid "Localplay Controllers" +#: ../../templates/show_edit_user.inc.php:37 +#: ../../templates/show_user.inc.php:30 +#: ../../templates/show_add_user.inc.php:37 +#: ../../templates/show_user_registration.inc.php:85 +msgid "Full Name" msgstr "" -#: ../../admin/shout.php:35 -msgid "Shoutbox Post Updated" +#: ../../templates/show_edit_user.inc.php:44 +#: ../../templates/show_add_user.inc.php:44 +#: ../../templates/show_account.inc.php:33 +#: ../../templates/show_user_registration.inc.php:94 +msgid "E-mail" msgstr "" -#: ../../admin/shout.php:47 -msgid "Shoutbox Post Deleted" +#: ../../templates/show_edit_user.inc.php:52 +#: ../../templates/show_add_user.inc.php:52 +#: ../../templates/show_install_account.inc.php:64 +#: ../../templates/show_login_form.inc.php:62 +#: ../../templates/show_user_registration.inc.php:103 +#: ../../modules/localplay/mpd.controller.php:235 +#: ../../modules/localplay/httpq.controller.php:219 +msgid "Password" msgstr "" -#: ../../admin/access.php:35 -msgid "Deleted" +#: ../../templates/show_edit_user.inc.php:61 +#: ../../templates/show_add_user.inc.php:61 +#: ../../templates/show_account.inc.php:46 +#: ../../templates/show_install_account.inc.php:68 +#: ../../templates/show_user_registration.inc.php:112 +msgid "Confirm Password" msgstr "" -#: ../../admin/access.php:35 -msgid "Your Access List Entry has been removed" +#: ../../templates/show_edit_user.inc.php:69 +#: ../../templates/show_add_user.inc.php:69 +msgid "User Access Level" msgstr "" -#: ../../admin/access.php:40 ../../lib/class/catalog.class.php:1304 -msgid "Added" +#: ../../templates/show_edit_user.inc.php:74 +#: ../../templates/show_preference_box.inc.php:58 +#: ../../templates/show_preference_admin.inc.php:41 +#: ../../templates/show_add_user.inc.php:74 +#: ../../lib/class/democratic.class.php:102 ../../admin/users.php:125 +msgid "Guest" msgstr "" -#: ../../admin/access.php:40 -msgid "Your new Access List Entry has been created" +#: ../../templates/show_edit_user.inc.php:75 +#: ../../templates/show_preference_box.inc.php:59 +#: ../../templates/show_edit_access.inc.php:57 +#: ../../templates/show_preference_admin.inc.php:42 +#: ../../templates/show_add_access.inc.php:46 +#: ../../templates/show_add_user.inc.php:75 +#: ../../templates/show_create_democratic.inc.php:41 +#: ../../templates/show_flagged.inc.php:35 +#: ../../templates/show_flagged.inc.php:54 +#: ../../templates/show_mail_users.inc.php:31 +#: ../../templates/show_manage_shoutbox.inc.php:35 +#: ../../templates/show_manage_shoutbox.inc.php:59 +#: ../../lib/class/democratic.class.php:105 ../../lib/preferences.php:231 +#: ../../admin/users.php:126 +msgid "User" msgstr "" -#: ../../admin/access.php:45 ../../preferences.php:95 -#: ../../lib/class/catalog.class.php:1035 -msgid "Updated" +#: ../../templates/show_edit_user.inc.php:76 +#: ../../templates/show_preference_box.inc.php:60 +#: ../../templates/show_add_user.inc.php:76 +#: ../../templates/show_create_democratic.inc.php:42 +#: ../../lib/class/democratic.class.php:108 +msgid "Content Manager" msgstr "" -#: ../../admin/access.php:45 -msgid "Access List Entry updated" +#: ../../templates/show_edit_user.inc.php:77 +#: ../../templates/show_preference_box.inc.php:61 +#: ../../templates/show_add_user.inc.php:77 +#: ../../templates/show_create_democratic.inc.php:43 +#: ../../lib/class/democratic.class.php:111 +msgid "Catalog Manager" msgstr "" -#: ../../admin/system.php:49 -msgid "Database Charset Updated" +#: ../../templates/show_edit_user.inc.php:78 +#: ../../templates/show_preference_box.inc.php:62 +#: ../../templates/show_preference_admin.inc.php:43 +#: ../../templates/sidebar.inc.php:31 ../../templates/show_add_user.inc.php:78 +#: ../../templates/show_create_democratic.inc.php:44 +#: ../../templates/show_democratic_playlist.inc.php:55 +#: ../../templates/show_democratic_playlist.inc.php:90 +#: ../../templates/show_mail_users.inc.php:32 +#: ../../lib/class/democratic.class.php:114 ../../lib/preferences.php:233 +#: ../../admin/users.php:127 +msgid "Admin" msgstr "" -#: ../../admin/system.php:49 -msgid "" -"Your Database and assoicated tables have been updated to match your " -"currently configured charset" +#: ../../templates/show_edit_user.inc.php:85 +msgid "Update User" msgstr "" -#: ../../admin/mail.php:57 -msgid "E-mail Sent" +#: ../../templates/show_catalogs.inc.php:32 +#: ../../templates/show_catalogs.inc.php:48 +#: ../../templates/show_localplay_controllers.inc.php:32 +#: ../../templates/show_localplay_controllers.inc.php:63 +#: ../../templates/show_edit_live_stream_row.inc.php:26 +#: ../../templates/show_live_streams.inc.php:36 +#: ../../templates/show_live_streams.inc.php:58 +#: ../../templates/show_edit_catalog.inc.php:26 +#: ../../templates/show_add_live_stream.inc.php:28 +#: ../../templates/show_edit_artist.inc.php:27 +#: ../../templates/show_edit_access.inc.php:26 +#: ../../templates/show_add_access.inc.php:26 +#: ../../templates/show_plugins.inc.php:32 +#: ../../templates/show_plugins.inc.php:61 +#: ../../templates/show_create_democratic.inc.php:26 +#: ../../templates/show_account.inc.php:27 +#: ../../templates/show_edit_album.inc.php:27 +#: ../../templates/show_localplay_playlist.inc.php:32 +#: ../../templates/show_localplay_playlist.inc.php:58 +#: ../../templates/show_add_playlist.inc.php:28 +#: ../../templates/show_admin_tools.inc.php:33 +#: ../../templates/show_admin_tools.inc.php:73 +#: ../../templates/show_playlist_edit.inc.php:30 +msgid "Name" msgstr "" -#: ../../admin/mail.php:58 -msgid "Your E-mail was successfully sent." +#: ../../templates/show_catalogs.inc.php:33 +#: ../../templates/show_catalogs.inc.php:49 +#: ../../templates/show_add_catalog.inc.php:48 +msgid "Path" msgstr "" -#: ../../preferences.php:35 ../../preferences.php:65 -msgid "Server" +#: ../../templates/show_catalogs.inc.php:34 +#: ../../templates/show_catalogs.inc.php:50 +msgid "Last Verify" msgstr "" -#: ../../preferences.php:91 -msgid "Error Update Failed" +#: ../../templates/show_catalogs.inc.php:35 +#: ../../templates/show_catalogs.inc.php:51 +msgid "Last Add" msgstr "" -#: ../../preferences.php:96 -msgid "Your Account has been updated" +#: ../../templates/show_localplay_controllers.inc.php:33 +#: ../../templates/show_localplay_controllers.inc.php:64 +#: ../../templates/show_plugins.inc.php:33 +#: ../../templates/show_plugins.inc.php:62 +msgid "Description" msgstr "" -#: ../../flag.php:45 -msgid "Item Flagged" +#: ../../templates/show_localplay_controllers.inc.php:34 +#: ../../templates/show_localplay_controllers.inc.php:65 +#: ../../templates/show_plugins.inc.php:34 +#: ../../templates/show_plugins.inc.php:63 +msgid "Version" msgstr "" -#: ../../flag.php:45 -msgid "The specified item has been flagged" +#: ../../templates/show_localplay_controllers.inc.php:44 +#: ../../templates/show_duplicates.inc.php:36 +#: ../../templates/show_duplicates.inc.php:74 ../../lib/preferences.php:165 +msgid "Disable" msgstr "" -#: ../../templates/show_admin_tools.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:24 -#: ../../lib/class/browse.class.php:767 -msgid "Catalogs" +#: ../../templates/show_localplay_controllers.inc.php:48 +#: ../../templates/show_plugins.inc.php:42 +msgid "Activate" msgstr "" -#: ../../templates/show_admin_tools.inc.php:33 -#: ../../templates/show_admin_tools.inc.php:73 -#: ../../templates/show_catalogs.inc.php:32 -#: ../../templates/show_catalogs.inc.php:60 -#: ../../templates/show_access_list.inc.php:43 -#: ../../templates/show_create_democratic.inc.php:26 -#: ../../templates/show_localplay_controllers.inc.php:32 -#: ../../templates/show_localplay_controllers.inc.php:63 -#: ../../templates/show_add_playlist.inc.php:28 -#: ../../templates/show_localplay_playlist.inc.php:32 -#: ../../templates/show_localplay_playlist.inc.php:58 -#: ../../templates/show_add_live_stream.inc.php:28 -#: ../../templates/show_edit_access.inc.php:26 -#: ../../templates/show_add_access.inc.php:26 -#: ../../templates/show_playlist_edit.inc.php:30 -#: ../../templates/show_edit_catalog.inc.php:26 -#: ../../templates/show_edit_artist.inc.php:27 -#: ../../templates/show_edit_album.inc.php:27 -#: ../../templates/show_plugins.inc.php:32 -#: ../../templates/show_plugins.inc.php:61 -#: ../../templates/show_live_streams.inc.php:36 -#: ../../templates/show_live_streams.inc.php:58 -#: ../../templates/show_edit_live_stream_row.inc.php:26 -#: ../../templates/show_account.inc.php:28 ../../server/stats.ajax.php:52 -msgid "Name" +#: ../../templates/show_localplay_controllers.inc.php:59 +#: ../../templates/show_plugins.inc.php:57 +#: ../../templates/show_flagged.inc.php:49 +#: ../../templates/show_localplay_playlist.inc.php:53 +#: ../../templates/show_disabled_songs.inc.php:52 +#: ../../templates/show_manage_shoutbox.inc.php:54 +msgid "No Records Found" msgstr "" -#: ../../templates/show_admin_tools.inc.php:34 -#: ../../templates/show_admin_tools.inc.php:74 -#: ../../templates/show_flagged.inc.php:39 -#: ../../templates/show_flagged.inc.php:58 -#: ../../templates/show_songs.inc.php:50 ../../templates/show_songs.inc.php:77 -#: ../../templates/show_access_list.inc.php:50 -#: ../../templates/show_users.inc.php:46 -#: ../../templates/show_users.inc.php:111 -#: ../../templates/show_manage_democratic.inc.php:40 -#: ../../templates/show_genres.inc.php:39 -#: ../../templates/show_genres.inc.php:75 -#: ../../templates/show_localplay_controllers.inc.php:35 -#: ../../templates/show_localplay_controllers.inc.php:66 -#: ../../templates/show_localplay_playlist.inc.php:33 -#: ../../templates/show_localplay_playlist.inc.php:59 -#: ../../templates/show_localplay_instances.inc.php:29 -#: ../../templates/show_artists.inc.php:40 -#: ../../templates/show_artists.inc.php:63 -#: ../../templates/show_democratic_playlist.inc.php:50 -#: ../../templates/show_democratic_playlist.inc.php:85 -#: ../../templates/show_plugins.inc.php:35 -#: ../../templates/show_plugins.inc.php:64 -#: ../../templates/show_playlist_songs.inc.php:48 -#: ../../templates/show_playlist_songs.inc.php:69 -#: ../../templates/show_manage_shoutbox.inc.php:39 -#: ../../templates/show_manage_shoutbox.inc.php:63 -#: ../../templates/show_live_streams.inc.php:40 -#: ../../templates/show_live_streams.inc.php:62 -msgid "Action" +#: ../../templates/show_big_art.inc.php:29 +#: ../../templates/show_album_art.inc.php:41 +msgid "Album Art" msgstr "" -#: ../../templates/show_admin_tools.inc.php:45 -#: ../../templates/show_song.inc.php:25 ../../templates/show_songs.inc.php:40 -#: ../../templates/show_songs.inc.php:67 -#: ../../templates/show_song_row.inc.php:23 -#: ../../templates/show_shoutbox.inc.php:34 -#: ../../templates/show_genres.inc.php:36 -#: ../../templates/show_genres.inc.php:72 -#: ../../templates/show_albums.inc.php:39 -#: ../../templates/show_albums.inc.php:66 -#: ../../templates/show_playlist_song_row.inc.php:22 -#: ../../templates/show_recently_played.inc.php:36 -#: ../../templates/show_recently_played.inc.php:75 -#: ../../templates/show_recently_played.inc.php:89 -#: ../../templates/show_add_live_stream.inc.php:76 -#: ../../templates/show_artists.inc.php:35 -#: ../../templates/show_artists.inc.php:58 -#: ../../templates/show_live_stream_row.inc.php:23 -#: ../../templates/show_artist_row.inc.php:23 -#: ../../templates/show_live_streams.inc.php:35 -#: ../../templates/show_live_streams.inc.php:57 -#: ../../templates/show_album_row.inc.php:23 -#: ../../templates/show_catalog_row.inc.php:28 -#: ../../templates/show_playlist_row.inc.php:23 -#: ../../templates/show_playlists.inc.php:34 -#: ../../templates/show_playlists.inc.php:57 -msgid "Add" +#: ../../templates/show_big_art.inc.php:33 +msgid "Click to close window" msgstr "" -#: ../../templates/show_admin_tools.inc.php:47 -#: ../../templates/show_catalog_row.inc.php:29 -msgid "Verify" +#: ../../templates/show_preference_box.inc.php:43 +#: ../../templates/show_preference_box.inc.php:73 +msgid "Apply to All" msgstr "" -#: ../../templates/show_admin_tools.inc.php:49 -#: ../../templates/show_catalog_row.inc.php:30 -msgid "Clean" +#: ../../templates/show_preference_box.inc.php:44 +#: ../../templates/show_preference_box.inc.php:74 +msgid "Access Level" msgstr "" -#: ../../templates/show_admin_tools.inc.php:51 -#: ../../templates/show_edit_access.inc.php:77 -#: ../../templates/show_mail_users.inc.php:30 -#: ../../templates/show_add_access.inc.php:58 -#: ../../templates/show_random.inc.php:38 -#: ../../templates/show_export.inc.php:35 ../../lib/class/access.class.php:317 -#: ../../lib/class/access.class.php:342 ../../lib/ui.lib.php:141 -#: ../../lib/ui.lib.php:150 ../../lib/ui.lib.php:629 -msgid "All" +#: ../../templates/show_edit_song_row.inc.php:49 +#: ../../templates/show_edit_live_stream_row.inc.php:52 +#: ../../templates/show_edit_playlist_song_row.inc.php:38 +#: ../../templates/show_edit_playlist_row.inc.php:38 +#: ../../templates/show_edit_artist_row.inc.php:32 +#: ../../templates/show_edit_album_row.inc.php:45 +msgid "Save Changes" msgstr "" -#: ../../templates/show_admin_tools.inc.php:53 -#: ../../templates/show_flag.inc.php:56 -#: ../../templates/show_playlist_song_row.inc.php:38 -#: ../../templates/show_localplay_playlist.inc.php:48 -#: ../../templates/show_localplay_instances.inc.php:40 -#: ../../templates/show_live_stream_row.inc.php:34 -#: ../../templates/show_democratic_playlist.inc.php:77 -#: ../../templates/show_catalog_row.inc.php:32 -#: ../../templates/show_playlist_row.inc.php:38 -#: ../../templates/rightbar.inc.php:97 ../../lib/class/flag.class.php:264 -msgid "Delete" +#: ../../templates/show_artists.inc.php:38 +#: ../../templates/show_artists.inc.php:65 +#: ../../templates/sidebar_home.inc.php:33 +#: ../../templates/show_local_catalog_info.inc.php:29 +#: ../../templates/show_genre.inc.php:32 ../../lib/ui.lib.php:408 +#: ../../lib/class/browse.class.php:978 +msgid "Albums" msgstr "" -#: ../../templates/show_admin_tools.inc.php:59 -msgid "Fast" +#: ../../templates/show_artists.inc.php:39 +#: ../../templates/show_artists.inc.php:66 +#: ../../templates/show_democratic_playlist.inc.php:53 +#: ../../templates/show_democratic_playlist.inc.php:88 +#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:74 +#: ../../templates/show_playlist_songs.inc.php:47 +#: ../../templates/show_playlist_songs.inc.php:68 +msgid "Time" msgstr "" -#: ../../templates/show_admin_tools.inc.php:60 -#: ../../templates/show_catalog_row.inc.php:31 -msgid "Gather Art" +#: ../../templates/show_duplicate.inc.php:23 +#: ../../templates/show_duplicate.inc.php:42 +#: ../../templates/sidebar_modules.inc.php:33 +msgid "Find Duplicates" msgstr "" -#: ../../templates/show_admin_tools.inc.php:68 -msgid "No Catalogs Found" +#: ../../templates/show_duplicate.inc.php:27 +msgid "Search Type" msgstr "" -#: ../../templates/show_admin_tools.inc.php:78 -#: ../../templates/show_catalogs.inc.php:55 -msgid "Clean All" +#: ../../templates/show_duplicate.inc.php:33 +#: ../../templates/show_edit_song.inc.php:31 +#: ../../templates/show_search.inc.php:40 +#: ../../templates/show_disabled_songs.inc.php:34 +#: ../../templates/show_disabled_songs.inc.php:57 +msgid "Title" msgstr "" -#: ../../templates/show_admin_tools.inc.php:79 -#: ../../templates/show_catalogs.inc.php:54 -msgid "Verify All" +#: ../../templates/show_duplicate.inc.php:34 +msgid "Artist and Title" msgstr "" -#: ../../templates/show_admin_tools.inc.php:80 -#: ../../templates/show_catalogs.inc.php:53 -msgid "Add to All" +#: ../../templates/show_duplicate.inc.php:35 +msgid "Artist, Album and Title" msgstr "" -#: ../../templates/show_admin_tools.inc.php:81 -#: ../../templates/show_catalogs.inc.php:56 -msgid "Update All" +#: ../../templates/show_duplicate.inc.php:37 +msgid "Search Disabled Songs" msgstr "" -#: ../../templates/show_admin_tools.inc.php:82 -#: ../../templates/show_add_catalog.inc.php:26 -#: ../../templates/sidebar_admin.inc.php:26 -msgid "Add a Catalog" +#: ../../templates/show_import_playlist.inc.php:23 +msgid "Importing a Playlist from a File" msgstr "" -#: ../../templates/show_admin_tools.inc.php:83 -msgid "Clear Catalog Stats" +#: ../../templates/show_import_playlist.inc.php:28 +#: ../../templates/show_search.inc.php:66 +#: ../../templates/show_disabled_songs.inc.php:37 +#: ../../templates/show_disabled_songs.inc.php:60 +#: ../../templates/show_duplicates.inc.php:43 +#: ../../templates/show_duplicates.inc.php:81 +msgid "Filename" msgstr "" -#: ../../templates/show_admin_tools.inc.php:84 -#: ../../templates/show_add_catalog.inc.php:75 -msgid "Gather Album Art" +#: ../../templates/show_import_playlist.inc.php:35 +msgid "Playlist Type" msgstr "" -#: ../../templates/show_admin_tools.inc.php:88 -#: ../../templates/sidebar_admin.inc.php:43 -msgid "Other Tools" +#: ../../templates/show_import_playlist.inc.php:47 +msgid "Import Playlist" msgstr "" -#: ../../templates/show_admin_tools.inc.php:90 -msgid "Show Duplicate Songs" +#: ../../templates/show_edit_live_stream_row.inc.php:27 +#: ../../templates/show_add_live_stream.inc.php:42 +msgid "Stream URL" msgstr "" -#: ../../templates/show_admin_tools.inc.php:91 -#: ../../templates/sidebar_admin.inc.php:48 -msgid "Clear Now Playing" +#: ../../templates/show_edit_live_stream_row.inc.php:28 +#: ../../templates/show_add_live_stream.inc.php:35 +msgid "Homepage" msgstr "" -#: ../../templates/show_admin_tools.inc.php:92 -#: ../../templates/header.inc.php:90 -msgid "Generate New Config" +#: ../../templates/show_edit_live_stream_row.inc.php:29 +#: ../../templates/show_live_streams.inc.php:37 +#: ../../templates/show_live_streams.inc.php:59 +#: ../../templates/show_add_live_stream.inc.php:55 +msgid "Callsign" msgstr "" -#: ../../templates/show_admin_tools.inc.php:93 -msgid "Preferences Permissions" +#: ../../templates/show_edit_live_stream_row.inc.php:30 +#: ../../templates/show_live_streams.inc.php:38 +#: ../../templates/show_live_streams.inc.php:60 +#: ../../templates/show_add_live_stream.inc.php:49 +msgid "Frequency" msgstr "" -#: ../../templates/show_admin_tools.inc.php:94 -msgid "Export To Itunes DB" +#: ../../templates/show_live_streams.inc.php:39 +#: ../../templates/show_live_streams.inc.php:61 +#: ../../templates/show_search.inc.php:54 +msgid "Tag" msgstr "" -#: ../../templates/show_admin_tools.inc.php:95 -msgid "Show Inactive Users" +#: ../../templates/sidebar_home.inc.php:24 +msgid "Browse" msgstr "" -#: ../../templates/show_admin_tools.inc.php:96 -msgid "Check for New Version" +#: ../../templates/sidebar_home.inc.php:32 +#: ../../templates/show_songs.inc.php:40 ../../templates/show_songs.inc.php:69 +#: ../../templates/show_playlist_songs.inc.php:42 +#: ../../templates/show_playlist_songs.inc.php:63 +msgid "Song Title" msgstr "" -#: ../../templates/show_flagged.inc.php:34 -#: ../../templates/show_flagged.inc.php:53 -#: ../../templates/show_manage_shoutbox.inc.php:34 -#: ../../templates/show_manage_shoutbox.inc.php:58 -msgid "Object" +#: ../../templates/sidebar_home.inc.php:35 +msgid "Tag Cloud" msgstr "" -#: ../../templates/show_flagged.inc.php:36 -#: ../../templates/show_flagged.inc.php:55 -#: ../../templates/show_flag.inc.php:69 -msgid "Flag" +#: ../../templates/sidebar_home.inc.php:36 +#: ../../templates/sidebar_home.inc.php:74 +#: ../../templates/sidebar_home.inc.php:95 +#: ../../templates/show_manage_democratic.inc.php:34 +#: ../../templates/show_play_selected.inc.php:47 ../../lib/ui.lib.php:367 +msgid "Playlist" msgstr "" -#: ../../templates/show_flagged.inc.php:37 -#: ../../templates/show_flagged.inc.php:56 -#: ../../templates/show_flag.inc.php:64 ../../templates/show_search.inc.php:34 -#: ../../templates/show_edit_song.inc.php:73 -#: ../../templates/show_manage_shoutbox.inc.php:37 -#: ../../templates/show_manage_shoutbox.inc.php:61 -msgid "Comment" +#: ../../templates/sidebar_home.inc.php:37 +#: ../../lib/class/browse.class.php:995 +msgid "Radio Stations" msgstr "" -#: ../../templates/show_flagged.inc.php:38 -#: ../../templates/show_flagged.inc.php:57 -msgid "Status" +#: ../../templates/sidebar_home.inc.php:41 +msgid "Filters" msgstr "" -#: ../../templates/show_flagged.inc.php:49 -#: ../../templates/show_disabled_songs.inc.php:52 -#: ../../templates/show_localplay_controllers.inc.php:59 -#: ../../templates/show_localplay_playlist.inc.php:53 -#: ../../templates/show_plugins.inc.php:57 -#: ../../templates/show_manage_shoutbox.inc.php:54 -msgid "No Records Found" +#: ../../templates/sidebar_home.inc.php:45 +msgid "Starts With" msgstr "" -#: ../../templates/show_install_account.inc.php:32 -#: ../../templates/show_install_lang.inc.php:32 -#: ../../templates/show_install_config.inc.php:32 -#: ../../templates/show_install.inc.php:32 -msgid "Ampache Installation" +#: ../../templates/sidebar_home.inc.php:51 +msgid "Minimum Count" msgstr "" -#: ../../templates/show_install_account.inc.php:39 -#: ../../templates/show_install_lang.inc.php:39 -#: ../../templates/show_install_config.inc.php:38 -#: ../../templates/show_install.inc.php:40 -msgid "" -"This Page handles the installation of the Ampache database and the creation " -"of the ampache.cfg.php file. Before you continue please make sure that you " -"have the following pre-requisites" +#: ../../templates/sidebar_home.inc.php:55 +msgid "Rated" msgstr "" -#: ../../templates/show_install_account.inc.php:42 -#: ../../templates/show_install_lang.inc.php:42 -#: ../../templates/show_install_config.inc.php:41 -#: ../../templates/show_install.inc.php:43 -msgid "" -"A MySQL Server with a username and password that can create/modify databases" +#: ../../templates/sidebar_home.inc.php:59 +msgid "Unplayed" msgstr "" -#: ../../templates/show_install_account.inc.php:43 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.dist.php file" +#: ../../templates/sidebar_home.inc.php:63 +#: ../../templates/show_artist.inc.php:55 +msgid "Show Art" msgstr "" -#: ../../templates/show_install_account.inc.php:45 -#: ../../templates/show_install_lang.inc.php:46 -#: ../../templates/show_install_config.inc.php:44 -#: ../../templates/show_install.inc.php:47 -msgid "" -"Once you have ensured that you have the above requirements please fill out " -"the information below. You will only be asked for the required config " -"values. If you would like to make changes to your ampache install at a later " -"date simply edit /config/ampache.cfg.php" +#: ../../templates/sidebar_home.inc.php:68 +msgid "All Playlists" msgstr "" -#: ../../templates/show_install_account.inc.php:48 -#: ../../templates/show_install_config.inc.php:48 -#: ../../templates/show_install.inc.php:52 -msgid "Step 1 - Creating and Inserting the Ampache Database" +#: ../../templates/sidebar_home.inc.php:76 +#: ../../templates/sidebar_modules.inc.php:41 +msgid "Currently Playing" msgstr "" -#: ../../templates/show_install_account.inc.php:49 -msgid "Step 2 - Creating the ampache.cfg.php file" +#: ../../templates/sidebar_home.inc.php:78 +#: ../../templates/show_playtype_switch.inc.php:36 +#: ../../templates/sidebar_modules.inc.php:47 ../../lib/preferences.php:179 +#: ../../modules/localplay/mpd.controller.php:492 +#: ../../modules/localplay/httpq.controller.php:489 +msgid "Democratic" msgstr "" -#: ../../templates/show_install_account.inc.php:50 -#: ../../templates/show_install_config.inc.php:53 -#: ../../templates/show_install.inc.php:57 -msgid "Step 3 - Setup Initial Account" +#: ../../templates/sidebar_home.inc.php:87 +#: ../../templates/sidebar_localplay.inc.php:32 +#: ../../templates/show_playtype_switch.inc.php:34 +#: ../../templates/sidebar.inc.php:28 ../../lib/preferences.php:182 +msgid "Localplay" msgstr "" -#: ../../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" +#: ../../templates/sidebar_home.inc.php:96 +msgid "Advanced" msgstr "" -#: ../../templates/show_install_account.inc.php:56 -msgid "Create Admin Account" +#: ../../templates/show_confirmation.inc.php:27 +#: ../../templates/show_update_items.inc.php:27 +msgid "Continue" msgstr "" -#: ../../templates/show_install_account.inc.php:60 -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:104 -#: ../../templates/show_now_playing_row.inc.php:29 -#: ../../templates/show_edit_user.inc.php:31 -#: ../../templates/show_recently_played.inc.php:40 -#: ../../templates/show_recently_played.inc.php:90 -#: ../../templates/show_user_registration.inc.php:75 -#: ../../templates/show_add_user.inc.php:31 -msgid "Username" +#: ../../templates/show_confirmation.inc.php:32 +#: ../../templates/show_similar_artists.inc.php:78 +msgid "Cancel" msgstr "" -#: ../../templates/show_install_account.inc.php:64 -#: ../../templates/show_edit_user.inc.php:54 -#: ../../templates/show_user_registration.inc.php:103 -#: ../../templates/show_login_form.inc.php:62 -#: ../../templates/show_add_user.inc.php:54 -#: ../../modules/localplay/httpq.controller.php:219 -#: ../../modules/localplay/mpd.controller.php:235 -msgid "Password" +#: ../../templates/show_flag_row.inc.php:31 +msgid "Reject" msgstr "" -#: ../../templates/show_install_account.inc.php:68 -#: ../../templates/show_edit_user.inc.php:63 -#: ../../templates/show_user_registration.inc.php:112 -#: ../../templates/show_add_user.inc.php:63 -#: ../../templates/show_account.inc.php:47 -msgid "Confirm Password" +#: ../../templates/show_flag_row.inc.php:33 ../../lib/preferences.php:164 +msgid "Enable" msgstr "" -#: ../../templates/show_install_account.inc.php:73 -msgid "Create Account" +#: ../../templates/show_playlists.inc.php:35 +#: ../../templates/show_playlists.inc.php:58 +msgid "Playlist Name" msgstr "" -#: ../../templates/show_catalogs.inc.php:33 -#: ../../templates/show_catalogs.inc.php:61 -#: ../../templates/show_add_catalog.inc.php:48 -msgid "Path" +#: ../../templates/show_playlists.inc.php:37 +#: ../../templates/show_playlists.inc.php:60 +msgid "# Songs" msgstr "" -#: ../../templates/show_catalogs.inc.php:34 -#: ../../templates/show_catalogs.inc.php:62 -msgid "Last Verify" +#: ../../templates/show_playlists.inc.php:38 +#: ../../templates/show_playlists.inc.php:61 +msgid "Owner" msgstr "" -#: ../../templates/show_catalogs.inc.php:35 -#: ../../templates/show_catalogs.inc.php:63 -msgid "Last Add" +#: ../../templates/show_edit_catalog.inc.php:22 +#, php-format +msgid "Settings for %s" msgstr "" -#: ../../templates/show_catalogs.inc.php:36 -#: ../../templates/show_catalogs.inc.php:64 -#: ../../templates/show_albums.inc.php:48 -#: ../../templates/show_albums.inc.php:75 -#: ../../templates/show_artist_box.inc.php:32 -#: ../../templates/show_album.inc.php:49 -#: ../../templates/show_playlists.inc.php:39 -#: ../../templates/show_playlists.inc.php:62 -msgid "Actions" +#: ../../templates/show_edit_catalog.inc.php:29 +#: ../../templates/show_add_catalog.inc.php:35 +msgid "Auto-inserted Fields" msgstr "" -#: ../../templates/show_catalogs.inc.php:52 -msgid "Gather All Art" +#: ../../templates/show_edit_catalog.inc.php:30 +#: ../../templates/show_add_catalog.inc.php:36 +msgid "album name" msgstr "" -#: ../../templates/show_embed_xspf.inc.php:54 -msgid "XSPF Player" +#: ../../templates/show_edit_catalog.inc.php:31 +#: ../../templates/show_add_catalog.inc.php:37 +msgid "artist name" msgstr "" -#: ../../templates/show_flag_row.inc.php:31 -msgid "Reject" +#: ../../templates/show_edit_catalog.inc.php:32 +#: ../../templates/show_add_catalog.inc.php:38 +msgid "id3 comment" msgstr "" -#: ../../templates/show_flag_row.inc.php:33 ../../lib/preferences.php:162 -msgid "Enable" +#: ../../templates/show_edit_catalog.inc.php:33 +#: ../../templates/show_add_catalog.inc.php:39 +msgid "genre" msgstr "" -#: ../../templates/show_song.inc.php:23 -msgid "Details" +#: ../../templates/show_edit_catalog.inc.php:34 +#: ../../templates/show_add_catalog.inc.php:40 +msgid "track number (padded with leading 0)" msgstr "" -#: ../../templates/sidebar_browse.inc.php:26 -msgid "Browse By" +#: ../../templates/show_edit_catalog.inc.php:35 +#: ../../templates/show_add_catalog.inc.php:41 +msgid "song title" msgstr "" -#: ../../templates/sidebar_browse.inc.php:33 -#: ../../templates/show_songs.inc.php:41 ../../templates/show_songs.inc.php:68 -#: ../../templates/show_playlist_songs.inc.php:42 -#: ../../templates/show_playlist_songs.inc.php:63 -msgid "Song Title" +#: ../../templates/show_edit_catalog.inc.php:36 +#: ../../templates/show_add_catalog.inc.php:42 +msgid "year" msgstr "" -#: ../../templates/sidebar_browse.inc.php:34 -#: ../../templates/show_local_catalog_info.inc.php:29 -#: ../../templates/show_artists.inc.php:38 -#: ../../templates/show_artists.inc.php:61 -#: ../../templates/show_genre.inc.php:32 ../../lib/class/browse.class.php:732 -#: ../../lib/ui.lib.php:405 -msgid "Albums" +#: ../../templates/show_edit_catalog.inc.php:37 +#: ../../templates/show_add_catalog.inc.php:43 +msgid "other" msgstr "" -#: ../../templates/sidebar_browse.inc.php:35 -#: ../../templates/show_songs.inc.php:42 ../../templates/show_songs.inc.php:69 -#: ../../templates/show_disabled_songs.inc.php:36 -#: ../../templates/show_disabled_songs.inc.php:59 -#: ../../templates/show_now_playing_row.inc.php:59 -#: ../../templates/show_similar_artists.inc.php:33 -#: ../../templates/show_similar_artists.inc.php:86 -#: ../../templates/show_albums.inc.php:44 -#: ../../templates/show_albums.inc.php:71 -#: ../../templates/show_recently_played.inc.php:39 -#: ../../templates/show_recently_played.inc.php:93 -#: ../../templates/show_search.inc.php:44 -#: ../../templates/show_edit_song.inc.php:45 -#: ../../templates/show_duplicates.inc.php:38 -#: ../../templates/show_duplicates.inc.php:76 -#: ../../templates/show_artists.inc.php:36 -#: ../../templates/show_artists.inc.php:59 -#: ../../templates/show_get_albumart.inc.php:28 -#: ../../templates/show_play_selected.inc.php:60 -#: ../../templates/show_playlist_songs.inc.php:43 -#: ../../templates/show_playlist_songs.inc.php:64 -#: ../../templates/sidebar_home.inc.php:43 ../../server/stats.ajax.php:84 -msgid "Artist" +#: ../../templates/show_edit_catalog.inc.php:41 +#: ../../templates/show_add_catalog.inc.php:52 +msgid "Catalog Type" msgstr "" -#: ../../templates/sidebar_browse.inc.php:36 -#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:71 -#: ../../templates/show_genres.inc.php:37 -#: ../../templates/show_genres.inc.php:73 -#: ../../templates/show_search.inc.php:54 -#: ../../templates/show_add_live_stream.inc.php:61 -#: ../../templates/show_edit_song.inc.php:53 -#: ../../templates/show_genre.inc.php:29 -#: ../../templates/show_play_selected.inc.php:58 -#: ../../templates/show_playlist_songs.inc.php:45 -#: ../../templates/show_playlist_songs.inc.php:66 -#: ../../templates/show_live_streams.inc.php:39 -#: ../../templates/show_live_streams.inc.php:61 -#: ../../templates/show_edit_live_stream_row.inc.php:31 -#: ../../lib/ui.lib.php:413 -msgid "Genre" +#: ../../templates/show_edit_catalog.inc.php:45 +#: ../../templates/show_add_catalog.inc.php:61 +msgid "XML-RPC Key" msgstr "" -#: ../../templates/sidebar_browse.inc.php:37 -#: ../../templates/show_manage_democratic.inc.php:34 -#: ../../templates/show_democratic.inc.php:22 -#: ../../templates/show_playlist.inc.php:26 -#: ../../templates/show_play_selected.inc.php:47 -#: ../../templates/sidebar_home.inc.php:44 ../../lib/ui.lib.php:364 -msgid "Playlist" +#: ../../templates/show_edit_catalog.inc.php:47 +#: ../../templates/show_add_catalog.inc.php:62 +msgid "Required for Remote Catalogs" msgstr "" -#: ../../templates/sidebar_browse.inc.php:38 -#: ../../lib/class/browse.class.php:752 -msgid "Radio Stations" +#: ../../templates/show_edit_catalog.inc.php:51 +msgid "Filename pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:42 -msgid "Filters" +#: ../../templates/show_edit_catalog.inc.php:58 +#: ../../templates/show_add_catalog.inc.php:70 +msgid "Folder Pattern" msgstr "" -#: ../../templates/sidebar_browse.inc.php:46 -msgid "Starts With" +#: ../../templates/show_edit_catalog.inc.php:58 +#: ../../templates/show_add_catalog.inc.php:70 +msgid "(no leading or ending '/')" msgstr "" -#: ../../templates/sidebar_browse.inc.php:52 -msgid "Minimum Count" +#: ../../templates/show_edit_catalog.inc.php:68 +msgid "Save Catalog Settings" msgstr "" -#: ../../templates/sidebar_browse.inc.php:56 -msgid "Rated" +#: ../../templates/show_manage_democratic.inc.php:22 +msgid "Manage Democratic Playlists" msgstr "" -#: ../../templates/sidebar_browse.inc.php:60 -msgid "Unplayed" +#: ../../templates/show_manage_democratic.inc.php:35 +#: ../../templates/show_create_democratic.inc.php:30 +msgid "Base Playlist" msgstr "" -#: ../../templates/sidebar_browse.inc.php:64 -msgid "Show Art" +#: ../../templates/show_manage_democratic.inc.php:36 +msgid "Cooldown" msgstr "" -#: ../../templates/sidebar_browse.inc.php:69 -msgid "All Playlists" +#: ../../templates/show_manage_democratic.inc.php:37 +#: ../../templates/show_edit_access.inc.php:70 +#: ../../templates/show_preference_admin.inc.php:31 +#: ../../templates/show_preference_admin.inc.php:50 +#: ../../templates/show_add_access.inc.php:52 +#: ../../templates/show_create_democratic.inc.php:38 +msgid "Level" msgstr "" -#: ../../templates/show_user.inc.php:22 ../../templates/show_users.inc.php:53 -#: ../../lib/class/user.class.php:626 ../../lib/class/catalog.class.php:117 -#: ../../lib/class/catalog.class.php:118 ../../lib/preferences.php:260 -msgid "Never" +#: ../../templates/show_manage_democratic.inc.php:38 +#: ../../lib/preferences.php:255 ../../lib/preferences.php:262 +msgid "Default" msgstr "" -#: ../../templates/show_user.inc.php:23 ../../templates/show_users.inc.php:54 -#: ../../lib/class/flag.class.php:276 ../../lib/class/user.class.php:630 -#: ../../lib/class/localplay.class.php:648 ../../lib/general.lib.php:408 -#: ../../modules/localplay/httpq.controller.php:504 -#: ../../modules/localplay/mpd.controller.php:507 -msgid "Unknown" +#: ../../templates/show_manage_democratic.inc.php:69 +msgid "Create New Playlist" msgstr "" -#: ../../templates/show_user.inc.php:30 -#: ../../templates/show_edit_user.inc.php:39 -#: ../../templates/show_user_registration.inc.php:85 -#: ../../templates/show_add_user.inc.php:39 -msgid "Full Name" +#: ../../templates/show_playlist.inc.php:26 +#, php-format +msgid "%s %s Playlist" msgstr "" -#: ../../templates/show_user.inc.php:31 -msgid "Create Date" +#: ../../templates/show_playlist.inc.php:29 +msgid "Normalize Tracks" msgstr "" -#: ../../templates/show_user.inc.php:32 ../../templates/show_users.inc.php:40 -#: ../../templates/show_users.inc.php:105 -msgid "Last Seen" +#: ../../templates/show_playlist.inc.php:35 +msgid "Add All" msgstr "" -#: ../../templates/show_user.inc.php:33 ../../templates/show_users.inc.php:42 -#: ../../templates/show_users.inc.php:107 -msgid "Activity" +#: ../../templates/show_playlist.inc.php:36 +msgid "Add Random" msgstr "" -#: ../../templates/show_user.inc.php:35 -msgid "User is Online Now" +#: ../../templates/sidebar_localplay.inc.php:35 +#: ../../templates/show_localplay_add_instance.inc.php:35 +msgid "Add Instance" msgstr "" -#: ../../templates/show_user.inc.php:37 -msgid "User is Offline Now" +#: ../../templates/sidebar_localplay.inc.php:36 +msgid "Show instances" msgstr "" -#: ../../templates/show_user.inc.php:42 -msgid "Active Playlist" +#: ../../templates/sidebar_localplay.inc.php:38 +#: ../../templates/sidebar_modules.inc.php:49 +msgid "Show Playlist" msgstr "" -#: ../../templates/show_user.inc.php:68 ../../templates/show_index.inc.php:44 -#: ../../server/ajax.server.php:300 -msgid "Recently Played" +#: ../../templates/sidebar_localplay.inc.php:42 +msgid "Active Instance" msgstr "" -#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:70 -#: ../../templates/show_disabled_songs.inc.php:35 -#: ../../templates/show_disabled_songs.inc.php:58 -#: ../../templates/show_now_playing_row.inc.php:52 -#: ../../templates/show_albums.inc.php:43 -#: ../../templates/show_albums.inc.php:70 -#: ../../templates/show_recently_played.inc.php:38 -#: ../../templates/show_recently_played.inc.php:92 -#: ../../templates/show_search.inc.php:50 -#: ../../templates/show_edit_song.inc.php:37 -#: ../../templates/show_duplicates.inc.php:39 -#: ../../templates/show_duplicates.inc.php:77 -#: ../../templates/show_get_albumart.inc.php:36 -#: ../../templates/show_play_selected.inc.php:59 -#: ../../templates/show_playlist_songs.inc.php:44 -#: ../../templates/show_playlist_songs.inc.php:65 -#: ../../templates/sidebar_home.inc.php:42 -msgid "Album" +#: ../../templates/sidebar_localplay.inc.php:44 +#: ../../templates/show_gather_art.inc.php:24 +#: ../../templates/show_adds_catalog.inc.php:25 ../../lib/ui.lib.php:660 +#: ../../lib/preferences.php:174 ../../lib/preferences.php:216 +msgid "None" msgstr "" -#: ../../templates/show_songs.inc.php:45 ../../templates/show_songs.inc.php:72 -#: ../../templates/show_localplay_playlist.inc.php:31 -#: ../../templates/show_localplay_playlist.inc.php:57 -#: ../../templates/show_edit_song.inc.php:61 -#: ../../templates/show_playlist_songs.inc.php:41 -#: ../../templates/show_playlist_songs.inc.php:46 -#: ../../templates/show_playlist_songs.inc.php:62 -#: ../../templates/show_playlist_songs.inc.php:67 -#: ../../server/stats.ajax.php:84 -msgid "Track" +#: ../../templates/sidebar_localplay.inc.php:60 +msgid "Localplay Disabled" msgstr "" -#: ../../templates/show_songs.inc.php:46 ../../templates/show_songs.inc.php:73 -#: ../../templates/show_democratic_playlist.inc.php:53 -#: ../../templates/show_democratic_playlist.inc.php:88 -#: ../../templates/show_playlist_songs.inc.php:47 -#: ../../templates/show_playlist_songs.inc.php:68 -msgid "Time" +#: ../../templates/sidebar_localplay.inc.php:62 +msgid "Allow Localplay set to False" msgstr "" -#: ../../templates/show_songs.inc.php:48 ../../templates/show_songs.inc.php:75 -#: ../../templates/show_now_playing_row.inc.php:36 -#: ../../templates/show_albums.inc.php:47 -#: ../../templates/show_albums.inc.php:74 -#: ../../templates/show_search.inc.php:91 -#: ../../templates/show_artists.inc.php:39 -#: ../../templates/show_artists.inc.php:62 -msgid "Rating" +#: ../../templates/sidebar_localplay.inc.php:64 +msgid "Localplay Controller Not Defined" msgstr "" -#: ../../templates/show_songs.inc.php:63 -#: ../../templates/show_objects.inc.php:44 -#: ../../templates/show_manage_democratic.inc.php:63 -#: ../../templates/show_genres.inc.php:68 -#: ../../templates/show_albums.inc.php:62 -#: ../../templates/show_artists.inc.php:54 -#: ../../templates/show_user_recommendations.inc.php:32 -#: ../../templates/show_user_recommendations.inc.php:43 -#: ../../templates/show_user_recommendations.inc.php:54 -#: ../../templates/show_user_stats.inc.php:34 -#: ../../templates/show_user_stats.inc.php:47 -#: ../../templates/show_user_stats.inc.php:60 -#: ../../templates/show_live_streams.inc.php:53 -#: ../../templates/rightbar.inc.php:100 -#: ../../templates/show_playlists.inc.php:53 -msgid "Not Enough Data" +#: ../../templates/sidebar_localplay.inc.php:66 +#: ../../templates/show_denied.inc.php:32 +msgid "Access Denied" msgstr "" -#: ../../templates/show_big_art.inc.php:29 -msgid "Album Art" +#: ../../templates/footer.inc.php:25 +msgid "Using Old Password Encryption, Please Reset your Password" msgstr "" -#: ../../templates/show_big_art.inc.php:33 -msgid "Click to close window" +#: ../../templates/footer.inc.php:32 +msgid "Queries:" msgstr "" -#: ../../templates/show_song_row.inc.php:37 -#: ../../templates/show_album_row.inc.php:44 -msgid "Post Shout" +#: ../../templates/footer.inc.php:32 +msgid "Cache Hits:" msgstr "" -#: ../../templates/show_song_row.inc.php:42 -#: ../../templates/show_playlist_song_row.inc.php:33 -#: ../../templates/show_album.inc.php:61 -msgid "Download" +#: ../../templates/show_add_live_stream.inc.php:24 +#: ../../templates/sidebar_modules.inc.php:43 +msgid "Add Radio Station" msgstr "" -#: ../../templates/show_song_row.inc.php:46 -#: ../../templates/show_playlist_song_row.inc.php:37 -#: ../../templates/show_live_stream_row.inc.php:31 -#: ../../templates/show_play_selected.inc.php:50 -#: ../../templates/show_artist_row.inc.php:37 -#: ../../templates/show_album_row.inc.php:53 -#: ../../templates/show_playlist_row.inc.php:37 -msgid "Edit" +#: ../../templates/show_add_live_stream.inc.php:61 +#: ../../templates/show_export.inc.php:32 +msgid "Catalog" msgstr "" -#: ../../templates/show_flag.inc.php:41 -msgid "Flag Song" +#: ../../templates/show_index.inc.php:38 +#: ../../templates/show_random_albums.inc.php:24 +msgid "Albums of the Moment" msgstr "" -#: ../../templates/show_flag.inc.php:45 -#: ../../templates/show_edit_song.inc.php:27 -msgid "File" +#: ../../templates/show_index.inc.php:38 +msgid "Loading..." msgstr "" -#: ../../templates/show_flag.inc.php:49 -msgid "Item" +#: ../../templates/show_index.inc.php:45 ../../templates/show_user.inc.php:68 +#: ../../server/index.ajax.php:44 +msgid "Recently Played" msgstr "" -#: ../../templates/show_flag.inc.php:53 -msgid "Reason to flag" +#: ../../templates/show_edit_artist.inc.php:23 +msgid "Edit Artist" msgstr "" -#: ../../templates/show_flag.inc.php:57 -msgid "Incorrect Tags" +#: ../../templates/show_edit_artist.inc.php:35 +#: ../../templates/show_edit_song.inc.php:81 +#: ../../templates/show_edit_album.inc.php:41 +msgid "Flag for Retagging" msgstr "" -#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:270 -msgid "Re-encode" +#: ../../templates/show_edit_artist.inc.php:41 +msgid "Update Artist" msgstr "" -#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:273 -msgid "Other" +#: ../../templates/show_edit_access.inc.php:22 +msgid "Edit ACL" msgstr "" -#: ../../templates/show_object_rating_static.inc.php:44 -msgid "out of" +#: ../../templates/show_edit_access.inc.php:30 +#: ../../templates/show_add_access.inc.php:63 +msgid "ACL Type" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:24 -#: ../../templates/show_adds_catalog.inc.php:24 -msgid "Found" +#: ../../templates/show_edit_access.inc.php:34 +#: ../../templates/show_add_access.inc.php:66 +msgid "Stream Access" msgstr "" -#: ../../templates/show_run_add_catalog.inc.php:25 -#: ../../templates/show_verify_catalog.inc.php:26 -#: ../../templates/show_gather_art.inc.php:25 -#: ../../templates/show_clean_catalog.inc.php:25 -#: ../../templates/show_adds_catalog.inc.php:25 -msgid "Reading" +#: ../../templates/show_edit_access.inc.php:35 +#: ../../templates/show_add_access.inc.php:67 +msgid "Web Interface" msgstr "" -#: ../../templates/show_edit_artist_row.inc.php:32 -#: ../../templates/show_edit_album_row.inc.php:45 -#: ../../templates/show_edit_playlist_row.inc.php:38 -#: ../../templates/show_edit_playlist_song_row.inc.php:38 -#: ../../templates/show_edit_song_row.inc.php:49 -#: ../../templates/show_edit_live_stream_row.inc.php:56 -msgid "Save Changes" +#: ../../templates/show_edit_access.inc.php:36 +#: ../../templates/show_add_access.inc.php:68 +msgid "Local Network Definition" msgstr "" -#: ../../templates/show_install_lang.inc.php:37 -#: ../../templates/show_install.inc.php:38 -msgid "Requirements" +#: ../../templates/show_edit_access.inc.php:37 +#: ../../templates/show_add_access.inc.php:69 +msgid "RPC" msgstr "" -#: ../../templates/show_install_lang.inc.php:43 -#: ../../templates/show_install_config.inc.php:42 -#: ../../templates/show_install.inc.php:44 -msgid "" -"Your webserver has read access to the /sql/ampache.sql file and the /config/" -"ampache.cfg.php.dist file" +#: ../../templates/show_edit_access.inc.php:43 +#: ../../templates/show_add_access.inc.php:32 +msgid "Start IP Address" msgstr "" -#: ../../templates/show_install_lang.inc.php:72 -msgid "Start configuration" +#: ../../templates/show_edit_access.inc.php:50 +#: ../../templates/show_add_access.inc.php:39 +msgid "End IP Address" msgstr "" -#: ../../templates/show_random_albums.inc.php:22 -msgid "Refresh" +#: ../../templates/show_edit_access.inc.php:63 +#: ../../templates/show_add_access.inc.php:77 +msgid "Remote Key" msgstr "" -#: ../../templates/show_random_albums.inc.php:24 -#: ../../templates/show_index.inc.php:38 -msgid "Albums of the Moment" +#: ../../templates/show_edit_access.inc.php:74 +#: ../../templates/show_add_access.inc.php:55 +#: ../../templates/show_play_selected.inc.php:49 +#: ../../lib/class/access.class.php:323 +msgid "View" msgstr "" -#: ../../templates/show_random_albums.inc.php:47 -msgid "Play Album" +#: ../../templates/show_edit_access.inc.php:75 +#: ../../templates/show_add_access.inc.php:56 +#: ../../lib/class/access.class.php:326 +msgid "Read" msgstr "" -#: ../../templates/show_localplay_status.inc.php:25 -msgid "Localplay Control" +#: ../../templates/show_edit_access.inc.php:76 +#: ../../templates/show_add_access.inc.php:57 +#: ../../lib/class/access.class.php:329 +msgid "Read/Write" msgstr "" -#: ../../templates/show_localplay_status.inc.php:28 -msgid "Mute" +#: ../../templates/show_edit_access.inc.php:77 +#: ../../templates/show_add_access.inc.php:58 +#: ../../templates/show_export.inc.php:35 +#: ../../templates/show_mail_users.inc.php:30 +#: ../../templates/show_random.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:51 ../../lib/ui.lib.php:141 +#: ../../lib/ui.lib.php:150 ../../lib/ui.lib.php:632 +#: ../../lib/class/access.class.php:320 ../../lib/class/access.class.php:345 +msgid "All" msgstr "" -#: ../../templates/show_localplay_status.inc.php:29 -msgid "Decrease Volume" +#: ../../templates/show_edit_access.inc.php:83 +#: ../../templates/show_preference_admin.inc.php:55 +#: ../../templates/show_catalog_row.inc.php:31 +#: ../../templates/show_play_selected.inc.php:64 +#: ../../templates/show_edit_shout.inc.php:41 +#: ../../templates/show_playlist_edit.inc.php:47 +msgid "Update" msgstr "" -#: ../../templates/show_localplay_status.inc.php:30 -msgid "Increase Volume" +#: ../../templates/show_similar_artists.inc.php:23 +msgid "Similar Artists" msgstr "" -#: ../../templates/show_localplay_status.inc.php:31 -msgid "Volume" +#: ../../templates/show_similar_artists.inc.php:25 +msgid "Please check the artists you want to merge with the current one" msgstr "" -#: ../../templates/show_localplay_status.inc.php:33 -msgid "Repeat" +#: ../../templates/show_similar_artists.inc.php:58 +msgid "No Similar Artists found" msgstr "" -#: ../../templates/show_localplay_status.inc.php:36 -#: ../../templates/show_artist_row.inc.php:24 -#: ../../templates/sidebar_home.inc.php:40 -#: ../../templates/show_album_row.inc.php:24 -#: ../../templates/show_playlist_row.inc.php:24 -msgid "Random" +#: ../../templates/show_similar_artists.inc.php:66 +msgid "Back" msgstr "" -#: ../../templates/show_localplay_status.inc.php:39 -#: ../../templates/rightbar.inc.php:53 -msgid "Clear Playlist" +#: ../../templates/show_similar_artists.inc.php:77 +msgid "Rename selected" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:33 -#: ../../templates/show_disabled_songs.inc.php:56 -msgid "Select" +#: ../../templates/show_similar_artists.inc.php:91 +msgid "Advanced Options" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:34 -#: ../../templates/show_disabled_songs.inc.php:57 -#: ../../templates/show_search.inc.php:40 -#: ../../templates/show_edit_song.inc.php:31 -#: ../../templates/show_duplicate.inc.php:33 ../../server/stats.ajax.php:84 -msgid "Title" +#: ../../templates/show_similar_artists.inc.php:152 +msgid "Search Again" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:37 -#: ../../templates/show_disabled_songs.inc.php:60 -#: ../../templates/show_search.inc.php:66 -#: ../../templates/show_duplicates.inc.php:43 -#: ../../templates/show_duplicates.inc.php:81 -#: ../../templates/show_import_playlist.inc.php:28 -msgid "Filename" +#: ../../templates/show_clean_catalog.inc.php:23 +#, php-format +msgid "Cleaning the %s Catalog" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:38 -#: ../../templates/show_disabled_songs.inc.php:61 -msgid "Addition Time" +#: ../../templates/show_clean_catalog.inc.php:25 +msgid "Checking" msgstr "" -#: ../../templates/show_disabled_songs.inc.php:65 -msgid "Remove" +#: ../../templates/show_clean_catalog.inc.php:26 +#: ../../templates/show_run_add_catalog.inc.php:25 +#: ../../templates/show_gather_art.inc.php:25 +#: ../../templates/show_adds_catalog.inc.php:26 +#: ../../templates/show_verify_catalog.inc.php:26 +msgid "Reading" msgstr "" -#: ../../templates/show_access_list.inc.php:29 -msgid "Ampache Access Control" +#: ../../templates/sidebar_preferences.inc.php:9 +#: ../../templates/sidebar.inc.php:29 ../../lib/ui.lib.php:373 +msgid "Preferences" msgstr "" -#: ../../templates/show_access_list.inc.php:38 -msgid "Add Entry" +#: ../../templates/sidebar_preferences.inc.php:18 +msgid "Account" msgstr "" -#: ../../templates/show_access_list.inc.php:44 -msgid "Start Address" +#: ../../templates/sidebar_preferences.inc.php:22 +msgid "Server Config" msgstr "" -#: ../../templates/show_access_list.inc.php:45 -msgid "End Address" +#: ../../templates/show_flag.inc.php:41 +msgid "Flag Song" msgstr "" -#: ../../templates/show_access_list.inc.php:46 -#: ../../templates/show_manage_democratic.inc.php:37 -#: ../../templates/show_create_democratic.inc.php:38 -#: ../../templates/show_preference_admin.inc.php:31 -#: ../../templates/show_preference_admin.inc.php:50 -#: ../../templates/show_edit_access.inc.php:70 -#: ../../templates/show_add_access.inc.php:52 -msgid "Level" +#: ../../templates/show_flag.inc.php:45 +#: ../../templates/show_edit_song.inc.php:27 +msgid "File" msgstr "" -#: ../../templates/show_access_list.inc.php:48 -msgid "Key" +#: ../../templates/show_flag.inc.php:49 +msgid "Item" msgstr "" -#: ../../templates/show_access_list.inc.php:49 -#: ../../templates/show_add_playlist.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:36 -#: ../../templates/show_random.inc.php:62 -msgid "Type" +#: ../../templates/show_flag.inc.php:53 +msgid "Reason to flag" msgstr "" -#: ../../templates/show_users.inc.php:39 -#: ../../templates/show_users.inc.php:104 -msgid "Fullname" +#: ../../templates/show_flag.inc.php:56 ../../templates/rightbar.inc.php:97 +#: ../../templates/show_catalog_row.inc.php:33 +#: ../../templates/show_democratic_playlist.inc.php:77 +#: ../../templates/show_live_stream_row.inc.php:34 +#: ../../templates/show_localplay_instances.inc.php:40 +#: ../../templates/show_localplay_playlist.inc.php:48 +#: ../../templates/show_playlist_song_row.inc.php:38 +#: ../../templates/show_playlist_row.inc.php:38 +#: ../../templates/show_admin_tools.inc.php:53 +#: ../../lib/class/flag.class.php:270 +msgid "Delete" msgstr "" -#: ../../templates/show_users.inc.php:41 -#: ../../templates/show_users.inc.php:106 -msgid "Registration Date" +#: ../../templates/show_flag.inc.php:57 +msgid "Incorrect Tags" msgstr "" -#: ../../templates/show_users.inc.php:44 -#: ../../templates/show_users.inc.php:109 -msgid "Last Ip" +#: ../../templates/show_flag.inc.php:58 ../../lib/class/flag.class.php:276 +msgid "Re-encode" msgstr "" -#: ../../templates/show_users.inc.php:47 -#: ../../templates/show_users.inc.php:112 -msgid "On-line" +#: ../../templates/show_flag.inc.php:59 ../../lib/class/flag.class.php:279 +msgid "Other" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:22 -msgid "Manage Democratic Playlists" +#: ../../templates/show_flag.inc.php:64 +#: ../../templates/show_edit_song.inc.php:73 +#: ../../templates/show_flagged.inc.php:37 +#: ../../templates/show_flagged.inc.php:56 +#: ../../templates/show_search.inc.php:34 +#: ../../templates/show_manage_shoutbox.inc.php:37 +#: ../../templates/show_manage_shoutbox.inc.php:61 +msgid "Comment" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:35 -#: ../../templates/show_create_democratic.inc.php:30 -msgid "Base Playlist" +#: ../../templates/show_flag.inc.php:69 +#: ../../templates/show_flagged.inc.php:36 +#: ../../templates/show_flagged.inc.php:55 +msgid "Flag" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:36 -msgid "Cooldown" +#: ../../templates/show_playtype_switch.inc.php:32 +#: ../../lib/preferences.php:176 +msgid "Stream" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:38 -#: ../../lib/preferences.php:254 ../../lib/preferences.php:261 -msgid "Default" +#: ../../templates/show_playtype_switch.inc.php:38 +#: ../../lib/preferences.php:184 +msgid "Flash Player" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:39 -#: ../../templates/show_genres.inc.php:38 -#: ../../templates/show_genres.inc.php:74 -#: ../../templates/show_albums.inc.php:45 -#: ../../templates/show_albums.inc.php:72 -#: ../../templates/show_local_catalog_info.inc.php:31 -#: ../../templates/show_artists.inc.php:37 -#: ../../templates/show_artists.inc.php:60 -#: ../../templates/show_genre.inc.php:38 ../../lib/class/browse.class.php:727 -msgid "Songs" +#: ../../templates/show_preference_admin.inc.php:22 +msgid "Preference Administration" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:57 -#: ../../templates/show_localplay_control.inc.php:28 -#: ../../templates/rightbar.inc.php:25 -msgid "Play" +#: ../../templates/show_install_config.inc.php:32 +#: ../../templates/show_install_lang.inc.php:32 +#: ../../templates/show_install.inc.php:32 +#: ../../templates/show_install_account.inc.php:32 +msgid "Ampache Installation" msgstr "" -#: ../../templates/show_manage_democratic.inc.php:69 -msgid "Create New Playlist" +#: ../../templates/show_install_config.inc.php:38 +#: ../../templates/show_install_lang.inc.php:39 +#: ../../templates/show_install.inc.php:40 +#: ../../templates/show_install_account.inc.php:39 +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-requisites" msgstr "" -#: ../../templates/show_now_playing_row.inc.php:45 -#: ../../templates/show_recently_played.inc.php:37 -#: ../../templates/show_recently_played.inc.php:91 -#: ../../templates/show_duplicates.inc.php:37 -#: ../../templates/show_duplicates.inc.php:75 -#: ../../templates/show_democratic_playlist.inc.php:52 -#: ../../templates/show_democratic_playlist.inc.php:87 -msgid "Song" +#: ../../templates/show_install_config.inc.php:41 +#: ../../templates/show_install_lang.inc.php:42 +#: ../../templates/show_install.inc.php:43 +#: ../../templates/show_install_account.inc.php:42 +msgid "" +"A MySQL Server with a username and password that can create/modify databases" +msgstr "" + +#: ../../templates/show_install_config.inc.php:42 +#: ../../templates/show_install_lang.inc.php:43 +#: ../../templates/show_install.inc.php:44 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.php.dist file" +msgstr "" + +#: ../../templates/show_install_config.inc.php:44 +#: ../../templates/show_install_lang.inc.php:46 +#: ../../templates/show_install.inc.php:47 +#: ../../templates/show_install_account.inc.php:45 +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 "" + +#: ../../templates/show_install_config.inc.php:48 +#: ../../templates/show_install.inc.php:52 +#: ../../templates/show_install_account.inc.php:48 +msgid "Step 1 - Creating and Inserting the Ampache Database" msgstr "" #: ../../templates/show_install_config.inc.php:49 @@ -1285,13 +1383,14 @@ msgid "" "config file in /config" msgstr "" -#: ../../templates/show_install_config.inc.php:56 -msgid "Generate Config File" +#: ../../templates/show_install_config.inc.php:53 +#: ../../templates/show_install.inc.php:57 +#: ../../templates/show_install_account.inc.php:50 +msgid "Step 3 - Setup Initial Account" msgstr "" -#: ../../templates/show_install_config.inc.php:60 -#: ../../templates/show_test.inc.php:235 -msgid "Web Path" +#: ../../templates/show_install_config.inc.php:56 +msgid "Generate Config File" msgstr "" #: ../../templates/show_install_config.inc.php:64 @@ -1316,16 +1415,6 @@ msgstr "" msgid "Write Config" msgstr "" -#: ../../templates/show_install_config.inc.php:88 -#: ../../templates/show_test.inc.php:153 -msgid "Ampache.cfg.php Exists" -msgstr "" - -#: ../../templates/show_install_config.inc.php:105 -#: ../../templates/show_test.inc.php:172 -msgid "Ampache.cfg.php Configured?" -msgstr "" - #: ../../templates/show_install_config.inc.php:126 msgid "Check for Config" msgstr "" @@ -1334,916 +1423,857 @@ msgstr "" msgid "Continue to Step 3" msgstr "" -#: ../../templates/show_edit_user.inc.php:25 -msgid "Editing existing User" -msgstr "" - -#: ../../templates/show_edit_user.inc.php:46 -#: ../../templates/show_user_registration.inc.php:94 -#: ../../templates/show_add_user.inc.php:46 -#: ../../templates/show_account.inc.php:34 -msgid "E-mail" -msgstr "" - -#: ../../templates/show_edit_user.inc.php:71 -#: ../../templates/show_add_user.inc.php:71 -msgid "User Access Level" -msgstr "" - -#: ../../templates/show_edit_user.inc.php:78 -#: ../../templates/show_create_democratic.inc.php:42 -#: ../../templates/show_add_user.inc.php:78 -#: ../../templates/show_preference_box.inc.php:60 -#: ../../lib/class/democratic.class.php:108 -msgid "Content Manager" -msgstr "" - -#: ../../templates/show_edit_user.inc.php:79 -#: ../../templates/show_create_democratic.inc.php:43 -#: ../../templates/show_add_user.inc.php:79 -#: ../../templates/show_preference_box.inc.php:61 -#: ../../lib/class/democratic.class.php:111 -msgid "Catalog Manager" -msgstr "" - -#: ../../templates/show_edit_user.inc.php:87 -msgid "Update User" +#: ../../templates/show_user.inc.php:31 +msgid "Create Date" msgstr "" -#: ../../templates/show_edit_album_row.inc.php:35 -#: ../../lib/class/album.class.php:229 ../../lib/class/album.class.php:230 -msgid "Various" +#: ../../templates/show_user.inc.php:35 +msgid "User is Online Now" msgstr "" -#: ../../templates/show_debug.inc.php:23 -msgid "Debug Tools" +#: ../../templates/show_user.inc.php:37 +msgid "User is Offline Now" msgstr "" -#: ../../templates/show_debug.inc.php:25 -msgid "Generate Configuration" +#: ../../templates/show_user.inc.php:42 +msgid "Active Playlist" msgstr "" -#: ../../templates/show_debug.inc.php:26 -msgid "Set Database Charset" +#: ../../templates/show_add_access.inc.php:22 +msgid "Add Access for a Host" msgstr "" -#: ../../templates/show_debug.inc.php:29 -msgid "PHP Settings" +#: ../../templates/show_add_access.inc.php:74 +msgid "RPC Options" msgstr "" -#: ../../templates/show_debug.inc.php:36 -msgid "Setting" +#: ../../templates/show_add_access.inc.php:84 +msgid "Create ACL" msgstr "" -#: ../../templates/show_debug.inc.php:37 ../../templates/show_debug.inc.php:82 -#: ../../templates/show_preference_box.inc.php:41 -#: ../../templates/show_preference_box.inc.php:71 -#: ../../templates/show_user_preferences.inc.php:37 -msgid "Value" +#: ../../templates/sidebar_admin.inc.php:24 +#: ../../templates/show_admin_tools.inc.php:26 +#: ../../lib/class/browse.class.php:1015 +msgid "Catalogs" msgstr "" -#: ../../templates/show_debug.inc.php:40 -msgid "Memory Limit" +#: ../../templates/sidebar_admin.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:82 +#: ../../templates/show_add_catalog.inc.php:26 +msgid "Add a Catalog" msgstr "" -#: ../../templates/show_debug.inc.php:44 -msgid "Maximum Execution Time" +#: ../../templates/sidebar_admin.inc.php:27 +#: ../../templates/show_manage_catalogs.inc.php:22 +msgid "Show Catalogs" msgstr "" -#: ../../templates/show_debug.inc.php:48 -msgid "Safe Mode" +#: ../../templates/sidebar_admin.inc.php:31 +msgid "User Tools" msgstr "" -#: ../../templates/show_debug.inc.php:56 -msgid "Zlib Support" +#: ../../templates/sidebar_admin.inc.php:33 +#: ../../templates/show_add_user.inc.php:85 +msgid "Add User" msgstr "" -#: ../../templates/show_debug.inc.php:60 -msgid "GD Support" +#: ../../templates/sidebar_admin.inc.php:34 +msgid "Browse Users" msgstr "" -#: ../../templates/show_debug.inc.php:64 -msgid "Iconv Support" +#: ../../templates/sidebar_admin.inc.php:37 +msgid "Access Control" msgstr "" -#: ../../templates/show_debug.inc.php:68 -msgid "Gettext Support" +#: ../../templates/sidebar_admin.inc.php:39 +msgid "Add ACL" msgstr "" -#: ../../templates/show_debug.inc.php:74 -msgid "Current Configuration" +#: ../../templates/sidebar_admin.inc.php:40 +msgid "Show ACL(s)" msgstr "" -#: ../../templates/show_debug.inc.php:81 -#: ../../templates/show_preference_admin.inc.php:30 -#: ../../templates/show_preference_admin.inc.php:49 -#: ../../templates/show_preference_box.inc.php:40 -#: ../../templates/show_preference_box.inc.php:70 -#: ../../templates/show_user_preferences.inc.php:36 -msgid "Preference" +#: ../../templates/sidebar_admin.inc.php:43 +#: ../../templates/show_admin_tools.inc.php:88 +#: ../../templates/sidebar_modules.inc.php:31 +msgid "Other Tools" msgstr "" -#: ../../templates/show_search_bar.inc.php:29 -#: ../../templates/show_search.inc.php:131 ../../lib/ui.lib.php:367 -msgid "Search" +#: ../../templates/sidebar_admin.inc.php:46 +#: ../../templates/show_admin_tools.inc.php:91 +msgid "Clear Now Playing" msgstr "" -#: ../../templates/show_search_bar.inc.php:30 -msgid "Advanced Search" +#: ../../templates/sidebar_admin.inc.php:47 +#: ../../templates/show_export.inc.php:28 +msgid "Export Catalog" msgstr "" -#: ../../templates/show_add_shout.inc.php:23 -msgid "Post to Shoutbox" +#: ../../templates/sidebar_admin.inc.php:49 +msgid "Manage Shoutbox" msgstr "" -#: ../../templates/show_add_shout.inc.php:34 -#: ../../templates/show_edit_shout.inc.php:37 -msgid "Make Sticky" +#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:355 +msgid "Home" msgstr "" -#: ../../templates/show_add_shout.inc.php:41 -#: ../../templates/show_create_democratic.inc.php:53 -#: ../../templates/show_add_playlist.inc.php:42 -msgid "Create" +#: ../../templates/sidebar.inc.php:30 +#: ../../templates/sidebar_modules.inc.php:25 +msgid "Modules" msgstr "" -#: ../../templates/show_create_democratic.inc.php:22 -msgid "Create Democratic Playlist" +#: ../../templates/sidebar.inc.php:61 +msgid "Logout" msgstr "" -#: ../../templates/show_create_democratic.inc.php:34 -msgid "Cooldown Time" +#: ../../templates/show_local_catalog_info.inc.php:24 +#: ../../templates/show_mail_users.inc.php:42 +msgid "Catalog Statistics" msgstr "" -#: ../../templates/show_create_democratic.inc.php:35 -#: ../../lib/class/democratic.class.php:97 -msgid "minutes" +#: ../../templates/show_local_catalog_info.inc.php:27 +msgid "Connected Users" msgstr "" -#: ../../templates/show_create_democratic.inc.php:48 -msgid "Make Default" +#: ../../templates/show_local_catalog_info.inc.php:28 +msgid "Total Users" msgstr "" -#: ../../templates/show_edit_playlist_row.inc.php:32 -#: ../../templates/show_playlist_edit.inc.php:39 -msgid "Public" +#: ../../templates/show_local_catalog_info.inc.php:30 +#: ../../templates/show_genre.inc.php:35 ../../lib/ui.lib.php:412 +#: ../../lib/class/browse.class.php:989 ../../lib/class/album.class.php:250 +msgid "Artists" msgstr "" -#: ../../templates/show_edit_playlist_row.inc.php:33 -#: ../../templates/show_playlist_edit.inc.php:40 -#: ../../lib/class/playlist.class.php:81 -msgid "Private" +#: ../../templates/show_local_catalog_info.inc.php:32 +msgid "Genres" msgstr "" -#: ../../templates/show_confirmation.inc.php:25 -msgid "Continue" +#: ../../templates/show_local_catalog_info.inc.php:33 +msgid "Catalog Size" msgstr "" -#: ../../templates/show_confirmation.inc.php:27 -#: ../../templates/show_similar_artists.inc.php:78 -msgid "Cancel" +#: ../../templates/show_local_catalog_info.inc.php:34 +msgid "Catalog Time" msgstr "" -#: ../../templates/sidebar.inc.php:27 ../../lib/ui.lib.php:352 -msgid "Home" +#: ../../templates/show_install_lang.inc.php:37 +#: ../../templates/show_install.inc.php:38 +msgid "Requirements" msgstr "" -#: ../../templates/sidebar.inc.php:28 -msgid "Browse" +#: ../../templates/show_install_lang.inc.php:72 +msgid "Start configuration" msgstr "" -#: ../../templates/sidebar.inc.php:29 -#: ../../templates/sidebar_localplay.inc.php:32 -#: ../../templates/show_playtype_switch.inc.php:34 -#: ../../lib/preferences.php:180 -msgid "Localplay" +#: ../../templates/rightbar.inc.php:28 +msgid "Add to Playlist" msgstr "" -#: ../../templates/sidebar.inc.php:30 ../../lib/ui.lib.php:370 -msgid "Preferences" +#: ../../templates/rightbar.inc.php:31 +msgid "Add to New Playlist" msgstr "" -#: ../../templates/sidebar.inc.php:66 -msgid "Logout" +#: ../../templates/rightbar.inc.php:53 +#: ../../templates/show_localplay_status.inc.php:39 +msgid "Clear Playlist" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -msgid "Updating the" +#: ../../templates/rightbar.inc.php:56 +msgid "Add Dynamic Items" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:23 -#: ../../templates/show_add_live_stream.inc.php:69 -#: ../../templates/show_export.inc.php:32 -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Catalog" +#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:432 +msgid "Pure Random" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:24 -msgid "songs found checking tag information." +#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:429 +msgid "Related Artist" msgstr "" -#: ../../templates/show_verify_catalog.inc.php:25 -msgid "Verifed" +#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:423 +msgid "Related Album" msgstr "" -#: ../../templates/show_shoutbox.inc.php:22 -msgid "Shoutbox" +#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:426 +msgid "Related Genre" msgstr "" -#: ../../templates/show_localplay_control.inc.php:25 -msgid "Previous" +#: ../../templates/rightbar.inc.php:104 +msgid "More" msgstr "" -#: ../../templates/show_localplay_control.inc.php:26 -msgid "Stop" +#: ../../templates/header.inc.php:36 +msgid "Ampache Latest Artists Additions" msgstr "" -#: ../../templates/show_localplay_control.inc.php:27 -msgid "Pause" +#: ../../templates/header.inc.php:37 +msgid "Ampache Latest Albums Additions" msgstr "" -#: ../../templates/show_localplay_control.inc.php:29 -#: ../../templates/list_header.inc.php:100 -msgid "Next" +#: ../../templates/header.inc.php:38 +msgid "Ampache Most Popular Albums" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:33 -#: ../../templates/show_localplay_controllers.inc.php:64 -#: ../../templates/show_plugins.inc.php:33 -#: ../../templates/show_plugins.inc.php:62 -msgid "Description" +#: ../../templates/header.inc.php:39 +msgid "Ampache Most Popular Artists" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:34 -#: ../../templates/show_localplay_controllers.inc.php:65 -#: ../../templates/show_plugins.inc.php:34 -#: ../../templates/show_plugins.inc.php:63 -msgid "Version" +#: ../../templates/header.inc.php:40 +msgid "Ampache Most Popular Songs" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:44 -#: ../../templates/show_duplicates.inc.php:36 -#: ../../templates/show_duplicates.inc.php:74 ../../lib/preferences.php:163 -msgid "Disable" +#: ../../templates/header.inc.php:41 +msgid "Ampache Recently Played" msgstr "" -#: ../../templates/show_localplay_controllers.inc.php:48 -#: ../../templates/show_plugins.inc.php:42 -msgid "Activate" +#: ../../templates/header.inc.php:71 +msgid "Log out" msgstr "" -#: ../../templates/show_install.inc.php:54 -msgid "" -"This step creates and inserts the Ampache database, as such please provide a " -"mysql account with database creation rights. This step may take a while " -"depending upon the speed of your computer" +#: ../../templates/header.inc.php:89 +msgid "Error Config File Out of Date" msgstr "" -#: ../../templates/show_install.inc.php:61 -msgid "Insert Ampache Database" +#: ../../templates/header.inc.php:90 +#: ../../templates/show_admin_tools.inc.php:92 +msgid "Generate New Config" msgstr "" -#: ../../templates/show_install.inc.php:73 -msgid "MySQL Administrative Username" +#: ../../templates/show_edit_playlist_row.inc.php:32 +#: ../../templates/show_playlist_edit.inc.php:39 +msgid "Public" msgstr "" -#: ../../templates/show_install.inc.php:77 -msgid "MySQL Administrative Password" +#: ../../templates/show_edit_playlist_row.inc.php:33 +#: ../../templates/show_playlist_edit.inc.php:40 +#: ../../lib/class/playlist.class.php:81 +msgid "Private" msgstr "" -#: ../../templates/show_install.inc.php:81 -msgid "Create Database User for New Database" +#: ../../templates/show_add_user.inc.php:23 +msgid "Adding a New User" msgstr "" -#: ../../templates/show_install.inc.php:85 -msgid "Ampache Database Username" +#: ../../templates/show_genre.inc.php:29 +#, php-format +msgid "Viewing %s Genre" msgstr "" -#: ../../templates/show_install.inc.php:89 -msgid "Ampache Database User Password" +#: ../../templates/show_user_activate.inc.php:29 +#: ../../templates/show_user_activate.inc.php:36 +#: ../../templates/show_user_registration.inc.php:29 +#: ../../templates/show_user_registration.inc.php:36 +#: ../../templates/show_registration_confirmation.inc.php:29 +msgid "Registration" msgstr "" -#: ../../templates/show_install.inc.php:93 -msgid "Overwrite Existing" +#: ../../templates/show_user_activate.inc.php:49 +msgid "User Activated" msgstr "" -#: ../../templates/show_install.inc.php:98 -msgid "Insert Database" +#: ../../templates/show_user_activate.inc.php:51 +#, php-format +msgid "This User ID is activated and can be used %sLogin%s" msgstr "" -#: ../../templates/show_localplay_edit_instance.inc.php:23 -msgid "Edit Localplay Instance" +#: ../../templates/show_user_activate.inc.php:54 +msgid "Validation Failed" msgstr "" -#: ../../templates/show_localplay_edit_instance.inc.php:34 -msgid "Update Instance" +#: ../../templates/show_user_activate.inc.php:55 +msgid "The validation key used isn't correct" msgstr "" -#: ../../templates/show_similar_artists.inc.php:23 -msgid "Similar Artists" +#: ../../templates/show_plugins.inc.php:46 +msgid "Deactivate" msgstr "" -#: ../../templates/show_similar_artists.inc.php:25 -msgid "Please check the artists you want to merge with the current one" +#: ../../templates/show_random_albums.inc.php:22 +msgid "Refresh" msgstr "" -#: ../../templates/show_similar_artists.inc.php:66 -msgid "Back" +#: ../../templates/show_random_albums.inc.php:47 +msgid "Play Album" msgstr "" -#: ../../templates/show_similar_artists.inc.php:77 -msgid "Rename selected" +#: ../../templates/show_catalog_row.inc.php:29 +#: ../../templates/show_admin_tools.inc.php:47 +msgid "Verify" msgstr "" -#: ../../templates/show_similar_artists.inc.php:91 -msgid "Advanced Options" +#: ../../templates/show_catalog_row.inc.php:30 +#: ../../templates/show_admin_tools.inc.php:49 +msgid "Clean" msgstr "" -#: ../../templates/show_similar_artists.inc.php:152 -msgid "Search Again" +#: ../../templates/show_catalog_row.inc.php:32 +#: ../../templates/show_admin_tools.inc.php:60 +msgid "Gather Art" msgstr "" -#: ../../templates/show_add_playlist.inc.php:24 -msgid "Create a new playlist" +#: ../../templates/show_create_democratic.inc.php:22 +msgid "Create Democratic Playlist" msgstr "" -#: ../../templates/show_rename_artist.inc.php:29 -#: ../../templates/show_rename_artist.inc.php:38 -msgid "Rename" +#: ../../templates/show_create_democratic.inc.php:34 +msgid "Cooldown Time" msgstr "" -#: ../../templates/show_rename_artist.inc.php:33 -#: ../../templates/show_search.inc.php:106 -#: ../../templates/show_add_live_stream.inc.php:64 -#: ../../templates/show_edit_song.inc.php:40 -#: ../../templates/show_edit_song.inc.php:48 -#: ../../templates/show_edit_song.inc.php:56 -msgid "OR" +#: ../../templates/show_create_democratic.inc.php:35 +#: ../../lib/class/democratic.class.php:97 +msgid "minutes" msgstr "" -#: ../../templates/show_rename_artist.inc.php:35 -msgid "Insert current" +#: ../../templates/show_create_democratic.inc.php:48 +msgid "Make Default" msgstr "" -#: ../../templates/show_rename_artist.inc.php:37 -msgid "Update id3 tags" +#: ../../templates/show_create_democratic.inc.php:53 +#: ../../templates/show_add_playlist.inc.php:42 +#: ../../templates/show_add_shout.inc.php:41 +msgid "Create" msgstr "" -#: ../../templates/show_edit_shout.inc.php:23 -msgid "Edit existing Shoutbox Post" +#: ../../templates/show_account.inc.php:39 +msgid "New Password" msgstr "" -#: ../../templates/show_edit_shout.inc.php:41 -#: ../../templates/show_preference_admin.inc.php:55 -#: ../../templates/show_edit_access.inc.php:83 -#: ../../templates/show_playlist_edit.inc.php:47 -#: ../../templates/show_play_selected.inc.php:64 -msgid "Update" +#: ../../templates/show_account.inc.php:52 +#: ../../templates/show_manage_catalogs.inc.php:30 +msgid "Clear Stats" msgstr "" -#: ../../templates/show_playlist.inc.php:29 -msgid "Normalize Tracks" +#: ../../templates/show_account.inc.php:62 +msgid "Update Account" msgstr "" -#: ../../templates/show_playlist.inc.php:32 -#: ../../templates/show_search_options.inc.php:28 -#: ../../templates/show_artist_row.inc.php:33 -#: ../../templates/show_album_row.inc.php:49 -#: ../../templates/show_playlist_row.inc.php:33 -#: ../../templates/rightbar.inc.php:48 -msgid "Batch Download" +#: ../../templates/show_edit_song.inc.php:23 +msgid "Edit Song" msgstr "" -#: ../../templates/show_playlist.inc.php:35 -msgid "Add All" +#: ../../templates/show_edit_song.inc.php:40 +#: ../../templates/show_edit_song.inc.php:48 +#: ../../templates/show_edit_song.inc.php:56 +#: ../../templates/show_search.inc.php:106 +#: ../../templates/show_rename_artist.inc.php:33 +msgid "OR" msgstr "" -#: ../../templates/show_playlist.inc.php:36 -msgid "Add Random" +#: ../../templates/show_edit_song.inc.php:53 +#: ../../templates/show_play_selected.inc.php:58 +#: ../../templates/show_genres.inc.php:37 +#: ../../templates/show_genres.inc.php:73 +#: ../../templates/show_playlist_songs.inc.php:45 +#: ../../templates/show_playlist_songs.inc.php:66 ../../lib/ui.lib.php:416 +msgid "Genre" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:24 -msgid "Add Localplay Instance" +#: ../../templates/show_edit_song.inc.php:61 +#: ../../templates/show_localplay_playlist.inc.php:31 +#: ../../templates/show_localplay_playlist.inc.php:57 +#: ../../templates/show_songs.inc.php:44 ../../templates/show_songs.inc.php:73 +#: ../../templates/show_playlist_songs.inc.php:41 +#: ../../templates/show_playlist_songs.inc.php:46 +#: ../../templates/show_playlist_songs.inc.php:62 +#: ../../templates/show_playlist_songs.inc.php:67 +msgid "Track" msgstr "" -#: ../../templates/show_localplay_add_instance.inc.php:35 -#: ../../templates/sidebar_localplay.inc.php:35 -msgid "Add Instance" +#: ../../templates/show_edit_song.inc.php:88 +msgid "Update Song" msgstr "" -#: ../../templates/header.inc.php:71 -msgid "Log out" +#: ../../templates/show_democratic_playlist.inc.php:38 +msgid "Playing from base Playlist" msgstr "" -#: ../../templates/header.inc.php:89 -msgid "Error Config File Out of Date" +#: ../../templates/show_democratic_playlist.inc.php:51 +#: ../../templates/show_democratic_playlist.inc.php:86 +msgid "Votes" msgstr "" -#: ../../templates/show_albums.inc.php:41 -#: ../../templates/show_albums.inc.php:68 -msgid "Cover" +#: ../../templates/show_democratic_playlist.inc.php:52 +#: ../../templates/show_democratic_playlist.inc.php:87 +#: ../../templates/show_recently_played.inc.php:36 +#: ../../templates/show_recently_played.inc.php:99 +#: ../../templates/show_duplicates.inc.php:37 +#: ../../templates/show_duplicates.inc.php:75 +#: ../../templates/show_now_playing_row.inc.php:45 +msgid "Song" msgstr "" -#: ../../templates/show_albums.inc.php:46 -#: ../../templates/show_albums.inc.php:73 -#: ../../templates/show_search.inc.php:60 -#: ../../templates/show_edit_song.inc.php:67 -#: ../../templates/show_edit_album.inc.php:33 -#: ../../templates/show_play_selected.inc.php:61 -msgid "Year" +#: ../../templates/show_democratic_playlist.inc.php:67 +msgid "Remove Vote" msgstr "" -#: ../../templates/show_preference_admin.inc.php:22 -msgid "Preference Administration" +#: ../../templates/show_democratic_playlist.inc.php:69 +msgid "Add Vote" msgstr "" -#: ../../templates/show_localplay_playlist.inc.php:23 -msgid "Current Playlist" +#: ../../templates/show_localplay_edit_instance.inc.php:23 +msgid "Edit Localplay Instance" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "seconds ago" +#: ../../templates/show_localplay_edit_instance.inc.php:34 +msgid "Update Instance" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "minutes ago" +#: ../../templates/show_search_bar.inc.php:29 +#: ../../templates/show_search.inc.php:131 ../../lib/ui.lib.php:370 +msgid "Search" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "hours ago" +#: ../../templates/show_search_bar.inc.php:30 +msgid "Advanced Search" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "days ago" +#: ../../templates/show_ip_history.inc.php:23 +#, php-format +msgid "%s IP History" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "weeks ago" +#: ../../templates/show_ip_history.inc.php:26 +msgid "Show Unique" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "months ago" +#: ../../templates/show_ip_history.inc.php:28 +#: ../../templates/show_admin_info.inc.php:38 +msgid "Show All" msgstr "" -#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 -msgid "years ago" +#: ../../templates/show_ip_history.inc.php:37 +#: ../../templates/show_ip_history.inc.php:51 +msgid "Date" msgstr "" -#: ../../templates/show_recently_played.inc.php:41 -#: ../../templates/show_recently_played.inc.php:94 -msgid "Last Played" +#: ../../templates/show_ip_history.inc.php:38 +#: ../../templates/show_ip_history.inc.php:52 +msgid "IP Address" msgstr "" -#: ../../templates/show_search.inc.php:26 -msgid "Search Ampache" +#: ../../templates/show_embed_xspf.inc.php:54 +msgid "XSPF Player" msgstr "" -#: ../../templates/show_search.inc.php:30 -msgid "Keywords" +#: ../../templates/show_play_selected.inc.php:28 +msgid "Play Selected" msgstr "" -#: ../../templates/show_search.inc.php:72 -msgid "Played" +#: ../../templates/show_play_selected.inc.php:31 +msgid "Download Selected" msgstr "" -#: ../../templates/show_search.inc.php:76 -msgid "Yes" +#: ../../templates/show_play_selected.inc.php:40 +msgid "Set Track Numbers" msgstr "" -#: ../../templates/show_search.inc.php:77 -msgid "No" +#: ../../templates/show_play_selected.inc.php:41 +msgid "Remove Selected Tracks" msgstr "" -#: ../../templates/show_search.inc.php:80 -msgid "Min Bitrate" +#: ../../templates/show_play_selected.inc.php:47 +msgid "Add to" msgstr "" -#: ../../templates/show_search.inc.php:95 -msgid "One Star" +#: ../../templates/show_flagged.inc.php:34 +#: ../../templates/show_flagged.inc.php:53 +#: ../../templates/show_manage_shoutbox.inc.php:34 +#: ../../templates/show_manage_shoutbox.inc.php:58 +msgid "Object" msgstr "" -#: ../../templates/show_search.inc.php:96 -msgid "Two Stars" +#: ../../templates/show_flagged.inc.php:38 +#: ../../templates/show_flagged.inc.php:57 +msgid "Status" msgstr "" -#: ../../templates/show_search.inc.php:97 -msgid "Three Stars" +#: ../../templates/show_stats_popular.inc.php:25 +#: ../../templates/show_mail_users.inc.php:46 +#: ../../templates/show_all_popular.inc.php:29 +msgid "Most Popular Albums" msgstr "" -#: ../../templates/show_search.inc.php:98 -msgid "Four Stars" +#: ../../templates/show_stats_popular.inc.php:31 +#: ../../templates/show_mail_users.inc.php:57 +#: ../../templates/show_all_popular.inc.php:26 +msgid "Most Popular Artists" msgstr "" -#: ../../templates/show_search.inc.php:99 -msgid "Five Stars" +#: ../../templates/show_stats_popular.inc.php:37 +#: ../../templates/show_all_popular.inc.php:32 +msgid "Most Popular Genres" msgstr "" -#: ../../templates/show_search.inc.php:102 -msgid "Operator" +#: ../../templates/show_user_recommendations.inc.php:29 +msgid "Recommended Artists" msgstr "" -#: ../../templates/show_search.inc.php:105 -msgid "AND" +#: ../../templates/show_user_recommendations.inc.php:40 +msgid "Recommended Albums" msgstr "" -#: ../../templates/show_search.inc.php:111 -msgid "Method" +#: ../../templates/show_user_recommendations.inc.php:51 +msgid "Recommended Songs" msgstr "" -#: ../../templates/show_search.inc.php:114 -msgid "Fuzzy" +#: ../../templates/show_edit_shout.inc.php:23 +msgid "Edit existing Shoutbox Post" msgstr "" -#: ../../templates/show_search.inc.php:115 -msgid "Exact" +#: ../../templates/show_edit_shout.inc.php:28 +#, php-format +msgid "Created by: %s for %s" msgstr "" -#: ../../templates/show_search.inc.php:118 -msgid "Maximum Results" +#: ../../templates/show_edit_shout.inc.php:31 +#: ../../templates/show_add_shout.inc.php:27 +msgid "Comment:" msgstr "" -#: ../../templates/show_search.inc.php:121 -#: ../../templates/show_random.inc.php:50 -#: ../../templates/show_random.inc.php:85 -msgid "Unlimited" +#: ../../templates/show_edit_shout.inc.php:37 +#: ../../templates/show_add_shout.inc.php:34 +msgid "Make Sticky" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:24 -#: ../../templates/sidebar_home.inc.php:29 -msgid "Add Radio Station" +#: ../../templates/show_object_rating_static.inc.php:34 +#: ../../templates/show_object_rating.inc.php:34 +msgid "Current rating: " msgstr "" -#: ../../templates/show_add_live_stream.inc.php:35 -#: ../../templates/show_edit_live_stream_row.inc.php:28 -msgid "Homepage" +#: ../../templates/show_object_rating_static.inc.php:36 +#: ../../templates/show_object_rating.inc.php:36 +msgid "not rated yet" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:42 -#: ../../templates/show_edit_live_stream_row.inc.php:27 -msgid "Stream URL" +#: ../../templates/show_object_rating_static.inc.php:38 +#: ../../templates/show_object_rating.inc.php:38 +#, php-format +msgid "%s of 5" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:49 -#: ../../templates/show_live_streams.inc.php:38 -#: ../../templates/show_live_streams.inc.php:60 -#: ../../templates/show_edit_live_stream_row.inc.php:30 -msgid "Frequency" +#: ../../templates/show_object_rating_static.inc.php:44 +msgid "out of" msgstr "" -#: ../../templates/show_add_live_stream.inc.php:55 -#: ../../templates/show_live_streams.inc.php:37 -#: ../../templates/show_live_streams.inc.php:59 -#: ../../templates/show_edit_live_stream_row.inc.php:29 -msgid "Callsign" +#: ../../templates/show_export.inc.php:51 +msgid "Format" msgstr "" -#: ../../templates/show_edit_access.inc.php:22 -msgid "Edit ACL" +#: ../../templates/show_export.inc.php:61 +msgid "Export" msgstr "" -#: ../../templates/show_edit_access.inc.php:30 -#: ../../templates/show_add_access.inc.php:63 -msgid "ACL Type" +#: ../../templates/show_edit_album.inc.php:23 +msgid "Edit Album" msgstr "" -#: ../../templates/show_edit_access.inc.php:34 -#: ../../templates/show_add_access.inc.php:66 -msgid "Stream Access" +#: ../../templates/show_edit_album.inc.php:47 +msgid "Update Album" msgstr "" -#: ../../templates/show_edit_access.inc.php:35 -#: ../../templates/show_add_access.inc.php:67 -msgid "Web Interface" +#: ../../templates/show_album_art.inc.php:47 +#: ../../templates/show_disabled_songs.inc.php:33 +#: ../../templates/show_disabled_songs.inc.php:56 +msgid "Select" msgstr "" -#: ../../templates/show_edit_access.inc.php:36 -#: ../../templates/show_add_access.inc.php:68 -msgid "Local Network Definition" +#: ../../templates/show_localplay_status.inc.php:25 +msgid "Localplay Control" msgstr "" -#: ../../templates/show_edit_access.inc.php:37 -#: ../../templates/show_add_access.inc.php:69 -msgid "RPC" +#: ../../templates/show_localplay_status.inc.php:28 +msgid "Mute" msgstr "" -#: ../../templates/show_edit_access.inc.php:43 -#: ../../templates/show_add_access.inc.php:32 -msgid "Start IP Address" +#: ../../templates/show_localplay_status.inc.php:29 +msgid "Decrease Volume" msgstr "" -#: ../../templates/show_edit_access.inc.php:50 -#: ../../templates/show_add_access.inc.php:39 -msgid "End IP Address" +#: ../../templates/show_localplay_status.inc.php:30 +msgid "Increase Volume" msgstr "" -#: ../../templates/show_edit_access.inc.php:63 -#: ../../templates/show_add_access.inc.php:77 -msgid "Remote Key" +#: ../../templates/show_localplay_status.inc.php:31 +msgid "Volume" msgstr "" -#: ../../templates/show_edit_access.inc.php:74 -#: ../../templates/show_add_access.inc.php:55 -#: ../../templates/show_play_selected.inc.php:49 -#: ../../lib/class/access.class.php:320 -msgid "View" +#: ../../templates/show_localplay_status.inc.php:33 +msgid "Repeat" msgstr "" -#: ../../templates/show_edit_access.inc.php:75 -#: ../../templates/show_add_access.inc.php:56 -#: ../../lib/class/access.class.php:323 -msgid "Read" +#: ../../templates/show_admin_info.inc.php:30 +msgid "Last Ten Flagged Records" msgstr "" -#: ../../templates/show_edit_access.inc.php:76 -#: ../../templates/show_add_access.inc.php:57 -#: ../../lib/class/access.class.php:326 -msgid "Read/Write" +#: ../../templates/show_admin_info.inc.php:34 +#: ../../templates/show_mail_users.inc.php:78 +msgid "Disabled Songs" msgstr "" -#: ../../templates/show_user_registration.inc.php:29 -#: ../../templates/show_user_registration.inc.php:36 -#: ../../templates/show_registration_confirmation.inc.php:29 -#: ../../templates/show_user_activate.inc.php:29 -#: ../../templates/show_user_activate.inc.php:36 -msgid "Registration" +#: ../../templates/show_preferences.inc.php:28 +msgid "Editing" msgstr "" -#: ../../templates/show_user_registration.inc.php:56 -msgid "User Agreement" +#: ../../templates/show_preferences.inc.php:28 +msgid "preferences" msgstr "" -#: ../../templates/show_user_registration.inc.php:65 -msgid "I Accept" +#: ../../templates/show_localplay_instances.inc.php:23 +msgid "Show Localplay Instances" msgstr "" -#: ../../templates/show_user_registration.inc.php:71 -msgid "User Information" +#: ../../templates/show_localplay_instances.inc.php:39 +msgid "Edit Instance" msgstr "" -#: ../../templates/show_user_registration.inc.php:133 -msgid "Register User" +#: ../../templates/show_update_items.inc.php:22 +msgid "Starting Update from Tags" msgstr "" -#: ../../templates/show_login_form.inc.php:58 -#: ../../templates/show_login_form.inc.php:73 -#: ../../templates/show_user_activate.inc.php:51 -msgid "Login" +#: ../../templates/show_update_items.inc.php:26 +msgid "Update from Tags Complete" msgstr "" -#: ../../templates/show_login_form.inc.php:66 -msgid "Remember Me" +#: ../../templates/show_user_stats.inc.php:30 +msgid "Favorite Artists" msgstr "" -#: ../../templates/show_login_form.inc.php:78 -msgid "Register" +#: ../../templates/show_user_stats.inc.php:43 +msgid "Favorite Albums" msgstr "" -#: ../../templates/show_login_form.inc.php:90 -msgid "Message of the Day" +#: ../../templates/show_user_stats.inc.php:56 +msgid "Favorite Songs" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:23 -msgid "Show Localplay Instances" +#: ../../templates/show_shoutbox.inc.php:22 +msgid "Shoutbox" msgstr "" -#: ../../templates/show_localplay_instances.inc.php:39 -msgid "Edit Instance" +#: ../../templates/show_search.inc.php:26 +msgid "Search Ampache" msgstr "" -#: ../../templates/show_all_popular.inc.php:26 -#: ../../templates/show_mail_users.inc.php:57 -#: ../../templates/show_stats_popular.inc.php:31 -msgid "Most Popular Artists" +#: ../../templates/show_search.inc.php:30 +msgid "Keywords" msgstr "" -#: ../../templates/show_all_popular.inc.php:29 -#: ../../templates/show_mail_users.inc.php:46 -#: ../../templates/show_stats_popular.inc.php:25 -msgid "Most Popular Albums" +#: ../../templates/show_search.inc.php:72 +msgid "Played" msgstr "" -#: ../../templates/show_all_popular.inc.php:32 -#: ../../templates/show_stats_popular.inc.php:37 -msgid "Most Popular Genres" +#: ../../templates/show_search.inc.php:76 +msgid "Yes" msgstr "" -#: ../../templates/show_all_popular.inc.php:38 -#: ../../templates/show_mail_users.inc.php:68 -msgid "Most Popular Songs" +#: ../../templates/show_search.inc.php:77 +msgid "No" msgstr "" -#: ../../templates/show_all_popular.inc.php:41 -msgid "Most Popular Live Streams" +#: ../../templates/show_search.inc.php:80 +msgid "Min Bitrate" msgstr "" -#: ../../templates/show_all_popular.inc.php:44 -msgid "Most Popular Tags" +#: ../../templates/show_search.inc.php:95 +msgid "One Star" msgstr "" -#: ../../templates/show_edit_song.inc.php:23 -msgid "Edit Song" +#: ../../templates/show_search.inc.php:96 +msgid "Two Stars" msgstr "" -#: ../../templates/show_edit_song.inc.php:81 -#: ../../templates/show_edit_artist.inc.php:35 -#: ../../templates/show_edit_album.inc.php:41 -msgid "Flag for Retagging" +#: ../../templates/show_search.inc.php:97 +msgid "Three Stars" msgstr "" -#: ../../templates/show_edit_song.inc.php:88 -msgid "Update Song" +#: ../../templates/show_search.inc.php:98 +msgid "Four Stars" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:24 -#: ../../templates/show_mail_users.inc.php:42 -msgid "Catalog Statistics" +#: ../../templates/show_search.inc.php:99 +msgid "Five Stars" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:27 -msgid "Connected Users" +#: ../../templates/show_search.inc.php:102 +msgid "Operator" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:28 -msgid "Total Users" +#: ../../templates/show_search.inc.php:105 +msgid "AND" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:30 -#: ../../templates/show_genre.inc.php:35 ../../lib/class/browse.class.php:747 -#: ../../lib/class/album.class.php:229 ../../lib/ui.lib.php:409 -msgid "Artists" +#: ../../templates/show_search.inc.php:111 +msgid "Method" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:32 -#: ../../lib/class/browse.class.php:737 -msgid "Genres" +#: ../../templates/show_search.inc.php:114 +msgid "Fuzzy" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:33 -msgid "Catalog Size" +#: ../../templates/show_search.inc.php:115 +msgid "Exact" msgstr "" -#: ../../templates/show_local_catalog_info.inc.php:34 -msgid "Catalog Time" +#: ../../templates/show_search.inc.php:118 +msgid "Maximum Results" msgstr "" -#: ../../templates/show_mail_users.inc.php:23 -msgid "Send E-mail to Users" +#: ../../templates/show_search.inc.php:121 +#: ../../templates/show_random.inc.php:50 +#: ../../templates/show_random.inc.php:85 +msgid "Unlimited" msgstr "" -#: ../../templates/show_mail_users.inc.php:27 -msgid "Mail to" +#: ../../templates/show_add_playlist.inc.php:24 +msgid "Create a new playlist" msgstr "" -#: ../../templates/show_mail_users.inc.php:33 -msgid "Inactive Users" +#: ../../templates/show_add_playlist.inc.php:32 +#: ../../templates/show_random.inc.php:62 +#: ../../templates/show_playlist_edit.inc.php:36 +msgid "Type" msgstr "" -#: ../../templates/show_mail_users.inc.php:53 -msgid "Latest Artist Additions" +#: ../../templates/show_run_add_catalog.inc.php:24 +#: ../../templates/show_adds_catalog.inc.php:25 +msgid "Found" msgstr "" -#: ../../templates/show_mail_users.inc.php:64 -msgid "Latest Album Additions" +#: ../../templates/show_install.inc.php:54 +msgid "" +"This step creates and inserts the Ampache database, as such please provide a " +"mysql account with database creation rights. This step may take a while " +"depending upon the speed of your computer" msgstr "" -#: ../../templates/show_mail_users.inc.php:74 -msgid "Flagged Songs" +#: ../../templates/show_install.inc.php:61 +msgid "Insert Ampache Database" msgstr "" -#: ../../templates/show_mail_users.inc.php:78 -#: ../../templates/show_admin_info.inc.php:34 -msgid "Disabled Songs" +#: ../../templates/show_install.inc.php:73 +msgid "MySQL Administrative Username" msgstr "" -#: ../../templates/show_mail_users.inc.php:86 -msgid "Most Popular Threshold in days" +#: ../../templates/show_install.inc.php:77 +msgid "MySQL Administrative Password" msgstr "" -#: ../../templates/show_mail_users.inc.php:97 -msgid "Subject" +#: ../../templates/show_install.inc.php:81 +msgid "Create Database User for New Database" msgstr "" -#: ../../templates/show_mail_users.inc.php:104 -msgid "Message" +#: ../../templates/show_install.inc.php:85 +msgid "Ampache Database Username" msgstr "" -#: ../../templates/show_mail_users.inc.php:112 -msgid "Send Mail" +#: ../../templates/show_install.inc.php:89 +msgid "Ampache Database User Password" msgstr "" -#: ../../templates/show_add_user.inc.php:25 -msgid "Adding a New User" +#: ../../templates/show_install.inc.php:93 +msgid "Overwrite Existing" msgstr "" -#: ../../templates/show_add_user.inc.php:87 -#: ../../templates/sidebar_admin.inc.php:33 -msgid "Add User" +#: ../../templates/show_install.inc.php:98 +msgid "Insert Database" msgstr "" -#: ../../templates/show_add_access.inc.php:22 -msgid "Add Access for a Host" +#: ../../templates/show_install_account.inc.php:43 +msgid "" +"Your webserver has read access to the /sql/ampache.sql file and the /config/" +"ampache.cfg.dist.php file" msgstr "" -#: ../../templates/show_add_access.inc.php:74 -msgid "RPC Options" +#: ../../templates/show_install_account.inc.php:49 +msgid "Step 2 - Creating the ampache.cfg.php file" msgstr "" -#: ../../templates/show_add_access.inc.php:84 -msgid "Create ACL" +#: ../../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 "" -#: ../../templates/show_preference_box.inc.php:43 -#: ../../templates/show_preference_box.inc.php:73 -msgid "Apply to All" +#: ../../templates/show_install_account.inc.php:56 +msgid "Create Admin Account" msgstr "" -#: ../../templates/show_preference_box.inc.php:44 -#: ../../templates/show_preference_box.inc.php:74 -msgid "Access Level" +#: ../../templates/show_install_account.inc.php:73 +msgid "Create Account" msgstr "" -#: ../../templates/show_playlist_edit.inc.php:26 -msgid "Editing Playlist" +#: ../../templates/show_gather_art.inc.php:23 +msgid "Starting Album Art Search" msgstr "" -#: ../../templates/show_registration_confirmation.inc.php:36 -msgid "Registration Complete" +#: ../../templates/show_gather_art.inc.php:24 +msgid "Searched" msgstr "" -#: ../../templates/show_registration_confirmation.inc.php:44 -msgid "" -"Your account has been created. An activation key has been sent to the e-mail " -"address you provided. Please check your e-mail for further information" +#: ../../templates/show_add_shout.inc.php:23 +msgid "Post to Shoutbox" msgstr "" -#: ../../templates/show_registration_confirmation.inc.php:46 -msgid "Return to Login Page" +#: ../../templates/show_stats_newest.inc.php:25 +msgid "Newest Albums" msgstr "" -#: ../../templates/show_denied.inc.php:32 -#: ../../templates/sidebar_localplay.inc.php:66 -msgid "Access Denied" +#: ../../templates/show_stats_newest.inc.php:30 +msgid "Newest Artists" msgstr "" -#: ../../templates/show_duplicates.inc.php:22 -msgid "Duplicate Songs" +#: ../../templates/show_stats_newest.inc.php:35 +msgid "Newest Genres" msgstr "" -#: ../../templates/show_duplicates.inc.php:40 -#: ../../templates/show_duplicates.inc.php:78 -#: ../../templates/show_random.inc.php:47 -msgid "Length" +#: ../../templates/show_songs.inc.php:43 ../../templates/show_songs.inc.php:72 +msgid "Tags" msgstr "" -#: ../../templates/show_duplicates.inc.php:41 -#: ../../templates/show_duplicates.inc.php:79 -msgid "Bitrate" +#: ../../templates/show_mail_users.inc.php:23 +msgid "Send E-mail to Users" msgstr "" -#: ../../templates/show_duplicates.inc.php:42 -#: ../../templates/show_duplicates.inc.php:80 -msgid "Size" +#: ../../templates/show_mail_users.inc.php:27 +msgid "Mail to" msgstr "" -#: ../../templates/show_gather_art.inc.php:23 -msgid "Starting Album Art Search" +#: ../../templates/show_mail_users.inc.php:33 +msgid "Inactive Users" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -msgid "Searched" +#: ../../templates/show_mail_users.inc.php:53 +msgid "Latest Artist Additions" msgstr "" -#: ../../templates/show_gather_art.inc.php:24 -#: ../../templates/sidebar_localplay.inc.php:44 -#: ../../templates/show_adds_catalog.inc.php:24 ../../lib/preferences.php:172 -#: ../../lib/preferences.php:214 ../../lib/ui.lib.php:657 -msgid "None" +#: ../../templates/show_mail_users.inc.php:64 +msgid "Latest Album Additions" msgstr "" -#: ../../templates/show_artist_box.inc.php:23 -#: ../../templates/show_artist_box.inc.php:26 -msgid "Albums by" +#: ../../templates/show_mail_users.inc.php:68 +#: ../../templates/show_all_popular.inc.php:38 +msgid "Most Popular Songs" msgstr "" -#: ../../templates/show_artist_box.inc.php:34 -msgid "Show All Songs By" +#: ../../templates/show_mail_users.inc.php:74 +msgid "Flagged Songs" msgstr "" -#: ../../templates/show_artist_box.inc.php:35 -msgid "Add All Songs By" +#: ../../templates/show_mail_users.inc.php:86 +msgid "Most Popular Threshold in days" msgstr "" -#: ../../templates/show_artist_box.inc.php:36 -msgid "Add Random Songs By" +#: ../../templates/show_mail_users.inc.php:97 +msgid "Subject" msgstr "" -#: ../../templates/show_artist_box.inc.php:38 -#: ../../templates/show_album.inc.php:58 -msgid "Update from tags" +#: ../../templates/show_mail_users.inc.php:104 +msgid "Message" msgstr "" -#: ../../templates/show_artist_box.inc.php:41 -msgid "Recommend Similar" +#: ../../templates/show_mail_users.inc.php:112 +msgid "Send Mail" msgstr "" #: ../../templates/show_random.inc.php:22 @@ -2258,10 +2288,17 @@ msgstr "" msgid "From genre" msgstr "" +#: ../../templates/show_random.inc.php:47 +#: ../../templates/show_duplicates.inc.php:40 +#: ../../templates/show_duplicates.inc.php:78 +msgid "Length" +msgstr "" + #: ../../templates/show_random.inc.php:51 #: ../../templates/show_random.inc.php:52 -msgid "minute" -msgid_plural "minutes" +#, php-format +msgid "%s minute" +msgid_plural "%s minutes" msgstr[0] "" msgstr[1] "" @@ -2270,9 +2307,9 @@ msgstr[1] "" #: ../../templates/show_random.inc.php:55 #: ../../templates/show_random.inc.php:56 #: ../../templates/show_random.inc.php:57 -#: ../../lib/class/catalog.class.php:179 -msgid "hour" -msgid_plural "hours" +#, php-format +msgid "%s hour" +msgid_plural "%s hours" msgstr[0] "" msgstr[1] "" @@ -2308,308 +2345,357 @@ msgstr "" msgid "Enqueue" msgstr "" -#: ../../templates/show_now_playing.inc.php:32 -#: ../../lib/class/localplay.class.php:639 -msgid "Now Playing" +#: ../../templates/show_search_options.inc.php:23 +msgid "Options" msgstr "" -#: ../../templates/show_genre.inc.php:29 -msgid "Viewing" +#: ../../templates/show_search_options.inc.php:26 +msgid "Add Search Results" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:9 -msgid "Sections" +#: ../../templates/show_get_albumart.inc.php:23 +msgid "Customize Search" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:18 -msgid "Account" +#: ../../templates/show_get_albumart.inc.php:44 +msgid "Direct URL to Image" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:22 -msgid "Server Config" +#: ../../templates/show_get_albumart.inc.php:52 +msgid "Local Image" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:32 -msgid "Modules" +#: ../../templates/show_get_albumart.inc.php:63 +msgid "Get Art" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:34 -msgid "Localplay Modules" +#: ../../templates/show_adds_catalog.inc.php:23 +#, php-format +msgid "Starting New Song Search on %s catalog" msgstr "" -#: ../../templates/sidebar_preferences.inc.php:35 -msgid "Available Plugins" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "seconds ago" msgstr "" -#: ../../templates/show_duplicate.inc.php:23 -#: ../../templates/show_duplicate.inc.php:42 -#: ../../templates/sidebar_admin.inc.php:46 -msgid "Find Duplicates" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "minutes ago" msgstr "" -#: ../../templates/show_duplicate.inc.php:27 -msgid "Search Type" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "hours ago" msgstr "" -#: ../../templates/show_duplicate.inc.php:34 -msgid "Artist and Title" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "days ago" msgstr "" -#: ../../templates/show_duplicate.inc.php:35 -msgid "Artist, Album and Title" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "weeks ago" msgstr "" -#: ../../templates/show_duplicate.inc.php:37 -msgid "Search Disabled Songs" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "months ago" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:36 -msgid "Show instances" +#: ../../templates/show_recently_played.inc.php:23 ../../lib/rss.php:180 +msgid "years ago" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:38 -#: ../../templates/sidebar_home.inc.php:35 -msgid "Show Playlist" +#: ../../templates/show_recently_played.inc.php:40 +#: ../../templates/show_recently_played.inc.php:102 +msgid "Last Played" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:42 -msgid "Active Instance" +#: ../../templates/show_artist.inc.php:22 +#, php-format +msgid "Albums by %s" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:60 -msgid "Localplay Disabled" +#: ../../templates/show_artist.inc.php:25 +#, php-format +msgid "%s by %s" +msgid_plural "%ss by %s" +msgstr[0] "" +msgstr[1] "" + +#: ../../templates/show_artist.inc.php:35 +#, php-format +msgid "Show All Songs By %s" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:62 -msgid "Allow Localplay set to False" +#: ../../templates/show_artist.inc.php:38 +#, php-format +msgid "Add All Songs By %s" msgstr "" -#: ../../templates/sidebar_localplay.inc.php:64 -msgid "Localplay Controller Not Defined" +#: ../../templates/show_artist.inc.php:41 +#, php-format +msgid "Add Random Songs By %s" msgstr "" -#: ../../templates/show_get_albumart.inc.php:23 -msgid "Customize Search" +#: ../../templates/show_artist.inc.php:45 +#: ../../templates/show_album.inc.php:71 +msgid "Update from tags" msgstr "" -#: ../../templates/show_get_albumart.inc.php:44 -msgid "Direct URL to Image" +#: ../../templates/show_democratic.inc.php:22 +#, php-format +msgid "Playlist %s" msgstr "" -#: ../../templates/show_get_albumart.inc.php:52 -msgid "Local Image" +#: ../../templates/show_verify_catalog.inc.php:23 +#, php-format +msgid "Updating the %s catalog" msgstr "" -#: ../../templates/show_get_albumart.inc.php:63 -msgid "Get Art" +#: ../../templates/show_verify_catalog.inc.php:24 +msgid "songs found checking tag information." msgstr "" -#: ../../templates/show_test_config.inc.php:40 -#: ../../templates/sidebar_admin.inc.php:45 -#: ../../templates/show_test.inc.php:32 -msgid "Ampache Debug" +#: ../../templates/show_verify_catalog.inc.php:25 +msgid "Verifed" msgstr "" -#: ../../templates/show_search_options.inc.php:23 -msgid "Options" +#: ../../templates/show_denied.inc.php:38 +msgid "" +"You've been redirected to this page because you do not have access to this " +"function." msgstr "" -#: ../../templates/show_search_options.inc.php:26 -msgid "Add Search Results" +#: ../../templates/show_denied.inc.php:39 +msgid "" +"If you believe this is an error please contact an Ampache administrator." msgstr "" -#: ../../templates/show_edit_catalog.inc.php:22 -msgid "Settings for" +#: ../../templates/show_denied.inc.php:40 +msgid "This event has been logged" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:29 -#: ../../templates/show_add_catalog.inc.php:35 -msgid "Auto-inserted Fields" +#: ../../templates/show_denied.inc.php:44 +msgid "" +"You've been redirected to this page because you've attempted to access a " +"function that is disabled in the demo." msgstr "" -#: ../../templates/show_edit_catalog.inc.php:30 -#: ../../templates/show_add_catalog.inc.php:36 -msgid "album name" +#: ../../templates/show_denied.inc.php:45 +msgid "" +"Functions are disabled in the demo because previous users of the demo have " +"used the functionality to post inappropriate materials" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:31 -#: ../../templates/show_add_catalog.inc.php:37 -msgid "artist name" +#: ../../templates/show_album.inc.php:27 ../../lib/class/album.class.php:238 +msgid "Disk" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:32 -#: ../../templates/show_add_catalog.inc.php:38 -msgid "id3 comment" +#: ../../templates/show_album.inc.php:34 +#: ../../lib/class/catalog.class.php:1800 +#: ../../lib/class/catalog.class.php:1871 +msgid "Unknown (Orphaned)" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:33 -#: ../../templates/show_add_catalog.inc.php:39 -msgid "genre" +#: ../../templates/show_album.inc.php:52 +msgid "Add Album" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:34 -#: ../../templates/show_add_catalog.inc.php:40 -msgid "track number (padded with leading 0)" +#: ../../templates/show_album.inc.php:56 +msgid "Add Random from Album" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:35 -#: ../../templates/show_add_catalog.inc.php:41 -msgid "song title" +#: ../../templates/show_album.inc.php:61 +msgid "Reset Album Art" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:36 -#: ../../templates/show_add_catalog.inc.php:42 -msgid "year" +#: ../../templates/show_album.inc.php:66 +msgid "Find Album Art" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:37 -#: ../../templates/show_add_catalog.inc.php:43 -msgid "other" +#: ../../templates/show_localplay_add_instance.inc.php:24 +msgid "Add Localplay Instance" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:41 -#: ../../templates/show_add_catalog.inc.php:52 -msgid "Catalog Type" +#: ../../templates/show_login_form.inc.php:58 +#: ../../templates/show_login_form.inc.php:73 +msgid "Login" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:45 -#: ../../templates/show_add_catalog.inc.php:61 -msgid "XML-RPC Key" +#: ../../templates/show_login_form.inc.php:66 +msgid "Remember Me" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:51 -msgid "Filename pattern" +#: ../../templates/show_login_form.inc.php:78 +msgid "Register" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "Folder Pattern" +#: ../../templates/show_login_form.inc.php:90 +msgid "Message of the Day" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:58 -#: ../../templates/show_add_catalog.inc.php:70 -msgid "(no leading or ending '/')" +#: ../../templates/show_all_popular.inc.php:41 +msgid "Most Popular Live Streams" msgstr "" -#: ../../templates/show_edit_catalog.inc.php:68 -msgid "Save Catalog Settings" +#: ../../templates/show_all_popular.inc.php:44 +msgid "Most Popular Tags" msgstr "" -#: ../../templates/show_democratic_playlist.inc.php:38 -msgid "Playing from base Playlist" +#: ../../templates/show_song.inc.php:24 +msgid "Details" msgstr "" -#: ../../templates/show_democratic_playlist.inc.php:51 -#: ../../templates/show_democratic_playlist.inc.php:86 -msgid "Votes" +#: ../../templates/show_disabled_songs.inc.php:38 +#: ../../templates/show_disabled_songs.inc.php:61 +msgid "Addition Time" msgstr "" -#: ../../templates/show_democratic_playlist.inc.php:67 -msgid "Remove Vote" +#: ../../templates/show_disabled_songs.inc.php:65 +msgid "Remove" msgstr "" -#: ../../templates/show_democratic_playlist.inc.php:69 -msgid "Add Vote" +#: ../../templates/show_edit_album_row.inc.php:35 +#: ../../lib/class/album.class.php:250 ../../lib/class/album.class.php:251 +msgid "Various" msgstr "" -#: ../../templates/show_edit_artist.inc.php:23 -msgid "Edit Artist" +#: ../../templates/list_header.inc.php:100 +msgid "Prev" msgstr "" -#: ../../templates/show_edit_artist.inc.php:41 -msgid "Update Artist" +#: ../../templates/show_duplicates.inc.php:22 +msgid "Duplicate Songs" msgstr "" -#: ../../templates/show_user_activate.inc.php:49 -msgid "User Activated" +#: ../../templates/show_duplicates.inc.php:41 +#: ../../templates/show_duplicates.inc.php:79 +msgid "Bitrate" msgstr "" -#: ../../templates/show_user_activate.inc.php:51 -msgid "This User ID is activated and can be used" +#: ../../templates/show_duplicates.inc.php:42 +#: ../../templates/show_duplicates.inc.php:80 +msgid "Size" msgstr "" -#: ../../templates/show_user_activate.inc.php:54 -msgid "Validation Failed" +#: ../../templates/show_manage_catalogs.inc.php:25 +msgid "Gather All Art" msgstr "" -#: ../../templates/show_user_activate.inc.php:55 -msgid "The validation key used isn't correct" +#: ../../templates/show_manage_catalogs.inc.php:26 +#: ../../templates/show_admin_tools.inc.php:80 +msgid "Add to All" msgstr "" -#: ../../templates/show_edit_album.inc.php:23 -msgid "Edit Album" +#: ../../templates/show_manage_catalogs.inc.php:27 +#: ../../templates/show_admin_tools.inc.php:79 +msgid "Verify All" msgstr "" -#: ../../templates/show_edit_album.inc.php:47 -msgid "Update Album" +#: ../../templates/show_manage_catalogs.inc.php:28 +#: ../../templates/show_admin_tools.inc.php:78 +msgid "Clean All" msgstr "" -#: ../../templates/show_admin_info.inc.php:30 -msgid "Last Ten Flagged Records" +#: ../../templates/show_manage_catalogs.inc.php:29 +#: ../../templates/show_admin_tools.inc.php:81 +msgid "Update All" msgstr "" -#: ../../templates/show_admin_info.inc.php:38 -#: ../../templates/show_ip_history.inc.php:28 -msgid "Show All" +#: ../../templates/show_admin_tools.inc.php:59 +msgid "Fast" msgstr "" -#: ../../templates/show_plugins.inc.php:46 -msgid "Deactivate" +#: ../../templates/show_admin_tools.inc.php:68 +msgid "No Catalogs Found" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:32 -#: ../../lib/preferences.php:174 -msgid "Stream" +#: ../../templates/show_admin_tools.inc.php:83 +msgid "Clear Catalog Stats" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:36 -#: ../../templates/sidebar_home.inc.php:33 ../../lib/preferences.php:177 -#: ../../modules/localplay/httpq.controller.php:488 -#: ../../modules/localplay/mpd.controller.php:491 -msgid "Democratic" +#: ../../templates/show_admin_tools.inc.php:84 +#: ../../templates/show_add_catalog.inc.php:75 +msgid "Gather Album Art" msgstr "" -#: ../../templates/show_playtype_switch.inc.php:38 -#: ../../lib/preferences.php:182 -msgid "Flash Player" +#: ../../templates/show_admin_tools.inc.php:90 +msgid "Show Duplicate Songs" msgstr "" -#: ../../templates/show_play_selected.inc.php:28 -msgid "Play Selected" +#: ../../templates/show_admin_tools.inc.php:93 +msgid "Preferences Permissions" msgstr "" -#: ../../templates/show_play_selected.inc.php:31 -msgid "Download Selected" +#: ../../templates/show_admin_tools.inc.php:94 +msgid "Export To Itunes DB" msgstr "" -#: ../../templates/show_play_selected.inc.php:40 -msgid "Set Track Numbers" +#: ../../templates/show_admin_tools.inc.php:95 +msgid "Show Inactive Users" msgstr "" -#: ../../templates/show_play_selected.inc.php:41 -msgid "Remove Selected Tracks" +#: ../../templates/show_admin_tools.inc.php:96 +msgid "Check for New Version" msgstr "" -#: ../../templates/show_play_selected.inc.php:47 -msgid "Add to" +#: ../../templates/show_access_list.inc.php:29 +msgid "Ampache Access Control" msgstr "" -#: ../../templates/show_ip_history.inc.php:23 -msgid "IP History" +#: ../../templates/show_access_list.inc.php:32 +msgid "" +"Since your catalog can be accessed remotely you may want to limit the access " +"from remote sources so you are not in violation of copyright laws." msgstr "" -#: ../../templates/show_ip_history.inc.php:26 -msgid "Show Unique" +#: ../../templates/show_access_list.inc.php:33 +msgid "" +"By default your server will allow anyone with an account to stream music." msgstr "" -#: ../../templates/show_ip_history.inc.php:37 -#: ../../templates/show_ip_history.inc.php:51 -msgid "Date" +#: ../../templates/show_access_list.inc.php:34 +msgid "" +"It will not allow any other Ampache servers to connect to it to share " +"catalog information." msgstr "" -#: ../../templates/show_ip_history.inc.php:38 -#: ../../templates/show_ip_history.inc.php:52 -msgid "IP Address" +#: ../../templates/show_access_list.inc.php:35 +msgid "Use tool below to add any server" +msgstr "" + +#: ../../templates/show_rename_artist.inc.php:29 +#, php-format +msgid "Rename %s" +msgstr "" + +#: ../../templates/show_rename_artist.inc.php:35 +msgid "Insert current" +msgstr "" + +#: ../../templates/show_rename_artist.inc.php:37 +msgid "Update id3 tags" +msgstr "" + +#: ../../templates/show_rename_artist.inc.php:38 +msgid "Rename" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:56 +msgid "User Agreement" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:65 +msgid "I Accept" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:71 +msgid "User Information" +msgstr "" + +#: ../../templates/show_user_registration.inc.php:133 +msgid "Register User" +msgstr "" + +#: ../../templates/show_playlist_edit.inc.php:26 +msgid "Editing Playlist" msgstr "" #: ../../templates/show_add_catalog.inc.php:27 @@ -2630,10 +2716,6 @@ msgstr "" msgid "Remote" msgstr "" -#: ../../templates/show_add_catalog.inc.php:62 -msgid "Required for Remote Catalogs" -msgstr "" - #: ../../templates/show_add_catalog.inc.php:65 msgid "Filename Pattern" msgstr "" @@ -2646,82 +2728,102 @@ msgstr "" msgid "Add Catalog" msgstr "" -#: ../../templates/show_export.inc.php:28 -#: ../../templates/sidebar_admin.inc.php:50 -msgid "Export Catalog" +#: ../../templates/show_registration_confirmation.inc.php:36 +msgid "Registration Complete" msgstr "" -#: ../../templates/show_export.inc.php:51 -msgid "Format" +#: ../../templates/show_registration_confirmation.inc.php:44 +msgid "" +"Your account has been created. An activation key has been sent to the e-mail " +"address you provided. Please check your e-mail for further information" msgstr "" -#: ../../templates/show_export.inc.php:61 -msgid "Export" +#: ../../templates/show_registration_confirmation.inc.php:46 +msgid "Return to Login Page" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:22 -#: ../../server/stats.ajax.php:41 ../../server/stats.ajax.php:66 -msgid "Recommendations" +#: ../../templates/show_debug.inc.php:23 +msgid "Debug Tools" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:29 -msgid "Recommended Artists" +#: ../../templates/show_debug.inc.php:25 +msgid "Generate Configuration" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:40 -msgid "Recommended Albums" +#: ../../templates/show_debug.inc.php:26 +msgid "Set Database Charset" msgstr "" -#: ../../templates/show_user_recommendations.inc.php:51 -msgid "Recommended Songs" +#: ../../templates/show_debug.inc.php:29 +msgid "PHP Settings" msgstr "" -#: ../../templates/show_import_playlist.inc.php:23 -msgid "Importing a Playlist from a File" +#: ../../templates/show_debug.inc.php:36 +msgid "Setting" msgstr "" -#: ../../templates/show_import_playlist.inc.php:35 -msgid "Playlist Type" +#: ../../templates/show_debug.inc.php:40 +msgid "Memory Limit" msgstr "" -#: ../../templates/show_import_playlist.inc.php:47 -msgid "Import Playlist" +#: ../../templates/show_debug.inc.php:44 +msgid "Maximum Execution Time" msgstr "" -#: ../../templates/show_user_stats.inc.php:22 -msgid "Favorites" +#: ../../templates/show_debug.inc.php:48 +msgid "Safe Mode" msgstr "" -#: ../../templates/show_user_stats.inc.php:30 -msgid "Favorite Artists" +#: ../../templates/show_debug.inc.php:56 +msgid "Zlib Support" msgstr "" -#: ../../templates/show_user_stats.inc.php:43 -msgid "Favorite Albums" +#: ../../templates/show_debug.inc.php:60 +msgid "GD Support" msgstr "" -#: ../../templates/show_user_stats.inc.php:56 -msgid "Favorite Songs" +#: ../../templates/show_debug.inc.php:64 +msgid "Iconv Support" msgstr "" -#: ../../templates/sidebar_home.inc.php:25 -msgid "Information" +#: ../../templates/show_debug.inc.php:68 +msgid "Gettext Support" msgstr "" -#: ../../templates/sidebar_home.inc.php:27 -msgid "Currently Playing" +#: ../../templates/show_debug.inc.php:74 +msgid "Current Configuration" msgstr "" -#: ../../templates/sidebar_home.inc.php:28 ../../lib/ui.lib.php:417 -msgid "Statistics" +#: ../../templates/sidebar_modules.inc.php:27 +msgid "Localplay Modules" msgstr "" -#: ../../templates/sidebar_home.inc.php:36 -msgid "Manage Playlist" +#: ../../templates/sidebar_modules.inc.php:28 +msgid "Available Plugins" msgstr "" -#: ../../templates/sidebar_home.inc.php:45 -msgid "Advanced" +#: ../../templates/sidebar_modules.inc.php:34 +msgid "Mail Users" +msgstr "" + +#: ../../templates/sidebar_modules.inc.php:35 +msgid "Manage Flagged" +msgstr "" + +#: ../../templates/sidebar_modules.inc.php:36 +msgid "Show Disabled" +msgstr "" + +#: ../../templates/sidebar_modules.inc.php:39 +msgid "Information" +msgstr "" + +#: ../../templates/sidebar_modules.inc.php:42 ../../lib/ui.lib.php:420 +msgid "Statistics" +msgstr "" + +#: ../../templates/sidebar_modules.inc.php:50 +msgid "Manage Playlist" msgstr "" #: ../../templates/show_manage_shoutbox.inc.php:36 @@ -2734,726 +2836,783 @@ msgstr "" msgid "Date Added" msgstr "" -#: ../../templates/sidebar_admin.inc.php:27 -msgid "Show Catalogs" +#: ../../templates/show_now_playing.inc.php:32 +#: ../../lib/class/localplay.class.php:639 +msgid "Now Playing" msgstr "" -#: ../../templates/sidebar_admin.inc.php:31 -msgid "User Tools" +#: ../../artists.php:181 +msgid "Show Artists starting with" msgstr "" -#: ../../templates/sidebar_admin.inc.php:34 -msgid "Browse Users" +#: ../../flag.php:45 +msgid "Item Flagged" msgstr "" -#: ../../templates/sidebar_admin.inc.php:37 -msgid "Access Control" +#: ../../flag.php:45 +msgid "The specified item has been flagged" msgstr "" -#: ../../templates/sidebar_admin.inc.php:39 -msgid "Add ACL" +#: ../../register.php:73 +msgid "Error Captcha Required" msgstr "" -#: ../../templates/sidebar_admin.inc.php:40 -msgid "Show ACL(s)" +#: ../../register.php:80 +msgid "Error Captcha Failed" msgstr "" -#: ../../templates/sidebar_admin.inc.php:47 -msgid "Mail Users" +#: ../../register.php:87 +msgid "You <U>must</U> accept the user agreement" msgstr "" -#: ../../templates/sidebar_admin.inc.php:49 -#: ../../templates/show_account.inc.php:53 -msgid "Clear Stats" +#: ../../register.php:92 +msgid "You did not enter a username" msgstr "" -#: ../../templates/sidebar_admin.inc.php:51 -msgid "Manage Flagged" +#: ../../register.php:96 +msgid "Please fill in your full name (Firstname Lastname)" msgstr "" -#: ../../templates/sidebar_admin.inc.php:53 -msgid "Manage Shoutbox" +#: ../../register.php:122 +msgid "You must enter a password" msgstr "" -#: ../../templates/show_clean_catalog.inc.php:23 -msgid "Cleaning the" +#: ../../register.php:126 +msgid "Your passwords do not match" msgstr "" -#: ../../templates/show_clean_catalog.inc.php:24 -msgid "Checking" +#: ../../register.php:130 ../../admin/users.php:110 +msgid "Error Username already exists" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "Starting New Song Search on" +#: ../../register.php:158 +msgid "Error: Insert Failed" msgstr "" -#: ../../templates/show_adds_catalog.inc.php:23 -msgid "catalog" +#: ../../login.php:73 +msgid "User Disabled please contact Admin" msgstr "" -#: ../../templates/show_test.inc.php:33 -msgid "" -"You've reached this page because a configuration error has occured. Debug " -"Information below" +#: ../../login.php:89 +msgid "Unable to create new account" msgstr "" -#: ../../templates/show_test.inc.php:37 -msgid "CHECK" +#: ../../login.php:98 +msgid "No local account found" msgstr "" -#: ../../templates/show_test.inc.php:39 -msgid "STATUS" +#: ../../login.php:115 +msgid "User Already Logged in" msgstr "" -#: ../../templates/show_test.inc.php:41 -msgid "DESCRIPTION" +#: ../../democratic.php:52 +msgid "The Requested Playlist has been deleted." msgstr "" -#: ../../templates/show_test.inc.php:44 -msgid "PHP Version" +#: ../../lib/rating.lib.php:51 +msgid "Don't Play" msgstr "" -#: ../../templates/show_test.inc.php:59 -msgid "" -"This tests to make sure that you are running a version of PHP that is known " -"to work with Ampache." +#: ../../lib/rating.lib.php:54 +msgid "It's Pretty Bad" msgstr "" -#: ../../templates/show_test.inc.php:63 -msgid "Mysql for PHP" +#: ../../lib/rating.lib.php:57 +msgid "It's Ok" msgstr "" -#: ../../templates/show_test.inc.php:78 -msgid "" -"This test checks to see if you have the mysql extensions loaded for PHP. " -"These are required for Ampache to work." +#: ../../lib/rating.lib.php:60 +msgid "It's Pretty Good" msgstr "" -#: ../../templates/show_test.inc.php:82 -msgid "PHP Session Support" +#: ../../lib/rating.lib.php:63 +msgid "I Love It!" msgstr "" -#: ../../templates/show_test.inc.php:97 -msgid "" -"This test checks to make sure that you have PHP session support enabled. " -"Sessions are required for Ampache to work." +#: ../../lib/rating.lib.php:66 +msgid "It's Insane" msgstr "" -#: ../../templates/show_test.inc.php:101 -msgid "PHP ICONV Support" +#: ../../lib/rating.lib.php:70 +msgid "Off the Charts!" msgstr "" -#: ../../templates/show_test.inc.php:115 -msgid "" -"This test checks to make sure you have Iconv support installed. Iconv " -"support is required for Ampache" +#: ../../lib/ui.lib.php:358 +msgid "Upload" msgstr "" -#: ../../templates/show_test.inc.php:119 -msgid "PHP PCRE Support" +#: ../../lib/ui.lib.php:361 +msgid "Local Play" msgstr "" -#: ../../templates/show_test.inc.php:132 -msgid "" -"This test makes sure you have PCRE support compiled into your version of " -"PHP, this is required for Ampache." +#: ../../lib/ui.lib.php:364 +msgid "Random Play" msgstr "" -#: ../../templates/show_test.inc.php:136 -msgid "PHP PutENV Support" +#: ../../lib/ui.lib.php:376 ../../lib/ui.lib.php:380 +msgid "Admin-Catalog" msgstr "" -#: ../../templates/show_test.inc.php:149 -msgid "" -"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" +#: ../../lib/ui.lib.php:384 +msgid "Admin-User Management" msgstr "" -#: ../../templates/show_test.inc.php:166 -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." +#: ../../lib/ui.lib.php:388 +msgid "Admin-Mail Users" msgstr "" -#: ../../templates/show_test.inc.php:189 -msgid "" -"This test makes sure that you have set all of the required configuration " -"variables and that we are able to completely parse your config file" +#: ../../lib/ui.lib.php:392 +msgid "Admin-Manage Access Lists" msgstr "" -#: ../../templates/show_test.inc.php:193 -msgid "DB Connection" +#: ../../lib/ui.lib.php:396 +msgid "Admin-Site Preferences" msgstr "" -#: ../../templates/show_test.inc.php:209 -msgid "" -"This attempts to connect to your database using the values from your ampache." -"cfg.php" +#: ../../lib/ui.lib.php:400 +msgid "Admin-Manage Modules" msgstr "" -#: ../../templates/show_test.inc.php:213 -msgid "DB Inserted" +#: ../../lib/ui.lib.php:404 +msgid "Browse Music" msgstr "" -#: ../../templates/show_user_preferences.inc.php:28 -#: ../../templates/show_preferences.inc.php:28 -msgid "Editing" +#: ../../lib/ui.lib.php:511 +msgid "Add New" msgstr "" -#: ../../templates/show_user_preferences.inc.php:28 -#: ../../templates/show_preferences.inc.php:28 -msgid "preferences" +#: ../../lib/class/browse.class.php:984 +msgid "Manage Users" msgstr "" -#: ../../templates/show_user_preferences.inc.php:50 -#: ../../templates/show_preferences.inc.php:36 -msgid "Update Preferences" +#: ../../lib/class/browse.class.php:1000 +msgid "Playlists" msgstr "" -#: ../../templates/show_index.inc.php:38 -msgid "Loading..." +#: ../../lib/class/browse.class.php:1005 +msgid "Playlist Songs" msgstr "" -#: ../../templates/show_account.inc.php:40 -msgid "New Password" +#: ../../lib/class/browse.class.php:1010 +msgid "Current Playlist" msgstr "" -#: ../../templates/show_account.inc.php:64 -msgid "Update Account" +#: ../../lib/class/browse.class.php:1020 +msgid "Shoutbox Records" msgstr "" -#: ../../templates/list_header.inc.php:99 -msgid "Prev" +#: ../../lib/class/browse.class.php:1025 +msgid "Flagged Records" msgstr "" -#: ../../templates/rightbar.inc.php:28 -msgid "Add to Playlist" +#: ../../lib/class/flag.class.php:257 +msgid "Approved" msgstr "" -#: ../../templates/rightbar.inc.php:31 -msgid "Add to New Playlist" +#: ../../lib/class/flag.class.php:258 +msgid "Pending" msgstr "" -#: ../../templates/rightbar.inc.php:56 -msgid "Add Dynamic Items" +#: ../../lib/class/flag.class.php:273 +msgid "Re-Tag" msgstr "" -#: ../../templates/rightbar.inc.php:59 ../../lib/class/random.class.php:432 -msgid "Pure Random" +#: ../../lib/class/localplay.class.php:642 +msgid "Stopped" msgstr "" -#: ../../templates/rightbar.inc.php:62 ../../lib/class/random.class.php:429 -msgid "Related Artist" +#: ../../lib/class/localplay.class.php:645 +msgid "Paused" msgstr "" -#: ../../templates/rightbar.inc.php:65 ../../lib/class/random.class.php:423 -msgid "Related Album" +#: ../../lib/class/democratic.class.php:98 +msgid "Primary" msgstr "" -#: ../../templates/rightbar.inc.php:68 ../../lib/class/random.class.php:426 -msgid "Related Genre" +#: ../../lib/class/user.class.php:379 ../../admin/users.php:55 +#: ../../admin/users.php:105 +msgid "Error Username Required" msgstr "" -#: ../../templates/rightbar.inc.php:104 -msgid "More" +#: ../../lib/class/user.class.php:383 ../../admin/users.php:58 +#: ../../admin/users.php:101 +msgid "Error Passwords don't match" msgstr "" -#: ../../templates/show_album.inc.php:28 ../../lib/class/album.class.php:217 -msgid "Disk" +#: ../../lib/class/album.class.php:466 ../../lib/class/catalog.class.php:415 +#: ../../lib/class/catalog.class.php:756 +msgid "Error: Unable to open" msgstr "" -#: ../../templates/show_album.inc.php:35 -#: ../../lib/class/catalog.class.php:1798 -#: ../../lib/class/catalog.class.php:1880 -#: ../../lib/class/catalog.class.php:1963 -msgid "Unknown (Orphaned)" +#: ../../lib/class/catalog.class.php:176 +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../lib/class/catalog.class.php:178 +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../lib/class/catalog.class.php:278 +msgid "Running Remote Sync" msgstr "" -#: ../../templates/show_album.inc.php:51 -msgid "Add Album" +#: ../../lib/class/catalog.class.php:422 ../../lib/class/catalog.class.php:465 +msgid "Error: Unable to change to directory" msgstr "" -#: ../../templates/show_album.inc.php:52 -msgid "Add Random from Album" +#: ../../lib/class/catalog.class.php:493 +#, php-format +msgid "Error: Unable to get filesize for %s" msgstr "" -#: ../../templates/show_album.inc.php:54 -msgid "Reset Album Art" +#: ../../lib/class/catalog.class.php:499 +#, php-format +msgid "%s is not readable by ampache" msgstr "" -#: ../../templates/show_album.inc.php:56 -msgid "Find Album Art" +#: ../../lib/class/catalog.class.php:507 +#, php-format +msgid "%s does not match site charset" msgstr "" -#: ../../templates/show_album.inc.php:64 ../../server/stats.ajax.php:74 -#: ../../server/stats.ajax.php:92 ../../server/stats.ajax.php:100 -msgid "Find Missing Tracks" +#: ../../lib/class/catalog.class.php:1045 ../../preferences.php:111 +#: ../../admin/access.php:45 +msgid "Updated" msgstr "" -#: ../../templates/show_playlists.inc.php:35 -#: ../../templates/show_playlists.inc.php:58 -msgid "Playlist Name" +#: ../../lib/class/catalog.class.php:1052 +msgid "No Update Needed" msgstr "" -#: ../../templates/show_playlists.inc.php:37 -#: ../../templates/show_playlists.inc.php:60 -msgid "# Songs" +#: ../../lib/class/catalog.class.php:1145 +msgid "Running Remote Update" msgstr "" -#: ../../templates/show_playlists.inc.php:38 -#: ../../templates/show_playlists.inc.php:61 -msgid "Owner" +#: ../../lib/class/catalog.class.php:1172 +msgid "Added Playlist From" msgstr "" -#: ../../templates/show_stats_newest.inc.php:25 -msgid "Newest Albums" +#: ../../lib/class/catalog.class.php:1201 +msgid "Catalog Update Finished" msgstr "" -#: ../../templates/show_stats_newest.inc.php:30 -msgid "Newest Artists" +#: ../../lib/class/catalog.class.php:1201 +msgid "Total Time" msgstr "" -#: ../../templates/show_stats_newest.inc.php:35 -msgid "Newest Genres" +#: ../../lib/class/catalog.class.php:1202 +msgid "Total Songs" msgstr "" -#: ../../server/stats.ajax.php:52 ../../server/stats.ajax.php:84 -msgid "Links" +#: ../../lib/class/catalog.class.php:1202 +msgid "Songs Per Seconds" msgstr "" -#: ../../democratic.php:52 -msgid "The Requested Playlist has been deleted." +#: ../../lib/class/catalog.class.php:1217 ../../admin/users.php:142 +msgid "Error" msgstr "" -#: ../../lib/class/metadata.class.php:137 -msgid "Buy Track from MyStrands" +#: ../../lib/class/catalog.class.php:1217 +msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" msgstr "" -#: ../../lib/class/democratic.class.php:98 -msgid "Primary" +#: ../../lib/class/catalog.class.php:1247 +#: ../../lib/class/catalog.class.php:1315 +#: ../../lib/class/xmlrpcclient.class.php:64 +#: ../../lib/class/xmlrpcclient.class.php:97 +msgid "Error connecting to" msgstr "" -#: ../../lib/class/flag.class.php:251 -msgid "Approved" +#: ../../lib/class/catalog.class.php:1247 +#: ../../lib/class/catalog.class.php:1315 +#: ../../lib/class/xmlrpcclient.class.php:64 +#: ../../lib/class/xmlrpcclient.class.php:97 +msgid "Code" msgstr "" -#: ../../lib/class/flag.class.php:252 -msgid "Pending" +#: ../../lib/class/catalog.class.php:1247 +#: ../../lib/class/catalog.class.php:1315 +#: ../../lib/class/xmlrpcclient.class.php:64 +msgid "Reason" msgstr "" -#: ../../lib/class/flag.class.php:267 -msgid "Re-Tag" +#: ../../lib/class/catalog.class.php:1276 +msgid "Completed updating remote catalog(s)" msgstr "" -#: ../../lib/class/browse.class.php:742 -msgid "Manage Users" +#: ../../lib/class/catalog.class.php:1311 ../../admin/access.php:40 +msgid "Added" msgstr "" -#: ../../lib/class/browse.class.php:757 -msgid "Playlists" +#: ../../lib/class/catalog.class.php:1383 +msgid "Catalog Root unreadable, stopping clean" msgstr "" -#: ../../lib/class/browse.class.php:762 -msgid "Playlist Songs" +#: ../../lib/class/catalog.class.php:1440 +msgid "Catalog Clean Done" msgstr "" -#: ../../lib/class/browse.class.php:772 -msgid "Shoutbox Records" +#: ../../lib/class/catalog.class.php:1440 +msgid "files removed" msgstr "" -#: ../../lib/class/browse.class.php:777 -msgid "Flagged Records" +#: ../../lib/class/catalog.class.php:1441 +msgid "Optimizing Tables" msgstr "" -#: ../../lib/class/xmlrpcclient.class.php:64 -#: ../../lib/class/xmlrpcclient.class.php:97 -#: ../../lib/class/catalog.class.php:1240 -#: ../../lib/class/catalog.class.php:1308 -msgid "Error connecting to" +#: ../../lib/class/catalog.class.php:1741 +msgid "Update Finished." msgstr "" -#: ../../lib/class/xmlrpcclient.class.php:64 -#: ../../lib/class/xmlrpcclient.class.php:97 -#: ../../lib/class/catalog.class.php:1240 -#: ../../lib/class/catalog.class.php:1308 -msgid "Code" +#: ../../lib/class/catalog.class.php:1741 +msgid "Checked" msgstr "" -#: ../../lib/class/xmlrpcclient.class.php:64 -#: ../../lib/class/catalog.class.php:1240 -#: ../../lib/class/catalog.class.php:1308 -msgid "Reason" +#: ../../lib/class/catalog.class.php:1741 +msgid "songs updated." msgstr "" -#: ../../lib/class/catalog.class.php:177 -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +#: ../../lib/class/vauth.class.php:476 ../../lib/class/vauth.class.php:500 +#: ../../lib/class/vauth.class.php:539 +msgid "Error Username or Password incorrect, please try again" +msgstr "" -#: ../../lib/class/catalog.class.php:279 -msgid "Running Remote Sync" +#: ../../lib/general.lib.php:406 +msgid "Simplified Chinese" msgstr "" -#: ../../lib/class/catalog.class.php:414 ../../lib/class/catalog.class.php:755 -#: ../../lib/class/album.class.php:445 -msgid "Error: Unable to open" +#: ../../lib/general.lib.php:468 +msgid "On" msgstr "" -#: ../../lib/class/catalog.class.php:421 ../../lib/class/catalog.class.php:464 -msgid "Error: Unable to change to directory" +#: ../../lib/general.lib.php:471 +msgid "Off" msgstr "" -#: ../../lib/class/catalog.class.php:492 -msgid "Error: Unable to get filesize for" +#: ../../lib/preferences.php:191 +msgid "M3U" msgstr "" -#: ../../lib/class/catalog.class.php:498 -msgid "is not readable by ampache" +#: ../../lib/preferences.php:192 +msgid "Simple M3U" msgstr "" -#: ../../lib/class/catalog.class.php:506 -msgid "does not match site charset" +#: ../../lib/preferences.php:193 +msgid "PLS" msgstr "" -#: ../../lib/class/catalog.class.php:1042 -msgid "No Update Needed" +#: ../../lib/preferences.php:194 +msgid "Asx" msgstr "" -#: ../../lib/class/catalog.class.php:1138 -msgid "Running Remote Update" +#: ../../lib/preferences.php:195 +msgid "RAM" msgstr "" -#: ../../lib/class/catalog.class.php:1165 -msgid "Added Playlist From" +#: ../../lib/preferences.php:196 +msgid "XSPF" msgstr "" -#: ../../lib/class/catalog.class.php:1194 -msgid "Catalog Update Finished" +#: ../../lib/preferences.php:230 +msgid "Disabled" msgstr "" -#: ../../lib/class/catalog.class.php:1194 -msgid "Total Time" +#: ../../lib/preferences.php:232 +msgid "Manager" msgstr "" -#: ../../lib/class/catalog.class.php:1195 -msgid "Total Songs" +#: ../../lib/preferences.php:252 +msgid "Send on Add" msgstr "" -#: ../../lib/class/catalog.class.php:1195 -msgid "Songs Per Seconds" +#: ../../lib/preferences.php:253 +msgid "Send and Clear on Add" msgstr "" -#: ../../lib/class/catalog.class.php:1210 -msgid "Unable to load XMLRPC library, make sure XML-RPC is enabled" +#: ../../lib/preferences.php:254 +msgid "Clear on Send" msgstr "" -#: ../../lib/class/catalog.class.php:1269 -msgid "Completed updating remote catalog(s)" +#: ../../lib/preferences.php:263 +msgid "Always" msgstr "" -#: ../../lib/class/catalog.class.php:1377 -msgid "Catalog Root unreadable, stopping clean" +#: ../../lib/install.php:253 +msgid "No Username/Password specified" msgstr "" -#: ../../lib/class/catalog.class.php:1434 -msgid "Catalog Clean Done" +#: ../../lib/install.php:258 +msgid "Passwords do not match" msgstr "" -#: ../../lib/class/catalog.class.php:1434 -msgid "files removed" +#: ../../shout.php:41 +msgid "Invalid Object Selected" msgstr "" -#: ../../lib/class/catalog.class.php:1435 -msgid "Optimizing Tables" +#: ../../preferences.php:40 ../../preferences.php:75 +msgid "Server" msgstr "" -#: ../../lib/class/catalog.class.php:1736 -msgid "Update Finished." +#: ../../preferences.php:107 +msgid "Error Update Failed" msgstr "" -#: ../../lib/class/catalog.class.php:1736 -msgid "Checked" +#: ../../preferences.php:112 +msgid "Your Account has been updated" msgstr "" -#: ../../lib/class/catalog.class.php:1736 -msgid "songs updated." +#: ../../play/index.php:77 +msgid "Session Expired: please log in again at" msgstr "" -#: ../../lib/class/localplay.class.php:642 -msgid "Stopped" +#: ../../radio.php:50 +msgid "Radio Station Added" msgstr "" -#: ../../lib/class/localplay.class.php:645 -msgid "Paused" +#: ../../update.php:47 ../../update.php:51 +msgid "Ampache Update" msgstr "" -#: ../../lib/preferences.php:189 -msgid "M3U" +#: ../../albums.php:32 +msgid "Album Art Cleared" msgstr "" -#: ../../lib/preferences.php:190 -msgid "Simple M3U" +#: ../../albums.php:32 +msgid "Album Art information has been removed from the database" msgstr "" -#: ../../lib/preferences.php:191 -msgid "PLS" +#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129 +msgid "Album Art Not Located" msgstr "" -#: ../../lib/preferences.php:192 -msgid "Asx" +#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129 +msgid "" +"Album Art could not be located at this time. This may be due to write access " +"error, or the file is not received corectly." msgstr "" -#: ../../lib/preferences.php:193 -msgid "RAM" +#: ../../albums.php:52 ../../albums.php:80 +msgid "Album Art Inserted" msgstr "" -#: ../../lib/preferences.php:194 -msgid "XSPF" +#: ../../playlist.php:57 +msgid "Playlist Created" msgstr "" -#: ../../lib/preferences.php:228 -msgid "Disabled" +#: ../../playlist.php:57 +msgid " has been created" msgstr "" -#: ../../lib/preferences.php:230 -msgid "Manager" +#: ../../playlist.php:78 +msgid "Playlist Updated" msgstr "" -#: ../../lib/preferences.php:251 -msgid "Send on Add" +#: ../../playlist.php:79 +msgid "has been updated and is now" msgstr "" -#: ../../lib/preferences.php:252 -msgid "Send and Clear on Add" +#: ../../playlist.php:101 +msgid "Playlist Imported" msgstr "" -#: ../../lib/preferences.php:253 -msgid "Clear on Send" +#: ../../playlist.php:130 +msgid "Empty Playlists Deleted" msgstr "" -#: ../../lib/preferences.php:262 -msgid "Always" +#: ../../modules/horde/Browser.php:867 +msgid "file" msgstr "" -#: ../../lib/rating.lib.php:51 -msgid "Don't Play" +#: ../../modules/horde/Browser.php:871 +msgid "File uploads not supported." msgstr "" -#: ../../lib/rating.lib.php:54 -msgid "It's Pretty Bad" +#: ../../modules/horde/Browser.php:889 +msgid "No file uploaded" msgstr "" -#: ../../lib/rating.lib.php:57 -msgid "It's Ok" +#: ../../modules/horde/Browser.php:896 +#, php-format +msgid "There was a problem with the file upload: No %s was uploaded." msgstr "" -#: ../../lib/rating.lib.php:60 -msgid "It's Pretty Good" +#: ../../modules/horde/Browser.php:901 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was larger than the maximum " +"allowed size (%d bytes)." msgstr "" -#: ../../lib/rating.lib.php:63 -msgid "I Love It!" +#: ../../modules/horde/Browser.php:903 +#, php-format +msgid "" +"There was a problem with the file upload: The %s was only partially uploaded." msgstr "" -#: ../../lib/rating.lib.php:66 -msgid "It's Insane" +#: ../../modules/localplay/mpd.controller.php:232 +#: ../../modules/localplay/shoutcast.controller.php:237 +#: ../../modules/localplay/httpq.controller.php:216 +msgid "Instance Name" msgstr "" -#: ../../lib/rating.lib.php:70 -msgid "Off the Charts!" +#: ../../modules/localplay/mpd.controller.php:233 +#: ../../modules/localplay/httpq.controller.php:217 +msgid "Hostname" msgstr "" -#: ../../lib/general.lib.php:406 -msgid "Simplified Chinese" +#: ../../modules/localplay/mpd.controller.php:234 +#: ../../modules/localplay/httpq.controller.php:218 +msgid "Port" msgstr "" -#: ../../lib/general.lib.php:467 -msgid "On" +#: ../../modules/localplay/shoutcast.controller.php:238 +msgid "PID File" msgstr "" -#: ../../lib/general.lib.php:470 -msgid "Off" +#: ../../modules/localplay/shoutcast.controller.php:239 +msgid "Playlist File" msgstr "" -#: ../../lib/install.php:253 -msgid "No Username/Password specified" +#: ../../modules/localplay/shoutcast.controller.php:240 +msgid "Local Path to Files" msgstr "" -#: ../../lib/install.php:258 -msgid "Passwords do not match" +#: ../../admin/mail.php:57 +msgid "E-mail Sent" msgstr "" -#: ../../lib/ui.lib.php:355 -msgid "Upload" +#: ../../admin/mail.php:58 +msgid "Your E-mail was successfully sent." msgstr "" -#: ../../lib/ui.lib.php:358 -msgid "Local Play" +#: ../../admin/modules.php:38 +msgid "Install Failed, Controller Error" msgstr "" -#: ../../lib/ui.lib.php:361 -msgid "Random Play" +#: ../../admin/modules.php:56 ../../admin/modules.php:101 +msgid "Are you sure you want to remove this plugin?" msgstr "" -#: ../../lib/ui.lib.php:373 ../../lib/ui.lib.php:377 -msgid "Admin-Catalog" +#: ../../admin/modules.php:68 ../../admin/modules.php:120 +msgid "Plugin Deactivated" msgstr "" -#: ../../lib/ui.lib.php:381 -msgid "Admin-User Management" +#: ../../admin/modules.php:83 +msgid "Unable to Install Plugin" msgstr "" -#: ../../lib/ui.lib.php:385 -msgid "Admin-Mail Users" +#: ../../admin/modules.php:94 +msgid "Plugin Activated" msgstr "" -#: ../../lib/ui.lib.php:389 -msgid "Admin-Manage Access Lists" +#: ../../admin/modules.php:129 +msgid "Plugins" msgstr "" -#: ../../lib/ui.lib.php:393 -msgid "Admin-Site Preferences" +#: ../../admin/modules.php:135 +msgid "Localplay Controllers" msgstr "" -#: ../../lib/ui.lib.php:397 -msgid "Admin-Manage Modules" +#: ../../admin/flag.php:88 +msgid "Song Updated" msgstr "" -#: ../../lib/ui.lib.php:401 -msgid "Browse Music" +#: ../../admin/flag.php:88 +msgid "The requested song has been updated" msgstr "" -#: ../../lib/ui.lib.php:508 -msgid "Add New" +#: ../../admin/flag.php:130 +msgid "Album Updated" msgstr "" -#: ../../albums.php:32 -msgid "Album Art Cleared" +#: ../../admin/flag.php:172 +msgid "Artist Updated" msgstr "" -#: ../../albums.php:32 -msgid "Album Art information has been removed from the database" +#: ../../admin/flag.php:237 +msgid "Songs Updated" msgstr "" -#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129 -msgid "Album Art Not Located" +#: ../../admin/flag.php:245 +msgid "Flag Removed" msgstr "" -#: ../../albums.php:39 ../../albums.php:56 ../../albums.php:129 -msgid "" -"Album Art could not be located at this time. This may be due to write access " -"error, or the file is not received corectly." +#: ../../admin/flag.php:246 +msgid "Flag Removed from" msgstr "" -#: ../../albums.php:52 ../../albums.php:80 -msgid "Album Art Inserted" +#: ../../admin/flag.php:261 +msgid "Flags Updated" msgstr "" -#: ../../albums.php:163 ../../artists.php:50 -msgid "Starting Update from Tags" +#: ../../admin/flag.php:280 +msgid "Songs Disabled" msgstr "" -#: ../../albums.php:167 ../../artists.php:54 -msgid "Update From Tags Complete" +#: ../../admin/flag.php:280 +msgid "The requested song(s) have been disabled" msgstr "" -#: ../../albums.php:168 ../../artists.php:55 -msgid "Return" +#: ../../admin/flag.php:291 +msgid "Songs Enabled" msgstr "" -#: ../../modules/localplay/httpq.controller.php:216 -#: ../../modules/localplay/mpd.controller.php:232 -msgid "Instance Name" +#: ../../admin/flag.php:291 +msgid "The requested song(s) have been enabled" msgstr "" -#: ../../modules/localplay/httpq.controller.php:217 -#: ../../modules/localplay/mpd.controller.php:233 -msgid "Hostname" +#: ../../admin/shout.php:35 +msgid "Shoutbox Post Updated" msgstr "" -#: ../../modules/localplay/httpq.controller.php:218 -#: ../../modules/localplay/mpd.controller.php:234 -msgid "Port" +#: ../../admin/shout.php:47 +msgid "Shoutbox Post Deleted" msgstr "" -#: ../../modules/horde/Browser.php:867 -msgid "file" +#: ../../admin/access.php:35 +msgid "Deleted" msgstr "" -#: ../../modules/horde/Browser.php:871 -msgid "File uploads not supported." +#: ../../admin/access.php:35 +msgid "Your Access List Entry has been removed" msgstr "" -#: ../../modules/horde/Browser.php:889 -msgid "No file uploaded" +#: ../../admin/access.php:40 +msgid "Your new Access List Entry has been created" msgstr "" -#: ../../modules/horde/Browser.php:896 -#, php-format -msgid "There was a problem with the file upload: No %s was uploaded." +#: ../../admin/access.php:45 +msgid "Access List Entry updated" msgstr "" -#: ../../modules/horde/Browser.php:901 -#, php-format -msgid "" -"There was a problem with the file upload: The %s was larger than the maximum " -"allowed size (%d bytes)." +#: ../../admin/users.php:83 +msgid "User Updated" msgstr "" -#: ../../modules/horde/Browser.php:903 -#, php-format +#: ../../admin/users.php:83 +msgid "updated" +msgstr "" + +#: ../../admin/users.php:129 +msgid "New User Added" +msgstr "" + +#: ../../admin/users.php:134 +msgid "User Enabled" +msgstr "" + +#: ../../admin/users.php:139 +msgid "User Disabled" +msgstr "" + +#: ../../admin/users.php:142 +msgid "Unable to Disabled last Administrator" +msgstr "" + +#: ../../admin/users.php:164 +msgid "User Deleted" +msgstr "" + +#: ../../admin/users.php:167 +msgid "Delete Error" +msgstr "" + +#: ../../admin/users.php:167 +msgid "Unable to delete last Admin User" +msgstr "" + +#: ../../admin/users.php:173 +msgid "Deletion Request" +msgstr "" + +#: ../../admin/users.php:174 +msgid "Are you sure you want to permanently delete" +msgstr "" + +#: ../../admin/system.php:49 +msgid "Database Charset Updated" +msgstr "" + +#: ../../admin/system.php:49 msgid "" -"There was a problem with the file upload: The %s was only partially uploaded." +"Your Database and associated tables have been updated to match your " +"currently configured charset" msgstr "" -#: ../../playlist.php:57 -msgid "Playlist Created" +#: ../../admin/catalog.php:53 ../../admin/catalog.php:73 +#: ../../admin/catalog.php:98 ../../admin/catalog.php:170 +msgid "Catalog Updated" msgstr "" -#: ../../playlist.php:57 -msgid " has been created" +#: ../../admin/catalog.php:115 +msgid "Catalog Deleted" msgstr "" -#: ../../playlist.php:78 -msgid "Playlist Updated" +#: ../../admin/catalog.php:115 +msgid "The Catalog and all associated records have been deleted" msgstr "" -#: ../../playlist.php:79 -msgid "has been updated and is now" +#: ../../admin/catalog.php:121 +msgid "Catalog Delete" msgstr "" -#: ../../playlist.php:101 -msgid "Playlist Imported" +#: ../../admin/catalog.php:121 +msgid "Confirm Deletion Request" msgstr "" -#: ../../playlist.php:130 -msgid "Empty Playlists Deleted" +#: ../../admin/catalog.php:130 +msgid "Songs Removed" msgstr "" -#: ../../login.php:69 -msgid "User Disabled please contact Admin" +#: ../../admin/catalog.php:133 +msgid "No Songs Removed" msgstr "" -#: ../../login.php:83 -msgid "Unable to create new account" +#: ../../admin/catalog.php:136 +msgid "Disabled Songs Processed" msgstr "" -#: ../../login.php:92 -msgid "No local account found" +#: ../../admin/catalog.php:157 +msgid "Catalog Cleaned" msgstr "" -#: ../../search.php:38 -msgid "Error: No Keyword Entered" +#: ../../admin/catalog.php:208 +msgid "Catalog Created" msgstr "" -#: ../../artists.php:188 -msgid "Show Artists starting with" +#: ../../admin/catalog.php:225 +msgid "Catalog statistics cleared" +msgstr "" + +#: ../../admin/catalog.php:238 +msgid "Now Playing Cleared" +msgstr "" + +#: ../../admin/catalog.php:238 +msgid "All now playing data has been cleared" +msgstr "" + +#: ../../admin/catalog.php:248 +msgid "No Disabled songs found" +msgstr "" + +#: ../../admin/catalog.php:257 +msgid "Delete Catalog" +msgstr "" + +#: ../../admin/catalog.php:257 +msgid "Do you really want to delete this catalog?" +msgstr "" + +#: ../../admin/catalog.php:277 +msgid "Album Art Search Finished" msgstr "" -#: ../../bin/print_tags.inc:66 +#: ../../bin/print_tags.inc:67 msgid "" "[print_tags.php.inc]\n" "This commandline script will display the tag information for the specified " @@ -3462,6 +3621,6 @@ msgid "" " \n" msgstr "" -#: ../../bin/print_tags.inc:72 +#: ../../bin/print_tags.inc:73 msgid "Filename:" msgstr "" |